diff --git a/corpus/statements.txt b/corpus/statements.txt index e2b6b73f2..63e06c21a 100644 --- a/corpus/statements.txt +++ b/corpus/statements.txt @@ -46,3 +46,28 @@ T main() { (identifier) (compound_statement (expression_statement (shift_expression (identifier) (identifier)))))))) + +=========================================== +Constexpr if statements +=========================================== + +T f() { + if constexpr (std::is_pointer_v) + return *t; + else + return t; +} + +--- + +(translation_unit + (function_definition + (type_identifier) + (function_declarator (identifier) (parameter_list)) + (compound_statement + (if_statement + (template_function + (scoped_identifier (namespace_identifier) (identifier)) + (template_argument_list (type_descriptor (type_identifier)))) + (return_statement (pointer_expression (identifier))) + (return_statement (identifier)))))) diff --git a/grammar.js b/grammar.js index 7e4056872..59b460e41 100644 --- a/grammar.js +++ b/grammar.js @@ -388,6 +388,17 @@ module.exports = grammar(C, { $.for_range_loop ), + if_statement: $ => prec.right(seq( + 'if', + optional('constexpr'), + '(', $._expression, ')', + $._statement, + optional(seq( + 'else', + $._statement + )) + )), + for_range_loop: $ => seq( 'for', '(', diff --git a/src/grammar.json b/src/grammar.json index b4a9ffa0f..509a8644c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -2880,6 +2880,18 @@ "type": "STRING", "value": "if" }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "constexpr" + }, + { + "type": "BLANK" + } + ] + }, { "type": "STRING", "value": "(" diff --git a/src/parser.c b/src/parser.c index 62b07bdc2..1a4d968f0 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 8 -#define STATE_COUNT 3160 +#define STATE_COUNT 3215 #define SYMBOL_COUNT 278 #define ALIAS_COUNT 22 #define TOKEN_COUNT 117 @@ -12672,62 +12672,62 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [840] = {.lex_state = 576, .external_lex_state = 1}, [841] = {.lex_state = 576, .external_lex_state = 1}, [842] = {.lex_state = 595, .external_lex_state = 1}, - [843] = {.lex_state = 595, .external_lex_state = 1}, - [844] = {.lex_state = 612, .external_lex_state = 1}, - [845] = {.lex_state = 595, .external_lex_state = 1}, + [843] = {.lex_state = 0}, + [844] = {.lex_state = 595, .external_lex_state = 1}, + [845] = {.lex_state = 612, .external_lex_state = 1}, [846] = {.lex_state = 595, .external_lex_state = 1}, [847] = {.lex_state = 595, .external_lex_state = 1}, [848] = {.lex_state = 595, .external_lex_state = 1}, [849] = {.lex_state = 595, .external_lex_state = 1}, - [850] = {.lex_state = 617}, + [850] = {.lex_state = 595, .external_lex_state = 1}, [851] = {.lex_state = 617}, - [852] = {.lex_state = 595, .external_lex_state = 1}, - [853] = {.lex_state = 501}, + [852] = {.lex_state = 617}, + [853] = {.lex_state = 595, .external_lex_state = 1}, [854] = {.lex_state = 501}, - [855] = {.lex_state = 646, .external_lex_state = 1}, - [856] = {.lex_state = 595, .external_lex_state = 1}, - [857] = {.lex_state = 501}, - [858] = {.lex_state = 576, .external_lex_state = 1}, - [859] = {.lex_state = 0}, + [855] = {.lex_state = 501}, + [856] = {.lex_state = 646, .external_lex_state = 1}, + [857] = {.lex_state = 595, .external_lex_state = 1}, + [858] = {.lex_state = 501}, + [859] = {.lex_state = 576, .external_lex_state = 1}, [860] = {.lex_state = 0}, - [861] = {.lex_state = 595, .external_lex_state = 1}, - [862] = {.lex_state = 476}, - [863] = {.lex_state = 0}, - [864] = {.lex_state = 624, .external_lex_state = 1}, - [865] = {.lex_state = 0}, - [866] = {.lex_state = 636, .external_lex_state = 1}, - [867] = {.lex_state = 0}, + [861] = {.lex_state = 0}, + [862] = {.lex_state = 595, .external_lex_state = 1}, + [863] = {.lex_state = 476}, + [864] = {.lex_state = 0}, + [865] = {.lex_state = 624, .external_lex_state = 1}, + [866] = {.lex_state = 0}, + [867] = {.lex_state = 636, .external_lex_state = 1}, [868] = {.lex_state = 0}, - [869] = {.lex_state = 420}, - [870] = {.lex_state = 473}, - [871] = {.lex_state = 501}, - [872] = {.lex_state = 473}, - [873] = {.lex_state = 0}, - [874] = {.lex_state = 647, .external_lex_state = 1}, - [875] = {.lex_state = 576, .external_lex_state = 1}, - [876] = {.lex_state = 473}, - [877] = {.lex_state = 0}, - [878] = {.lex_state = 576, .external_lex_state = 1}, + [869] = {.lex_state = 0}, + [870] = {.lex_state = 420}, + [871] = {.lex_state = 473}, + [872] = {.lex_state = 501}, + [873] = {.lex_state = 473}, + [874] = {.lex_state = 0}, + [875] = {.lex_state = 647, .external_lex_state = 1}, + [876] = {.lex_state = 576, .external_lex_state = 1}, + [877] = {.lex_state = 473}, + [878] = {.lex_state = 0}, [879] = {.lex_state = 576, .external_lex_state = 1}, - [880] = {.lex_state = 0}, - [881] = {.lex_state = 612, .external_lex_state = 1}, - [882] = {.lex_state = 473}, - [883] = {.lex_state = 617}, - [884] = {.lex_state = 624, .external_lex_state = 1}, - [885] = {.lex_state = 424}, - [886] = {.lex_state = 637}, + [880] = {.lex_state = 576, .external_lex_state = 1}, + [881] = {.lex_state = 0}, + [882] = {.lex_state = 612, .external_lex_state = 1}, + [883] = {.lex_state = 473}, + [884] = {.lex_state = 617}, + [885] = {.lex_state = 624, .external_lex_state = 1}, + [886] = {.lex_state = 424}, [887] = {.lex_state = 637}, - [888] = {.lex_state = 595, .external_lex_state = 1}, - [889] = {.lex_state = 614, .external_lex_state = 1}, - [890] = {.lex_state = 473}, - [891] = {.lex_state = 576, .external_lex_state = 1}, - [892] = {.lex_state = 420}, - [893] = {.lex_state = 0}, - [894] = {.lex_state = 420}, + [888] = {.lex_state = 637}, + [889] = {.lex_state = 595, .external_lex_state = 1}, + [890] = {.lex_state = 614, .external_lex_state = 1}, + [891] = {.lex_state = 473}, + [892] = {.lex_state = 576, .external_lex_state = 1}, + [893] = {.lex_state = 420}, + [894] = {.lex_state = 0}, [895] = {.lex_state = 420}, - [896] = {.lex_state = 595, .external_lex_state = 1}, - [897] = {.lex_state = 576, .external_lex_state = 1}, - [898] = {.lex_state = 595, .external_lex_state = 1}, + [896] = {.lex_state = 420}, + [897] = {.lex_state = 595, .external_lex_state = 1}, + [898] = {.lex_state = 576, .external_lex_state = 1}, [899] = {.lex_state = 595, .external_lex_state = 1}, [900] = {.lex_state = 595, .external_lex_state = 1}, [901] = {.lex_state = 595, .external_lex_state = 1}, @@ -12739,109 +12739,109 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [907] = {.lex_state = 595, .external_lex_state = 1}, [908] = {.lex_state = 595, .external_lex_state = 1}, [909] = {.lex_state = 595, .external_lex_state = 1}, - [910] = {.lex_state = 424}, - [911] = {.lex_state = 395}, - [912] = {.lex_state = 576, .external_lex_state = 1}, - [913] = {.lex_state = 424}, - [914] = {.lex_state = 0}, - [915] = {.lex_state = 420}, + [910] = {.lex_state = 595, .external_lex_state = 1}, + [911] = {.lex_state = 424}, + [912] = {.lex_state = 395}, + [913] = {.lex_state = 576, .external_lex_state = 1}, + [914] = {.lex_state = 424}, + [915] = {.lex_state = 0}, [916] = {.lex_state = 420}, [917] = {.lex_state = 420}, - [918] = {.lex_state = 0}, - [919] = {.lex_state = 424}, - [920] = {.lex_state = 0}, - [921] = {.lex_state = 395}, + [918] = {.lex_state = 420}, + [919] = {.lex_state = 0}, + [920] = {.lex_state = 424}, + [921] = {.lex_state = 0}, [922] = {.lex_state = 395}, - [923] = {.lex_state = 420}, - [924] = {.lex_state = 579}, - [925] = {.lex_state = 420}, - [926] = {.lex_state = 395}, - [927] = {.lex_state = 420}, + [923] = {.lex_state = 395}, + [924] = {.lex_state = 420}, + [925] = {.lex_state = 579}, + [926] = {.lex_state = 420}, + [927] = {.lex_state = 395}, [928] = {.lex_state = 420}, [929] = {.lex_state = 420}, [930] = {.lex_state = 420}, - [931] = {.lex_state = 468}, - [932] = {.lex_state = 608}, + [931] = {.lex_state = 420}, + [932] = {.lex_state = 468}, [933] = {.lex_state = 608}, - [934] = {.lex_state = 501}, - [935] = {.lex_state = 431}, - [936] = {.lex_state = 485}, - [937] = {.lex_state = 579}, - [938] = {.lex_state = 485}, - [939] = {.lex_state = 424}, - [940] = {.lex_state = 485}, + [934] = {.lex_state = 608}, + [935] = {.lex_state = 501}, + [936] = {.lex_state = 431}, + [937] = {.lex_state = 485}, + [938] = {.lex_state = 579}, + [939] = {.lex_state = 485}, + [940] = {.lex_state = 424}, [941] = {.lex_state = 485}, - [942] = {.lex_state = 424}, - [943] = {.lex_state = 485}, + [942] = {.lex_state = 485}, + [943] = {.lex_state = 424}, [944] = {.lex_state = 485}, - [945] = {.lex_state = 424}, - [946] = {.lex_state = 485}, - [947] = {.lex_state = 581}, - [948] = {.lex_state = 440}, - [949] = {.lex_state = 485}, + [945] = {.lex_state = 485}, + [946] = {.lex_state = 424}, + [947] = {.lex_state = 485}, + [948] = {.lex_state = 581}, + [949] = {.lex_state = 440}, [950] = {.lex_state = 485}, [951] = {.lex_state = 485}, - [952] = {.lex_state = 431}, - [953] = {.lex_state = 581}, - [954] = {.lex_state = 420}, - [955] = {.lex_state = 443}, - [956] = {.lex_state = 486}, - [957] = {.lex_state = 424}, - [958] = {.lex_state = 0}, - [959] = {.lex_state = 486}, - [960] = {.lex_state = 395}, - [961] = {.lex_state = 0}, - [962] = {.lex_state = 581}, - [963] = {.lex_state = 420}, + [952] = {.lex_state = 485}, + [953] = {.lex_state = 431}, + [954] = {.lex_state = 581}, + [955] = {.lex_state = 420}, + [956] = {.lex_state = 443}, + [957] = {.lex_state = 486}, + [958] = {.lex_state = 424}, + [959] = {.lex_state = 0}, + [960] = {.lex_state = 486}, + [961] = {.lex_state = 395}, + [962] = {.lex_state = 0}, + [963] = {.lex_state = 581}, [964] = {.lex_state = 420}, - [965] = {.lex_state = 0}, - [966] = {.lex_state = 581}, - [967] = {.lex_state = 420}, - [968] = {.lex_state = 0}, - [969] = {.lex_state = 420}, + [965] = {.lex_state = 420}, + [966] = {.lex_state = 0}, + [967] = {.lex_state = 581}, + [968] = {.lex_state = 420}, + [969] = {.lex_state = 0}, [970] = {.lex_state = 420}, - [971] = {.lex_state = 576, .external_lex_state = 1}, - [972] = {.lex_state = 581}, - [973] = {.lex_state = 0}, - [974] = {.lex_state = 581}, - [975] = {.lex_state = 476}, - [976] = {.lex_state = 424}, - [977] = {.lex_state = 485}, - [978] = {.lex_state = 584}, - [979] = {.lex_state = 0}, - [980] = {.lex_state = 420}, - [981] = {.lex_state = 485}, - [982] = {.lex_state = 424}, - [983] = {.lex_state = 0}, - [984] = {.lex_state = 485}, + [971] = {.lex_state = 420}, + [972] = {.lex_state = 576, .external_lex_state = 1}, + [973] = {.lex_state = 581}, + [974] = {.lex_state = 0}, + [975] = {.lex_state = 581}, + [976] = {.lex_state = 476}, + [977] = {.lex_state = 424}, + [978] = {.lex_state = 485}, + [979] = {.lex_state = 584}, + [980] = {.lex_state = 0}, + [981] = {.lex_state = 420}, + [982] = {.lex_state = 485}, + [983] = {.lex_state = 424}, + [984] = {.lex_state = 0}, [985] = {.lex_state = 485}, - [986] = {.lex_state = 424}, - [987] = {.lex_state = 485}, - [988] = {.lex_state = 395}, - [989] = {.lex_state = 485}, + [986] = {.lex_state = 485}, + [987] = {.lex_state = 424}, + [988] = {.lex_state = 485}, + [989] = {.lex_state = 395}, [990] = {.lex_state = 485}, - [991] = {.lex_state = 443}, - [992] = {.lex_state = 420}, - [993] = {.lex_state = 0}, - [994] = {.lex_state = 485}, - [995] = {.lex_state = 604, .external_lex_state = 1}, - [996] = {.lex_state = 485}, - [997] = {.lex_state = 0}, - [998] = {.lex_state = 605, .external_lex_state = 1}, - [999] = {.lex_state = 0}, - [1000] = {.lex_state = 605, .external_lex_state = 1}, - [1001] = {.lex_state = 0}, - [1002] = {.lex_state = 485}, - [1003] = {.lex_state = 576, .external_lex_state = 1}, - [1004] = {.lex_state = 485}, - [1005] = {.lex_state = 395}, - [1006] = {.lex_state = 0}, - [1007] = {.lex_state = 395}, + [991] = {.lex_state = 485}, + [992] = {.lex_state = 443}, + [993] = {.lex_state = 420}, + [994] = {.lex_state = 0}, + [995] = {.lex_state = 485}, + [996] = {.lex_state = 604, .external_lex_state = 1}, + [997] = {.lex_state = 485}, + [998] = {.lex_state = 0}, + [999] = {.lex_state = 605, .external_lex_state = 1}, + [1000] = {.lex_state = 0}, + [1001] = {.lex_state = 605, .external_lex_state = 1}, + [1002] = {.lex_state = 0}, + [1003] = {.lex_state = 485}, + [1004] = {.lex_state = 576, .external_lex_state = 1}, + [1005] = {.lex_state = 485}, + [1006] = {.lex_state = 395}, + [1007] = {.lex_state = 0}, [1008] = {.lex_state = 395}, - [1009] = {.lex_state = 420}, + [1009] = {.lex_state = 395}, [1010] = {.lex_state = 420}, - [1011] = {.lex_state = 395}, - [1012] = {.lex_state = 420}, + [1011] = {.lex_state = 420}, + [1012] = {.lex_state = 395}, [1013] = {.lex_state = 420}, [1014] = {.lex_state = 420}, [1015] = {.lex_state = 420}, @@ -12849,90 +12849,90 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1017] = {.lex_state = 420}, [1018] = {.lex_state = 420}, [1019] = {.lex_state = 420}, - [1020] = {.lex_state = 618, .external_lex_state = 1}, - [1021] = {.lex_state = 473}, - [1022] = {.lex_state = 395}, - [1023] = {.lex_state = 468}, - [1024] = {.lex_state = 608}, + [1020] = {.lex_state = 420}, + [1021] = {.lex_state = 618, .external_lex_state = 1}, + [1022] = {.lex_state = 473}, + [1023] = {.lex_state = 395}, + [1024] = {.lex_state = 468}, [1025] = {.lex_state = 608}, - [1026] = {.lex_state = 501}, - [1027] = {.lex_state = 473}, - [1028] = {.lex_state = 459}, - [1029] = {.lex_state = 395}, - [1030] = {.lex_state = 420}, - [1031] = {.lex_state = 395}, - [1032] = {.lex_state = 586}, - [1033] = {.lex_state = 638}, - [1034] = {.lex_state = 431}, - [1035] = {.lex_state = 424}, + [1026] = {.lex_state = 608}, + [1027] = {.lex_state = 501}, + [1028] = {.lex_state = 473}, + [1029] = {.lex_state = 459}, + [1030] = {.lex_state = 395}, + [1031] = {.lex_state = 420}, + [1032] = {.lex_state = 395}, + [1033] = {.lex_state = 586}, + [1034] = {.lex_state = 638}, + [1035] = {.lex_state = 431}, [1036] = {.lex_state = 424}, - [1037] = {.lex_state = 638}, - [1038] = {.lex_state = 586}, - [1039] = {.lex_state = 424}, + [1037] = {.lex_state = 424}, + [1038] = {.lex_state = 638}, + [1039] = {.lex_state = 586}, [1040] = {.lex_state = 424}, - [1041] = {.lex_state = 638}, - [1042] = {.lex_state = 586}, - [1043] = {.lex_state = 424}, + [1041] = {.lex_state = 424}, + [1042] = {.lex_state = 638}, + [1043] = {.lex_state = 586}, [1044] = {.lex_state = 424}, - [1045] = {.lex_state = 638}, - [1046] = {.lex_state = 0}, - [1047] = {.lex_state = 420}, - [1048] = {.lex_state = 459}, - [1049] = {.lex_state = 586}, - [1050] = {.lex_state = 424}, - [1051] = {.lex_state = 420}, - [1052] = {.lex_state = 0}, - [1053] = {.lex_state = 586}, + [1045] = {.lex_state = 424}, + [1046] = {.lex_state = 638}, + [1047] = {.lex_state = 0}, + [1048] = {.lex_state = 420}, + [1049] = {.lex_state = 459}, + [1050] = {.lex_state = 586}, + [1051] = {.lex_state = 424}, + [1052] = {.lex_state = 420}, + [1053] = {.lex_state = 0}, [1054] = {.lex_state = 586}, - [1055] = {.lex_state = 443}, - [1056] = {.lex_state = 420}, - [1057] = {.lex_state = 0}, - [1058] = {.lex_state = 424}, + [1055] = {.lex_state = 586}, + [1056] = {.lex_state = 443}, + [1057] = {.lex_state = 420}, + [1058] = {.lex_state = 0}, [1059] = {.lex_state = 424}, - [1060] = {.lex_state = 420}, + [1060] = {.lex_state = 424}, [1061] = {.lex_state = 420}, - [1062] = {.lex_state = 476}, - [1063] = {.lex_state = 473}, - [1064] = {.lex_state = 476}, - [1065] = {.lex_state = 424}, - [1066] = {.lex_state = 473}, - [1067] = {.lex_state = 420}, - [1068] = {.lex_state = 424}, - [1069] = {.lex_state = 586}, - [1070] = {.lex_state = 565, .external_lex_state = 1}, - [1071] = {.lex_state = 595, .external_lex_state = 1}, - [1072] = {.lex_state = 586}, - [1073] = {.lex_state = 501}, - [1074] = {.lex_state = 476}, - [1075] = {.lex_state = 424}, - [1076] = {.lex_state = 443}, - [1077] = {.lex_state = 501}, - [1078] = {.lex_state = 468}, - [1079] = {.lex_state = 501}, - [1080] = {.lex_state = 586}, - [1081] = {.lex_state = 576, .external_lex_state = 1}, - [1082] = {.lex_state = 586}, - [1083] = {.lex_state = 459}, + [1062] = {.lex_state = 420}, + [1063] = {.lex_state = 476}, + [1064] = {.lex_state = 473}, + [1065] = {.lex_state = 476}, + [1066] = {.lex_state = 424}, + [1067] = {.lex_state = 473}, + [1068] = {.lex_state = 420}, + [1069] = {.lex_state = 424}, + [1070] = {.lex_state = 586}, + [1071] = {.lex_state = 565, .external_lex_state = 1}, + [1072] = {.lex_state = 595, .external_lex_state = 1}, + [1073] = {.lex_state = 586}, + [1074] = {.lex_state = 501}, + [1075] = {.lex_state = 476}, + [1076] = {.lex_state = 424}, + [1077] = {.lex_state = 443}, + [1078] = {.lex_state = 501}, + [1079] = {.lex_state = 468}, + [1080] = {.lex_state = 501}, + [1081] = {.lex_state = 586}, + [1082] = {.lex_state = 576, .external_lex_state = 1}, + [1083] = {.lex_state = 586}, [1084] = {.lex_state = 459}, - [1085] = {.lex_state = 0}, - [1086] = {.lex_state = 459}, - [1087] = {.lex_state = 0}, - [1088] = {.lex_state = 420}, - [1089] = {.lex_state = 0}, + [1085] = {.lex_state = 459}, + [1086] = {.lex_state = 0}, + [1087] = {.lex_state = 459}, + [1088] = {.lex_state = 0}, + [1089] = {.lex_state = 420}, [1090] = {.lex_state = 0}, - [1091] = {.lex_state = 420}, - [1092] = {.lex_state = 612, .external_lex_state = 1}, - [1093] = {.lex_state = 473}, - [1094] = {.lex_state = 617}, - [1095] = {.lex_state = 424}, - [1096] = {.lex_state = 473}, + [1091] = {.lex_state = 0}, + [1092] = {.lex_state = 420}, + [1093] = {.lex_state = 612, .external_lex_state = 1}, + [1094] = {.lex_state = 473}, + [1095] = {.lex_state = 617}, + [1096] = {.lex_state = 424}, [1097] = {.lex_state = 473}, - [1098] = {.lex_state = 595, .external_lex_state = 1}, - [1099] = {.lex_state = 614, .external_lex_state = 1}, - [1100] = {.lex_state = 473}, - [1101] = {.lex_state = 595, .external_lex_state = 1}, - [1102] = {.lex_state = 420}, - [1103] = {.lex_state = 595, .external_lex_state = 1}, + [1098] = {.lex_state = 473}, + [1099] = {.lex_state = 595, .external_lex_state = 1}, + [1100] = {.lex_state = 614, .external_lex_state = 1}, + [1101] = {.lex_state = 473}, + [1102] = {.lex_state = 595, .external_lex_state = 1}, + [1103] = {.lex_state = 420}, [1104] = {.lex_state = 595, .external_lex_state = 1}, [1105] = {.lex_state = 595, .external_lex_state = 1}, [1106] = {.lex_state = 595, .external_lex_state = 1}, @@ -12944,80 +12944,80 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1112] = {.lex_state = 595, .external_lex_state = 1}, [1113] = {.lex_state = 595, .external_lex_state = 1}, [1114] = {.lex_state = 595, .external_lex_state = 1}, - [1115] = {.lex_state = 424}, - [1116] = {.lex_state = 420}, + [1115] = {.lex_state = 595, .external_lex_state = 1}, + [1116] = {.lex_state = 424}, [1117] = {.lex_state = 420}, [1118] = {.lex_state = 420}, - [1119] = {.lex_state = 501}, - [1120] = {.lex_state = 420}, - [1121] = {.lex_state = 608}, - [1122] = {.lex_state = 618, .external_lex_state = 1}, - [1123] = {.lex_state = 473}, - [1124] = {.lex_state = 420}, - [1125] = {.lex_state = 565, .external_lex_state = 1}, - [1126] = {.lex_state = 608}, - [1127] = {.lex_state = 468}, - [1128] = {.lex_state = 608}, + [1119] = {.lex_state = 420}, + [1120] = {.lex_state = 501}, + [1121] = {.lex_state = 420}, + [1122] = {.lex_state = 608}, + [1123] = {.lex_state = 618, .external_lex_state = 1}, + [1124] = {.lex_state = 473}, + [1125] = {.lex_state = 420}, + [1126] = {.lex_state = 565, .external_lex_state = 1}, + [1127] = {.lex_state = 608}, + [1128] = {.lex_state = 468}, [1129] = {.lex_state = 608}, - [1130] = {.lex_state = 420}, - [1131] = {.lex_state = 459}, - [1132] = {.lex_state = 420}, + [1130] = {.lex_state = 608}, + [1131] = {.lex_state = 420}, + [1132] = {.lex_state = 459}, [1133] = {.lex_state = 420}, - [1134] = {.lex_state = 468}, - [1135] = {.lex_state = 594}, + [1134] = {.lex_state = 420}, + [1135] = {.lex_state = 468}, [1136] = {.lex_state = 594}, - [1137] = {.lex_state = 420}, + [1137] = {.lex_state = 594}, [1138] = {.lex_state = 420}, - [1139] = {.lex_state = 424}, - [1140] = {.lex_state = 420}, - [1141] = {.lex_state = 603, .external_lex_state = 1}, - [1142] = {.lex_state = 607, .external_lex_state = 1}, - [1143] = {.lex_state = 605, .external_lex_state = 1}, - [1144] = {.lex_state = 608}, - [1145] = {.lex_state = 424}, - [1146] = {.lex_state = 420}, - [1147] = {.lex_state = 459}, - [1148] = {.lex_state = 420}, - [1149] = {.lex_state = 486}, - [1150] = {.lex_state = 420}, - [1151] = {.lex_state = 459}, - [1152] = {.lex_state = 468}, - [1153] = {.lex_state = 608}, + [1139] = {.lex_state = 420}, + [1140] = {.lex_state = 424}, + [1141] = {.lex_state = 420}, + [1142] = {.lex_state = 603, .external_lex_state = 1}, + [1143] = {.lex_state = 607, .external_lex_state = 1}, + [1144] = {.lex_state = 605, .external_lex_state = 1}, + [1145] = {.lex_state = 608}, + [1146] = {.lex_state = 424}, + [1147] = {.lex_state = 420}, + [1148] = {.lex_state = 459}, + [1149] = {.lex_state = 420}, + [1150] = {.lex_state = 486}, + [1151] = {.lex_state = 420}, + [1152] = {.lex_state = 459}, + [1153] = {.lex_state = 468}, [1154] = {.lex_state = 608}, - [1155] = {.lex_state = 501}, - [1156] = {.lex_state = 459}, + [1155] = {.lex_state = 608}, + [1156] = {.lex_state = 501}, [1157] = {.lex_state = 459}, - [1158] = {.lex_state = 395}, + [1158] = {.lex_state = 459}, [1159] = {.lex_state = 395}, - [1160] = {.lex_state = 0}, - [1161] = {.lex_state = 501}, - [1162] = {.lex_state = 395}, + [1160] = {.lex_state = 395}, + [1161] = {.lex_state = 0}, + [1162] = {.lex_state = 501}, [1163] = {.lex_state = 395}, - [1164] = {.lex_state = 476}, - [1165] = {.lex_state = 420}, + [1164] = {.lex_state = 395}, + [1165] = {.lex_state = 476}, [1166] = {.lex_state = 420}, [1167] = {.lex_state = 420}, - [1168] = {.lex_state = 424}, - [1169] = {.lex_state = 637}, + [1168] = {.lex_state = 420}, + [1169] = {.lex_state = 424}, [1170] = {.lex_state = 637}, - [1171] = {.lex_state = 605, .external_lex_state = 1}, - [1172] = {.lex_state = 501}, - [1173] = {.lex_state = 420}, - [1174] = {.lex_state = 424}, - [1175] = {.lex_state = 420}, - [1176] = {.lex_state = 501}, - [1177] = {.lex_state = 648, .external_lex_state = 1}, - [1178] = {.lex_state = 617}, - [1179] = {.lex_state = 473}, - [1180] = {.lex_state = 612, .external_lex_state = 1}, - [1181] = {.lex_state = 473}, - [1182] = {.lex_state = 420}, - [1183] = {.lex_state = 617}, - [1184] = {.lex_state = 595, .external_lex_state = 1}, - [1185] = {.lex_state = 614, .external_lex_state = 1}, - [1186] = {.lex_state = 473}, - [1187] = {.lex_state = 649, .external_lex_state = 1}, - [1188] = {.lex_state = 595, .external_lex_state = 1}, + [1171] = {.lex_state = 637}, + [1172] = {.lex_state = 605, .external_lex_state = 1}, + [1173] = {.lex_state = 501}, + [1174] = {.lex_state = 420}, + [1175] = {.lex_state = 424}, + [1176] = {.lex_state = 420}, + [1177] = {.lex_state = 501}, + [1178] = {.lex_state = 648, .external_lex_state = 1}, + [1179] = {.lex_state = 617}, + [1180] = {.lex_state = 473}, + [1181] = {.lex_state = 612, .external_lex_state = 1}, + [1182] = {.lex_state = 473}, + [1183] = {.lex_state = 420}, + [1184] = {.lex_state = 617}, + [1185] = {.lex_state = 595, .external_lex_state = 1}, + [1186] = {.lex_state = 614, .external_lex_state = 1}, + [1187] = {.lex_state = 473}, + [1188] = {.lex_state = 649, .external_lex_state = 1}, [1189] = {.lex_state = 595, .external_lex_state = 1}, [1190] = {.lex_state = 595, .external_lex_state = 1}, [1191] = {.lex_state = 595, .external_lex_state = 1}, @@ -13029,26 +13029,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 595, .external_lex_state = 1}, [1198] = {.lex_state = 595, .external_lex_state = 1}, [1199] = {.lex_state = 595, .external_lex_state = 1}, - [1200] = {.lex_state = 395}, - [1201] = {.lex_state = 649, .external_lex_state = 1}, - [1202] = {.lex_state = 595, .external_lex_state = 1}, - [1203] = {.lex_state = 605, .external_lex_state = 1}, - [1204] = {.lex_state = 420}, + [1200] = {.lex_state = 595, .external_lex_state = 1}, + [1201] = {.lex_state = 395}, + [1202] = {.lex_state = 649, .external_lex_state = 1}, + [1203] = {.lex_state = 595, .external_lex_state = 1}, + [1204] = {.lex_state = 605, .external_lex_state = 1}, [1205] = {.lex_state = 420}, [1206] = {.lex_state = 420}, [1207] = {.lex_state = 420}, - [1208] = {.lex_state = 468}, - [1209] = {.lex_state = 608}, + [1208] = {.lex_state = 420}, + [1209] = {.lex_state = 468}, [1210] = {.lex_state = 608}, - [1211] = {.lex_state = 501}, - [1212] = {.lex_state = 420}, - [1213] = {.lex_state = 612, .external_lex_state = 1}, - [1214] = {.lex_state = 473}, - [1215] = {.lex_state = 617}, - [1216] = {.lex_state = 595, .external_lex_state = 1}, - [1217] = {.lex_state = 614, .external_lex_state = 1}, - [1218] = {.lex_state = 473}, - [1219] = {.lex_state = 595, .external_lex_state = 1}, + [1211] = {.lex_state = 608}, + [1212] = {.lex_state = 501}, + [1213] = {.lex_state = 420}, + [1214] = {.lex_state = 612, .external_lex_state = 1}, + [1215] = {.lex_state = 473}, + [1216] = {.lex_state = 617}, + [1217] = {.lex_state = 595, .external_lex_state = 1}, + [1218] = {.lex_state = 614, .external_lex_state = 1}, + [1219] = {.lex_state = 473}, [1220] = {.lex_state = 595, .external_lex_state = 1}, [1221] = {.lex_state = 595, .external_lex_state = 1}, [1222] = {.lex_state = 595, .external_lex_state = 1}, @@ -13060,15 +13060,15 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1228] = {.lex_state = 595, .external_lex_state = 1}, [1229] = {.lex_state = 595, .external_lex_state = 1}, [1230] = {.lex_state = 595, .external_lex_state = 1}, - [1231] = {.lex_state = 420}, - [1232] = {.lex_state = 612, .external_lex_state = 1}, - [1233] = {.lex_state = 473}, - [1234] = {.lex_state = 617}, - [1235] = {.lex_state = 595, .external_lex_state = 1}, - [1236] = {.lex_state = 614, .external_lex_state = 1}, - [1237] = {.lex_state = 473}, - [1238] = {.lex_state = 395}, - [1239] = {.lex_state = 595, .external_lex_state = 1}, + [1231] = {.lex_state = 595, .external_lex_state = 1}, + [1232] = {.lex_state = 420}, + [1233] = {.lex_state = 612, .external_lex_state = 1}, + [1234] = {.lex_state = 473}, + [1235] = {.lex_state = 617}, + [1236] = {.lex_state = 595, .external_lex_state = 1}, + [1237] = {.lex_state = 614, .external_lex_state = 1}, + [1238] = {.lex_state = 473}, + [1239] = {.lex_state = 395}, [1240] = {.lex_state = 595, .external_lex_state = 1}, [1241] = {.lex_state = 595, .external_lex_state = 1}, [1242] = {.lex_state = 595, .external_lex_state = 1}, @@ -13080,37 +13080,37 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1248] = {.lex_state = 595, .external_lex_state = 1}, [1249] = {.lex_state = 595, .external_lex_state = 1}, [1250] = {.lex_state = 595, .external_lex_state = 1}, - [1251] = {.lex_state = 395}, - [1252] = {.lex_state = 420}, - [1253] = {.lex_state = 608}, - [1254] = {.lex_state = 420}, + [1251] = {.lex_state = 595, .external_lex_state = 1}, + [1252] = {.lex_state = 395}, + [1253] = {.lex_state = 420}, + [1254] = {.lex_state = 608}, [1255] = {.lex_state = 420}, [1256] = {.lex_state = 420}, [1257] = {.lex_state = 420}, [1258] = {.lex_state = 420}, - [1259] = {.lex_state = 605, .external_lex_state = 1}, - [1260] = {.lex_state = 501}, + [1259] = {.lex_state = 420}, + [1260] = {.lex_state = 605, .external_lex_state = 1}, [1261] = {.lex_state = 501}, - [1262] = {.lex_state = 468}, - [1263] = {.lex_state = 501}, - [1264] = {.lex_state = 459}, + [1262] = {.lex_state = 501}, + [1263] = {.lex_state = 468}, + [1264] = {.lex_state = 501}, [1265] = {.lex_state = 459}, - [1266] = {.lex_state = 420}, - [1267] = {.lex_state = 501}, - [1268] = {.lex_state = 605, .external_lex_state = 1}, - [1269] = {.lex_state = 420}, - [1270] = {.lex_state = 476}, - [1271] = {.lex_state = 420}, - [1272] = {.lex_state = 612, .external_lex_state = 1}, - [1273] = {.lex_state = 473}, - [1274] = {.lex_state = 639}, - [1275] = {.lex_state = 595, .external_lex_state = 1}, - [1276] = {.lex_state = 614, .external_lex_state = 1}, - [1277] = {.lex_state = 473}, - [1278] = {.lex_state = 595, .external_lex_state = 1}, + [1266] = {.lex_state = 459}, + [1267] = {.lex_state = 420}, + [1268] = {.lex_state = 501}, + [1269] = {.lex_state = 605, .external_lex_state = 1}, + [1270] = {.lex_state = 420}, + [1271] = {.lex_state = 476}, + [1272] = {.lex_state = 420}, + [1273] = {.lex_state = 612, .external_lex_state = 1}, + [1274] = {.lex_state = 473}, + [1275] = {.lex_state = 639}, + [1276] = {.lex_state = 595, .external_lex_state = 1}, + [1277] = {.lex_state = 614, .external_lex_state = 1}, + [1278] = {.lex_state = 473}, [1279] = {.lex_state = 595, .external_lex_state = 1}, - [1280] = {.lex_state = 395}, - [1281] = {.lex_state = 595, .external_lex_state = 1}, + [1280] = {.lex_state = 595, .external_lex_state = 1}, + [1281] = {.lex_state = 395}, [1282] = {.lex_state = 595, .external_lex_state = 1}, [1283] = {.lex_state = 595, .external_lex_state = 1}, [1284] = {.lex_state = 595, .external_lex_state = 1}, @@ -13121,46 +13121,46 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 595, .external_lex_state = 1}, [1290] = {.lex_state = 595, .external_lex_state = 1}, [1291] = {.lex_state = 595, .external_lex_state = 1}, - [1292] = {.lex_state = 420}, - [1293] = {.lex_state = 395}, - [1294] = {.lex_state = 619, .external_lex_state = 1}, - [1295] = {.lex_state = 395}, - [1296] = {.lex_state = 619, .external_lex_state = 1}, + [1292] = {.lex_state = 595, .external_lex_state = 1}, + [1293] = {.lex_state = 420}, + [1294] = {.lex_state = 395}, + [1295] = {.lex_state = 619, .external_lex_state = 1}, + [1296] = {.lex_state = 395}, [1297] = {.lex_state = 619, .external_lex_state = 1}, - [1298] = {.lex_state = 487}, - [1299] = {.lex_state = 420}, - [1300] = {.lex_state = 641, .external_lex_state = 1}, - [1301] = {.lex_state = 640, .external_lex_state = 1}, - [1302] = {.lex_state = 619, .external_lex_state = 1}, - [1303] = {.lex_state = 0}, - [1304] = {.lex_state = 420}, - [1305] = {.lex_state = 619, .external_lex_state = 1}, - [1306] = {.lex_state = 0}, - [1307] = {.lex_state = 420}, - [1308] = {.lex_state = 615}, - [1309] = {.lex_state = 615, .external_lex_state = 1}, - [1310] = {.lex_state = 420}, - [1311] = {.lex_state = 615, .external_lex_state = 1}, - [1312] = {.lex_state = 619, .external_lex_state = 1}, - [1313] = {.lex_state = 0}, - [1314] = {.lex_state = 595, .external_lex_state = 1}, - [1315] = {.lex_state = 501}, - [1316] = {.lex_state = 0}, - [1317] = {.lex_state = 420}, + [1298] = {.lex_state = 619, .external_lex_state = 1}, + [1299] = {.lex_state = 487}, + [1300] = {.lex_state = 420}, + [1301] = {.lex_state = 641, .external_lex_state = 1}, + [1302] = {.lex_state = 640, .external_lex_state = 1}, + [1303] = {.lex_state = 619, .external_lex_state = 1}, + [1304] = {.lex_state = 0}, + [1305] = {.lex_state = 420}, + [1306] = {.lex_state = 619, .external_lex_state = 1}, + [1307] = {.lex_state = 0}, + [1308] = {.lex_state = 420}, + [1309] = {.lex_state = 615}, + [1310] = {.lex_state = 615, .external_lex_state = 1}, + [1311] = {.lex_state = 420}, + [1312] = {.lex_state = 615, .external_lex_state = 1}, + [1313] = {.lex_state = 619, .external_lex_state = 1}, + [1314] = {.lex_state = 0}, + [1315] = {.lex_state = 595, .external_lex_state = 1}, + [1316] = {.lex_state = 501}, + [1317] = {.lex_state = 0}, [1318] = {.lex_state = 420}, - [1319] = {.lex_state = 501}, - [1320] = {.lex_state = 0}, - [1321] = {.lex_state = 501}, - [1322] = {.lex_state = 614, .external_lex_state = 1}, - [1323] = {.lex_state = 473}, - [1324] = {.lex_state = 650, .external_lex_state = 1}, - [1325] = {.lex_state = 476}, - [1326] = {.lex_state = 619, .external_lex_state = 1}, - [1327] = {.lex_state = 473}, + [1319] = {.lex_state = 420}, + [1320] = {.lex_state = 501}, + [1321] = {.lex_state = 0}, + [1322] = {.lex_state = 501}, + [1323] = {.lex_state = 614, .external_lex_state = 1}, + [1324] = {.lex_state = 473}, + [1325] = {.lex_state = 650, .external_lex_state = 1}, + [1326] = {.lex_state = 476}, + [1327] = {.lex_state = 619, .external_lex_state = 1}, [1328] = {.lex_state = 473}, [1329] = {.lex_state = 473}, - [1330] = {.lex_state = 501}, - [1331] = {.lex_state = 473}, + [1330] = {.lex_state = 473}, + [1331] = {.lex_state = 501}, [1332] = {.lex_state = 473}, [1333] = {.lex_state = 473}, [1334] = {.lex_state = 473}, @@ -13170,125 +13170,125 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1338] = {.lex_state = 473}, [1339] = {.lex_state = 473}, [1340] = {.lex_state = 473}, - [1341] = {.lex_state = 501}, - [1342] = {.lex_state = 420}, - [1343] = {.lex_state = 615, .external_lex_state = 1}, - [1344] = {.lex_state = 0}, - [1345] = {.lex_state = 501}, + [1341] = {.lex_state = 473}, + [1342] = {.lex_state = 501}, + [1343] = {.lex_state = 420}, + [1344] = {.lex_state = 615, .external_lex_state = 1}, + [1345] = {.lex_state = 0}, [1346] = {.lex_state = 501}, [1347] = {.lex_state = 501}, - [1348] = {.lex_state = 468}, - [1349] = {.lex_state = 501}, - [1350] = {.lex_state = 651}, - [1351] = {.lex_state = 420}, - [1352] = {.lex_state = 641, .external_lex_state = 1}, - [1353] = {.lex_state = 420}, - [1354] = {.lex_state = 619, .external_lex_state = 1}, - [1355] = {.lex_state = 420}, - [1356] = {.lex_state = 608}, + [1348] = {.lex_state = 501}, + [1349] = {.lex_state = 468}, + [1350] = {.lex_state = 501}, + [1351] = {.lex_state = 651}, + [1352] = {.lex_state = 420}, + [1353] = {.lex_state = 641, .external_lex_state = 1}, + [1354] = {.lex_state = 420}, + [1355] = {.lex_state = 619, .external_lex_state = 1}, + [1356] = {.lex_state = 420}, [1357] = {.lex_state = 608}, - [1358] = {.lex_state = 487}, - [1359] = {.lex_state = 643}, - [1360] = {.lex_state = 608}, + [1358] = {.lex_state = 608}, + [1359] = {.lex_state = 487}, + [1360] = {.lex_state = 643}, [1361] = {.lex_state = 608}, - [1362] = {.lex_state = 0}, - [1363] = {.lex_state = 643}, - [1364] = {.lex_state = 608}, + [1362] = {.lex_state = 608}, + [1363] = {.lex_state = 0}, + [1364] = {.lex_state = 643}, [1365] = {.lex_state = 608}, [1366] = {.lex_state = 608}, - [1367] = {.lex_state = 0}, - [1368] = {.lex_state = 443}, - [1369] = {.lex_state = 420}, - [1370] = {.lex_state = 643}, - [1371] = {.lex_state = 608}, + [1367] = {.lex_state = 608}, + [1368] = {.lex_state = 0}, + [1369] = {.lex_state = 443}, + [1370] = {.lex_state = 420}, + [1371] = {.lex_state = 643}, [1372] = {.lex_state = 608}, - [1373] = {.lex_state = 0}, - [1374] = {.lex_state = 608}, - [1375] = {.lex_state = 643}, - [1376] = {.lex_state = 608}, + [1373] = {.lex_state = 608}, + [1374] = {.lex_state = 0}, + [1375] = {.lex_state = 608}, + [1376] = {.lex_state = 643}, [1377] = {.lex_state = 608}, - [1378] = {.lex_state = 501}, + [1378] = {.lex_state = 608}, [1379] = {.lex_state = 501}, - [1380] = {.lex_state = 420}, - [1381] = {.lex_state = 643}, - [1382] = {.lex_state = 608}, + [1380] = {.lex_state = 501}, + [1381] = {.lex_state = 420}, + [1382] = {.lex_state = 643}, [1383] = {.lex_state = 608}, [1384] = {.lex_state = 608}, - [1385] = {.lex_state = 431}, - [1386] = {.lex_state = 576, .external_lex_state = 1}, - [1387] = {.lex_state = 579}, - [1388] = {.lex_state = 605, .external_lex_state = 1}, - [1389] = {.lex_state = 415}, - [1390] = {.lex_state = 420}, - [1391] = {.lex_state = 431}, - [1392] = {.lex_state = 576, .external_lex_state = 1}, - [1393] = {.lex_state = 420}, + [1385] = {.lex_state = 608}, + [1386] = {.lex_state = 431}, + [1387] = {.lex_state = 576, .external_lex_state = 1}, + [1388] = {.lex_state = 579}, + [1389] = {.lex_state = 605, .external_lex_state = 1}, + [1390] = {.lex_state = 415}, + [1391] = {.lex_state = 420}, + [1392] = {.lex_state = 431}, + [1393] = {.lex_state = 576, .external_lex_state = 1}, [1394] = {.lex_state = 420}, - [1395] = {.lex_state = 652, .external_lex_state = 1}, - [1396] = {.lex_state = 431}, - [1397] = {.lex_state = 440}, - [1398] = {.lex_state = 645, .external_lex_state = 1}, - [1399] = {.lex_state = 443}, - [1400] = {.lex_state = 576, .external_lex_state = 1}, - [1401] = {.lex_state = 0}, + [1395] = {.lex_state = 420}, + [1396] = {.lex_state = 652, .external_lex_state = 1}, + [1397] = {.lex_state = 431}, + [1398] = {.lex_state = 440}, + [1399] = {.lex_state = 645, .external_lex_state = 1}, + [1400] = {.lex_state = 443}, + [1401] = {.lex_state = 576, .external_lex_state = 1}, [1402] = {.lex_state = 0}, - [1403] = {.lex_state = 595, .external_lex_state = 1}, - [1404] = {.lex_state = 476}, - [1405] = {.lex_state = 0}, - [1406] = {.lex_state = 624, .external_lex_state = 1}, - [1407] = {.lex_state = 0}, - [1408] = {.lex_state = 636, .external_lex_state = 1}, - [1409] = {.lex_state = 0}, + [1403] = {.lex_state = 0}, + [1404] = {.lex_state = 595, .external_lex_state = 1}, + [1405] = {.lex_state = 476}, + [1406] = {.lex_state = 0}, + [1407] = {.lex_state = 624, .external_lex_state = 1}, + [1408] = {.lex_state = 0}, + [1409] = {.lex_state = 636, .external_lex_state = 1}, [1410] = {.lex_state = 0}, - [1411] = {.lex_state = 420}, - [1412] = {.lex_state = 637}, - [1413] = {.lex_state = 645, .external_lex_state = 1}, + [1411] = {.lex_state = 0}, + [1412] = {.lex_state = 420}, + [1413] = {.lex_state = 637}, [1414] = {.lex_state = 645, .external_lex_state = 1}, - [1415] = {.lex_state = 424}, + [1415] = {.lex_state = 645, .external_lex_state = 1}, [1416] = {.lex_state = 424}, [1417] = {.lex_state = 424}, - [1418] = {.lex_state = 473}, - [1419] = {.lex_state = 0}, - [1420] = {.lex_state = 645, .external_lex_state = 1}, - [1421] = {.lex_state = 576, .external_lex_state = 1}, - [1422] = {.lex_state = 424}, + [1418] = {.lex_state = 424}, + [1419] = {.lex_state = 473}, + [1420] = {.lex_state = 0}, + [1421] = {.lex_state = 645, .external_lex_state = 1}, + [1422] = {.lex_state = 576, .external_lex_state = 1}, [1423] = {.lex_state = 424}, - [1424] = {.lex_state = 645, .external_lex_state = 1}, - [1425] = {.lex_state = 576, .external_lex_state = 1}, - [1426] = {.lex_state = 424}, + [1424] = {.lex_state = 424}, + [1425] = {.lex_state = 645, .external_lex_state = 1}, + [1426] = {.lex_state = 576, .external_lex_state = 1}, [1427] = {.lex_state = 424}, - [1428] = {.lex_state = 645, .external_lex_state = 1}, - [1429] = {.lex_state = 584}, - [1430] = {.lex_state = 0}, - [1431] = {.lex_state = 420}, - [1432] = {.lex_state = 576, .external_lex_state = 1}, - [1433] = {.lex_state = 612, .external_lex_state = 1}, - [1434] = {.lex_state = 595, .external_lex_state = 1}, + [1428] = {.lex_state = 424}, + [1429] = {.lex_state = 645, .external_lex_state = 1}, + [1430] = {.lex_state = 584}, + [1431] = {.lex_state = 0}, + [1432] = {.lex_state = 420}, + [1433] = {.lex_state = 576, .external_lex_state = 1}, + [1434] = {.lex_state = 612, .external_lex_state = 1}, [1435] = {.lex_state = 595, .external_lex_state = 1}, [1436] = {.lex_state = 595, .external_lex_state = 1}, [1437] = {.lex_state = 595, .external_lex_state = 1}, [1438] = {.lex_state = 595, .external_lex_state = 1}, - [1439] = {.lex_state = 617}, + [1439] = {.lex_state = 595, .external_lex_state = 1}, [1440] = {.lex_state = 617}, - [1441] = {.lex_state = 595, .external_lex_state = 1}, - [1442] = {.lex_state = 473}, + [1441] = {.lex_state = 617}, + [1442] = {.lex_state = 595, .external_lex_state = 1}, [1443] = {.lex_state = 473}, - [1444] = {.lex_state = 420}, - [1445] = {.lex_state = 501}, - [1446] = {.lex_state = 501}, + [1444] = {.lex_state = 595, .external_lex_state = 1}, + [1445] = {.lex_state = 473}, + [1446] = {.lex_state = 420}, [1447] = {.lex_state = 501}, [1448] = {.lex_state = 501}, - [1449] = {.lex_state = 612, .external_lex_state = 1}, + [1449] = {.lex_state = 501}, [1450] = {.lex_state = 501}, - [1451] = {.lex_state = 617}, - [1452] = {.lex_state = 595, .external_lex_state = 1}, - [1453] = {.lex_state = 614, .external_lex_state = 1}, - [1454] = {.lex_state = 501}, - [1455] = {.lex_state = 595, .external_lex_state = 1}, - [1456] = {.lex_state = 595, .external_lex_state = 1}, - [1457] = {.lex_state = 646, .external_lex_state = 1}, + [1451] = {.lex_state = 612, .external_lex_state = 1}, + [1452] = {.lex_state = 501}, + [1453] = {.lex_state = 617}, + [1454] = {.lex_state = 595, .external_lex_state = 1}, + [1455] = {.lex_state = 614, .external_lex_state = 1}, + [1456] = {.lex_state = 501}, + [1457] = {.lex_state = 595, .external_lex_state = 1}, [1458] = {.lex_state = 595, .external_lex_state = 1}, - [1459] = {.lex_state = 595, .external_lex_state = 1}, + [1459] = {.lex_state = 646, .external_lex_state = 1}, [1460] = {.lex_state = 595, .external_lex_state = 1}, [1461] = {.lex_state = 595, .external_lex_state = 1}, [1462] = {.lex_state = 595, .external_lex_state = 1}, @@ -13297,232 +13297,232 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1465] = {.lex_state = 595, .external_lex_state = 1}, [1466] = {.lex_state = 595, .external_lex_state = 1}, [1467] = {.lex_state = 595, .external_lex_state = 1}, - [1468] = {.lex_state = 420}, - [1469] = {.lex_state = 637}, - [1470] = {.lex_state = 617}, - [1471] = {.lex_state = 576, .external_lex_state = 1}, - [1472] = {.lex_state = 424}, - [1473] = {.lex_state = 459}, - [1474] = {.lex_state = 0}, - [1475] = {.lex_state = 473}, - [1476] = {.lex_state = 501}, - [1477] = {.lex_state = 576, .external_lex_state = 1}, - [1478] = {.lex_state = 595, .external_lex_state = 1}, - [1479] = {.lex_state = 595, .external_lex_state = 1}, - [1480] = {.lex_state = 501}, - [1481] = {.lex_state = 646, .external_lex_state = 1}, + [1468] = {.lex_state = 595, .external_lex_state = 1}, + [1469] = {.lex_state = 595, .external_lex_state = 1}, + [1470] = {.lex_state = 420}, + [1471] = {.lex_state = 637}, + [1472] = {.lex_state = 617}, + [1473] = {.lex_state = 576, .external_lex_state = 1}, + [1474] = {.lex_state = 424}, + [1475] = {.lex_state = 459}, + [1476] = {.lex_state = 0}, + [1477] = {.lex_state = 473}, + [1478] = {.lex_state = 501}, + [1479] = {.lex_state = 576, .external_lex_state = 1}, + [1480] = {.lex_state = 595, .external_lex_state = 1}, + [1481] = {.lex_state = 0}, [1482] = {.lex_state = 595, .external_lex_state = 1}, [1483] = {.lex_state = 501}, - [1484] = {.lex_state = 647, .external_lex_state = 1}, - [1485] = {.lex_state = 501}, - [1486] = {.lex_state = 473}, - [1487] = {.lex_state = 0}, + [1484] = {.lex_state = 646, .external_lex_state = 1}, + [1485] = {.lex_state = 595, .external_lex_state = 1}, + [1486] = {.lex_state = 501}, + [1487] = {.lex_state = 647, .external_lex_state = 1}, [1488] = {.lex_state = 501}, - [1489] = {.lex_state = 501}, + [1489] = {.lex_state = 473}, [1490] = {.lex_state = 0}, - [1491] = {.lex_state = 624, .external_lex_state = 1}, - [1492] = {.lex_state = 0}, - [1493] = {.lex_state = 501}, - [1494] = {.lex_state = 653, .external_lex_state = 1}, - [1495] = {.lex_state = 637}, - [1496] = {.lex_state = 617}, - [1497] = {.lex_state = 424}, - [1498] = {.lex_state = 473}, - [1499] = {.lex_state = 476}, - [1500] = {.lex_state = 576, .external_lex_state = 1}, - [1501] = {.lex_state = 576, .external_lex_state = 1}, - [1502] = {.lex_state = 420}, - [1503] = {.lex_state = 617}, - [1504] = {.lex_state = 473}, - [1505] = {.lex_state = 576, .external_lex_state = 1}, - [1506] = {.lex_state = 637}, - [1507] = {.lex_state = 614, .external_lex_state = 1}, - [1508] = {.lex_state = 473}, - [1509] = {.lex_state = 650, .external_lex_state = 1}, - [1510] = {.lex_state = 576, .external_lex_state = 1}, - [1511] = {.lex_state = 0}, - [1512] = {.lex_state = 605, .external_lex_state = 1}, - [1513] = {.lex_state = 0}, - [1514] = {.lex_state = 605, .external_lex_state = 1}, - [1515] = {.lex_state = 0}, - [1516] = {.lex_state = 473}, - [1517] = {.lex_state = 420}, - [1518] = {.lex_state = 473}, - [1519] = {.lex_state = 501}, - [1520] = {.lex_state = 473}, + [1491] = {.lex_state = 501}, + [1492] = {.lex_state = 501}, + [1493] = {.lex_state = 0}, + [1494] = {.lex_state = 624, .external_lex_state = 1}, + [1495] = {.lex_state = 0}, + [1496] = {.lex_state = 501}, + [1497] = {.lex_state = 653, .external_lex_state = 1}, + [1498] = {.lex_state = 637}, + [1499] = {.lex_state = 617}, + [1500] = {.lex_state = 424}, + [1501] = {.lex_state = 473}, + [1502] = {.lex_state = 476}, + [1503] = {.lex_state = 576, .external_lex_state = 1}, + [1504] = {.lex_state = 576, .external_lex_state = 1}, + [1505] = {.lex_state = 420}, + [1506] = {.lex_state = 617}, + [1507] = {.lex_state = 473}, + [1508] = {.lex_state = 576, .external_lex_state = 1}, + [1509] = {.lex_state = 637}, + [1510] = {.lex_state = 614, .external_lex_state = 1}, + [1511] = {.lex_state = 473}, + [1512] = {.lex_state = 650, .external_lex_state = 1}, + [1513] = {.lex_state = 576, .external_lex_state = 1}, + [1514] = {.lex_state = 0}, + [1515] = {.lex_state = 605, .external_lex_state = 1}, + [1516] = {.lex_state = 0}, + [1517] = {.lex_state = 605, .external_lex_state = 1}, + [1518] = {.lex_state = 0}, + [1519] = {.lex_state = 473}, + [1520] = {.lex_state = 420}, [1521] = {.lex_state = 473}, - [1522] = {.lex_state = 473}, + [1522] = {.lex_state = 501}, [1523] = {.lex_state = 473}, [1524] = {.lex_state = 473}, [1525] = {.lex_state = 473}, [1526] = {.lex_state = 473}, [1527] = {.lex_state = 473}, [1528] = {.lex_state = 473}, - [1529] = {.lex_state = 637}, - [1530] = {.lex_state = 420}, - [1531] = {.lex_state = 420}, - [1532] = {.lex_state = 0}, - [1533] = {.lex_state = 0}, + [1529] = {.lex_state = 473}, + [1530] = {.lex_state = 473}, + [1531] = {.lex_state = 473}, + [1532] = {.lex_state = 637}, + [1533] = {.lex_state = 420}, [1534] = {.lex_state = 420}, - [1535] = {.lex_state = 420}, - [1536] = {.lex_state = 420}, - [1537] = {.lex_state = 579}, + [1535] = {.lex_state = 0}, + [1536] = {.lex_state = 0}, + [1537] = {.lex_state = 420}, [1538] = {.lex_state = 420}, - [1539] = {.lex_state = 608}, - [1540] = {.lex_state = 608}, - [1541] = {.lex_state = 608}, + [1539] = {.lex_state = 420}, + [1540] = {.lex_state = 579}, + [1541] = {.lex_state = 420}, [1542] = {.lex_state = 608}, [1543] = {.lex_state = 608}, [1544] = {.lex_state = 608}, - [1545] = {.lex_state = 501}, - [1546] = {.lex_state = 501}, + [1545] = {.lex_state = 608}, + [1546] = {.lex_state = 608}, [1547] = {.lex_state = 608}, - [1548] = {.lex_state = 584}, - [1549] = {.lex_state = 485}, - [1550] = {.lex_state = 584}, - [1551] = {.lex_state = 485}, - [1552] = {.lex_state = 424}, - [1553] = {.lex_state = 485}, - [1554] = {.lex_state = 424}, - [1555] = {.lex_state = 485}, - [1556] = {.lex_state = 424}, - [1557] = {.lex_state = 431}, - [1558] = {.lex_state = 581}, - [1559] = {.lex_state = 579}, - [1560] = {.lex_state = 581}, - [1561] = {.lex_state = 424}, - [1562] = {.lex_state = 485}, + [1548] = {.lex_state = 501}, + [1549] = {.lex_state = 501}, + [1550] = {.lex_state = 608}, + [1551] = {.lex_state = 584}, + [1552] = {.lex_state = 485}, + [1553] = {.lex_state = 584}, + [1554] = {.lex_state = 485}, + [1555] = {.lex_state = 424}, + [1556] = {.lex_state = 485}, + [1557] = {.lex_state = 424}, + [1558] = {.lex_state = 485}, + [1559] = {.lex_state = 424}, + [1560] = {.lex_state = 431}, + [1561] = {.lex_state = 581}, + [1562] = {.lex_state = 579}, [1563] = {.lex_state = 581}, [1564] = {.lex_state = 424}, [1565] = {.lex_state = 485}, [1566] = {.lex_state = 581}, [1567] = {.lex_state = 424}, [1568] = {.lex_state = 485}, - [1569] = {.lex_state = 584}, - [1570] = {.lex_state = 0}, - [1571] = {.lex_state = 420}, - [1572] = {.lex_state = 581}, - [1573] = {.lex_state = 424}, - [1574] = {.lex_state = 0}, + [1569] = {.lex_state = 581}, + [1570] = {.lex_state = 424}, + [1571] = {.lex_state = 485}, + [1572] = {.lex_state = 584}, + [1573] = {.lex_state = 0}, + [1574] = {.lex_state = 420}, [1575] = {.lex_state = 581}, - [1576] = {.lex_state = 581}, - [1577] = {.lex_state = 424}, + [1576] = {.lex_state = 424}, + [1577] = {.lex_state = 0}, [1578] = {.lex_state = 581}, - [1579] = {.lex_state = 395}, - [1580] = {.lex_state = 581}, + [1579] = {.lex_state = 581}, + [1580] = {.lex_state = 424}, [1581] = {.lex_state = 581}, - [1582] = {.lex_state = 443}, - [1583] = {.lex_state = 420}, - [1584] = {.lex_state = 0}, - [1585] = {.lex_state = 581}, - [1586] = {.lex_state = 604, .external_lex_state = 1}, - [1587] = {.lex_state = 581}, - [1588] = {.lex_state = 0}, - [1589] = {.lex_state = 605, .external_lex_state = 1}, - [1590] = {.lex_state = 0}, - [1591] = {.lex_state = 605, .external_lex_state = 1}, - [1592] = {.lex_state = 0}, - [1593] = {.lex_state = 581}, - [1594] = {.lex_state = 576, .external_lex_state = 1}, - [1595] = {.lex_state = 581}, - [1596] = {.lex_state = 0}, - [1597] = {.lex_state = 424}, - [1598] = {.lex_state = 485}, - [1599] = {.lex_state = 485}, - [1600] = {.lex_state = 0}, + [1582] = {.lex_state = 395}, + [1583] = {.lex_state = 581}, + [1584] = {.lex_state = 581}, + [1585] = {.lex_state = 443}, + [1586] = {.lex_state = 420}, + [1587] = {.lex_state = 0}, + [1588] = {.lex_state = 581}, + [1589] = {.lex_state = 604, .external_lex_state = 1}, + [1590] = {.lex_state = 581}, + [1591] = {.lex_state = 0}, + [1592] = {.lex_state = 605, .external_lex_state = 1}, + [1593] = {.lex_state = 0}, + [1594] = {.lex_state = 605, .external_lex_state = 1}, + [1595] = {.lex_state = 0}, + [1596] = {.lex_state = 581}, + [1597] = {.lex_state = 576, .external_lex_state = 1}, + [1598] = {.lex_state = 581}, + [1599] = {.lex_state = 0}, + [1600] = {.lex_state = 424}, [1601] = {.lex_state = 485}, [1602] = {.lex_state = 485}, [1603] = {.lex_state = 0}, [1604] = {.lex_state = 485}, [1605] = {.lex_state = 485}, - [1606] = {.lex_state = 485}, - [1607] = {.lex_state = 473}, - [1608] = {.lex_state = 0}, + [1606] = {.lex_state = 0}, + [1607] = {.lex_state = 485}, + [1608] = {.lex_state = 485}, [1609] = {.lex_state = 485}, [1610] = {.lex_state = 473}, [1611] = {.lex_state = 0}, [1612] = {.lex_state = 485}, - [1613] = {.lex_state = 485}, - [1614] = {.lex_state = 485}, - [1615] = {.lex_state = 420}, - [1616] = {.lex_state = 420}, - [1617] = {.lex_state = 420}, + [1613] = {.lex_state = 473}, + [1614] = {.lex_state = 0}, + [1615] = {.lex_state = 485}, + [1616] = {.lex_state = 485}, + [1617] = {.lex_state = 485}, [1618] = {.lex_state = 420}, - [1619] = {.lex_state = 473}, - [1620] = {.lex_state = 608}, - [1621] = {.lex_state = 608}, - [1622] = {.lex_state = 501}, - [1623] = {.lex_state = 501}, + [1619] = {.lex_state = 420}, + [1620] = {.lex_state = 420}, + [1621] = {.lex_state = 420}, + [1622] = {.lex_state = 473}, + [1623] = {.lex_state = 608}, [1624] = {.lex_state = 608}, - [1625] = {.lex_state = 459}, - [1626] = {.lex_state = 420}, - [1627] = {.lex_state = 638}, - [1628] = {.lex_state = 638}, - [1629] = {.lex_state = 586}, - [1630] = {.lex_state = 586}, - [1631] = {.lex_state = 586}, - [1632] = {.lex_state = 424}, - [1633] = {.lex_state = 424}, - [1634] = {.lex_state = 638}, - [1635] = {.lex_state = 586}, - [1636] = {.lex_state = 586}, - [1637] = {.lex_state = 586}, - [1638] = {.lex_state = 424}, - [1639] = {.lex_state = 424}, + [1625] = {.lex_state = 501}, + [1626] = {.lex_state = 501}, + [1627] = {.lex_state = 608}, + [1628] = {.lex_state = 459}, + [1629] = {.lex_state = 420}, + [1630] = {.lex_state = 638}, + [1631] = {.lex_state = 638}, + [1632] = {.lex_state = 586}, + [1633] = {.lex_state = 586}, + [1634] = {.lex_state = 586}, + [1635] = {.lex_state = 424}, + [1636] = {.lex_state = 424}, + [1637] = {.lex_state = 638}, + [1638] = {.lex_state = 586}, + [1639] = {.lex_state = 586}, [1640] = {.lex_state = 586}, - [1641] = {.lex_state = 586}, - [1642] = {.lex_state = 586}, - [1643] = {.lex_state = 424}, - [1644] = {.lex_state = 424}, + [1641] = {.lex_state = 424}, + [1642] = {.lex_state = 424}, + [1643] = {.lex_state = 586}, + [1644] = {.lex_state = 586}, [1645] = {.lex_state = 586}, - [1646] = {.lex_state = 0}, - [1647] = {.lex_state = 586}, + [1646] = {.lex_state = 424}, + [1647] = {.lex_state = 424}, [1648] = {.lex_state = 586}, - [1649] = {.lex_state = 604, .external_lex_state = 1}, + [1649] = {.lex_state = 0}, [1650] = {.lex_state = 586}, - [1651] = {.lex_state = 0}, - [1652] = {.lex_state = 0}, + [1651] = {.lex_state = 586}, + [1652] = {.lex_state = 604, .external_lex_state = 1}, [1653] = {.lex_state = 586}, - [1654] = {.lex_state = 420}, - [1655] = {.lex_state = 420}, - [1656] = {.lex_state = 476}, - [1657] = {.lex_state = 501}, - [1658] = {.lex_state = 586}, - [1659] = {.lex_state = 420}, - [1660] = {.lex_state = 424}, - [1661] = {.lex_state = 424}, - [1662] = {.lex_state = 476}, - [1663] = {.lex_state = 476}, - [1664] = {.lex_state = 618, .external_lex_state = 1}, - [1665] = {.lex_state = 473}, - [1666] = {.lex_state = 473}, - [1667] = {.lex_state = 468}, - [1668] = {.lex_state = 501}, - [1669] = {.lex_state = 595, .external_lex_state = 1}, - [1670] = {.lex_state = 476}, - [1671] = {.lex_state = 420}, - [1672] = {.lex_state = 501}, - [1673] = {.lex_state = 420}, - [1674] = {.lex_state = 468}, - [1675] = {.lex_state = 608}, - [1676] = {.lex_state = 608}, - [1677] = {.lex_state = 501}, - [1678] = {.lex_state = 586}, - [1679] = {.lex_state = 586}, - [1680] = {.lex_state = 0}, - [1681] = {.lex_state = 605, .external_lex_state = 1}, - [1682] = {.lex_state = 420}, - [1683] = {.lex_state = 617}, - [1684] = {.lex_state = 473}, - [1685] = {.lex_state = 614, .external_lex_state = 1}, - [1686] = {.lex_state = 473}, - [1687] = {.lex_state = 650, .external_lex_state = 1}, - [1688] = {.lex_state = 473}, + [1654] = {.lex_state = 0}, + [1655] = {.lex_state = 0}, + [1656] = {.lex_state = 586}, + [1657] = {.lex_state = 420}, + [1658] = {.lex_state = 420}, + [1659] = {.lex_state = 476}, + [1660] = {.lex_state = 501}, + [1661] = {.lex_state = 586}, + [1662] = {.lex_state = 420}, + [1663] = {.lex_state = 424}, + [1664] = {.lex_state = 424}, + [1665] = {.lex_state = 476}, + [1666] = {.lex_state = 476}, + [1667] = {.lex_state = 618, .external_lex_state = 1}, + [1668] = {.lex_state = 473}, + [1669] = {.lex_state = 473}, + [1670] = {.lex_state = 468}, + [1671] = {.lex_state = 501}, + [1672] = {.lex_state = 595, .external_lex_state = 1}, + [1673] = {.lex_state = 476}, + [1674] = {.lex_state = 420}, + [1675] = {.lex_state = 501}, + [1676] = {.lex_state = 420}, + [1677] = {.lex_state = 468}, + [1678] = {.lex_state = 608}, + [1679] = {.lex_state = 608}, + [1680] = {.lex_state = 501}, + [1681] = {.lex_state = 586}, + [1682] = {.lex_state = 586}, + [1683] = {.lex_state = 0}, + [1684] = {.lex_state = 605, .external_lex_state = 1}, + [1685] = {.lex_state = 420}, + [1686] = {.lex_state = 617}, + [1687] = {.lex_state = 473}, + [1688] = {.lex_state = 614, .external_lex_state = 1}, [1689] = {.lex_state = 473}, - [1690] = {.lex_state = 501}, + [1690] = {.lex_state = 650, .external_lex_state = 1}, [1691] = {.lex_state = 473}, [1692] = {.lex_state = 473}, - [1693] = {.lex_state = 473}, + [1693] = {.lex_state = 501}, [1694] = {.lex_state = 473}, [1695] = {.lex_state = 473}, [1696] = {.lex_state = 473}, @@ -13530,122 +13530,122 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1698] = {.lex_state = 473}, [1699] = {.lex_state = 473}, [1700] = {.lex_state = 473}, - [1701] = {.lex_state = 420}, - [1702] = {.lex_state = 420}, - [1703] = {.lex_state = 608}, - [1704] = {.lex_state = 501}, - [1705] = {.lex_state = 468}, - [1706] = {.lex_state = 501}, - [1707] = {.lex_state = 608}, - [1708] = {.lex_state = 473}, - [1709] = {.lex_state = 618, .external_lex_state = 1}, + [1701] = {.lex_state = 473}, + [1702] = {.lex_state = 473}, + [1703] = {.lex_state = 473}, + [1704] = {.lex_state = 420}, + [1705] = {.lex_state = 420}, + [1706] = {.lex_state = 608}, + [1707] = {.lex_state = 501}, + [1708] = {.lex_state = 468}, + [1709] = {.lex_state = 501}, [1710] = {.lex_state = 608}, - [1711] = {.lex_state = 608}, - [1712] = {.lex_state = 420}, + [1711] = {.lex_state = 473}, + [1712] = {.lex_state = 618, .external_lex_state = 1}, [1713] = {.lex_state = 608}, - [1714] = {.lex_state = 468}, + [1714] = {.lex_state = 608}, [1715] = {.lex_state = 420}, - [1716] = {.lex_state = 476}, - [1717] = {.lex_state = 420}, - [1718] = {.lex_state = 473}, - [1719] = {.lex_state = 420}, - [1720] = {.lex_state = 395}, - [1721] = {.lex_state = 420}, - [1722] = {.lex_state = 473}, + [1716] = {.lex_state = 608}, + [1717] = {.lex_state = 468}, + [1718] = {.lex_state = 420}, + [1719] = {.lex_state = 476}, + [1720] = {.lex_state = 420}, + [1721] = {.lex_state = 473}, + [1722] = {.lex_state = 420}, [1723] = {.lex_state = 395}, - [1724] = {.lex_state = 612, .external_lex_state = 1}, - [1725] = {.lex_state = 595, .external_lex_state = 1}, - [1726] = {.lex_state = 595, .external_lex_state = 1}, - [1727] = {.lex_state = 595, .external_lex_state = 1}, + [1724] = {.lex_state = 420}, + [1725] = {.lex_state = 473}, + [1726] = {.lex_state = 395}, + [1727] = {.lex_state = 612, .external_lex_state = 1}, [1728] = {.lex_state = 595, .external_lex_state = 1}, [1729] = {.lex_state = 595, .external_lex_state = 1}, - [1730] = {.lex_state = 617}, - [1731] = {.lex_state = 617}, + [1730] = {.lex_state = 595, .external_lex_state = 1}, + [1731] = {.lex_state = 595, .external_lex_state = 1}, [1732] = {.lex_state = 595, .external_lex_state = 1}, - [1733] = {.lex_state = 473}, - [1734] = {.lex_state = 468}, - [1735] = {.lex_state = 608}, - [1736] = {.lex_state = 420}, - [1737] = {.lex_state = 608}, + [1733] = {.lex_state = 617}, + [1734] = {.lex_state = 617}, + [1735] = {.lex_state = 595, .external_lex_state = 1}, + [1736] = {.lex_state = 473}, + [1737] = {.lex_state = 468}, [1738] = {.lex_state = 608}, - [1739] = {.lex_state = 501}, - [1740] = {.lex_state = 501}, + [1739] = {.lex_state = 420}, + [1740] = {.lex_state = 608}, [1741] = {.lex_state = 608}, - [1742] = {.lex_state = 0}, - [1743] = {.lex_state = 0}, - [1744] = {.lex_state = 501}, - [1745] = {.lex_state = 468}, - [1746] = {.lex_state = 501}, - [1747] = {.lex_state = 0}, - [1748] = {.lex_state = 637}, - [1749] = {.lex_state = 473}, - [1750] = {.lex_state = 420}, - [1751] = {.lex_state = 501}, - [1752] = {.lex_state = 420}, - [1753] = {.lex_state = 637}, - [1754] = {.lex_state = 605, .external_lex_state = 1}, + [1742] = {.lex_state = 501}, + [1743] = {.lex_state = 501}, + [1744] = {.lex_state = 608}, + [1745] = {.lex_state = 0}, + [1746] = {.lex_state = 0}, + [1747] = {.lex_state = 501}, + [1748] = {.lex_state = 468}, + [1749] = {.lex_state = 501}, + [1750] = {.lex_state = 0}, + [1751] = {.lex_state = 637}, + [1752] = {.lex_state = 473}, + [1753] = {.lex_state = 420}, + [1754] = {.lex_state = 501}, [1755] = {.lex_state = 420}, - [1756] = {.lex_state = 420}, - [1757] = {.lex_state = 617}, - [1758] = {.lex_state = 614, .external_lex_state = 1}, - [1759] = {.lex_state = 473}, - [1760] = {.lex_state = 650, .external_lex_state = 1}, - [1761] = {.lex_state = 501}, + [1756] = {.lex_state = 637}, + [1757] = {.lex_state = 605, .external_lex_state = 1}, + [1758] = {.lex_state = 420}, + [1759] = {.lex_state = 420}, + [1760] = {.lex_state = 617}, + [1761] = {.lex_state = 614, .external_lex_state = 1}, [1762] = {.lex_state = 473}, - [1763] = {.lex_state = 395}, - [1764] = {.lex_state = 473}, - [1765] = {.lex_state = 501}, - [1766] = {.lex_state = 473}, + [1763] = {.lex_state = 650, .external_lex_state = 1}, + [1764] = {.lex_state = 501}, + [1765] = {.lex_state = 473}, + [1766] = {.lex_state = 395}, [1767] = {.lex_state = 473}, - [1768] = {.lex_state = 473}, + [1768] = {.lex_state = 501}, [1769] = {.lex_state = 473}, [1770] = {.lex_state = 473}, [1771] = {.lex_state = 473}, [1772] = {.lex_state = 473}, [1773] = {.lex_state = 473}, [1774] = {.lex_state = 473}, - [1775] = {.lex_state = 649, .external_lex_state = 1}, - [1776] = {.lex_state = 395}, + [1775] = {.lex_state = 473}, + [1776] = {.lex_state = 473}, [1777] = {.lex_state = 473}, - [1778] = {.lex_state = 473}, - [1779] = {.lex_state = 473}, - [1780] = {.lex_state = 395}, - [1781] = {.lex_state = 608}, - [1782] = {.lex_state = 608}, - [1783] = {.lex_state = 608}, + [1778] = {.lex_state = 649, .external_lex_state = 1}, + [1779] = {.lex_state = 395}, + [1780] = {.lex_state = 473}, + [1781] = {.lex_state = 473}, + [1782] = {.lex_state = 473}, + [1783] = {.lex_state = 395}, [1784] = {.lex_state = 608}, [1785] = {.lex_state = 608}, - [1786] = {.lex_state = 501}, - [1787] = {.lex_state = 501}, + [1786] = {.lex_state = 608}, + [1787] = {.lex_state = 608}, [1788] = {.lex_state = 608}, - [1789] = {.lex_state = 605, .external_lex_state = 1}, - [1790] = {.lex_state = 420}, - [1791] = {.lex_state = 617}, - [1792] = {.lex_state = 614, .external_lex_state = 1}, - [1793] = {.lex_state = 473}, - [1794] = {.lex_state = 650, .external_lex_state = 1}, - [1795] = {.lex_state = 473}, - [1796] = {.lex_state = 501}, - [1797] = {.lex_state = 473}, + [1789] = {.lex_state = 501}, + [1790] = {.lex_state = 501}, + [1791] = {.lex_state = 608}, + [1792] = {.lex_state = 605, .external_lex_state = 1}, + [1793] = {.lex_state = 420}, + [1794] = {.lex_state = 617}, + [1795] = {.lex_state = 614, .external_lex_state = 1}, + [1796] = {.lex_state = 473}, + [1797] = {.lex_state = 650, .external_lex_state = 1}, [1798] = {.lex_state = 473}, - [1799] = {.lex_state = 473}, + [1799] = {.lex_state = 501}, [1800] = {.lex_state = 473}, [1801] = {.lex_state = 473}, [1802] = {.lex_state = 473}, [1803] = {.lex_state = 473}, [1804] = {.lex_state = 473}, [1805] = {.lex_state = 473}, - [1806] = {.lex_state = 605, .external_lex_state = 1}, - [1807] = {.lex_state = 420}, - [1808] = {.lex_state = 617}, - [1809] = {.lex_state = 614, .external_lex_state = 1}, - [1810] = {.lex_state = 473}, - [1811] = {.lex_state = 650, .external_lex_state = 1}, - [1812] = {.lex_state = 473}, - [1813] = {.lex_state = 501}, - [1814] = {.lex_state = 473}, + [1806] = {.lex_state = 473}, + [1807] = {.lex_state = 473}, + [1808] = {.lex_state = 473}, + [1809] = {.lex_state = 605, .external_lex_state = 1}, + [1810] = {.lex_state = 420}, + [1811] = {.lex_state = 617}, + [1812] = {.lex_state = 614, .external_lex_state = 1}, + [1813] = {.lex_state = 473}, + [1814] = {.lex_state = 650, .external_lex_state = 1}, [1815] = {.lex_state = 473}, - [1816] = {.lex_state = 473}, + [1816] = {.lex_state = 501}, [1817] = {.lex_state = 473}, [1818] = {.lex_state = 473}, [1819] = {.lex_state = 473}, @@ -13653,187 +13653,187 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1821] = {.lex_state = 473}, [1822] = {.lex_state = 473}, [1823] = {.lex_state = 473}, - [1824] = {.lex_state = 468}, - [1825] = {.lex_state = 501}, - [1826] = {.lex_state = 501}, + [1824] = {.lex_state = 473}, + [1825] = {.lex_state = 473}, + [1826] = {.lex_state = 473}, [1827] = {.lex_state = 468}, - [1828] = {.lex_state = 420}, - [1829] = {.lex_state = 476}, - [1830] = {.lex_state = 501}, - [1831] = {.lex_state = 473}, - [1832] = {.lex_state = 501}, - [1833] = {.lex_state = 420}, - [1834] = {.lex_state = 605, .external_lex_state = 1}, - [1835] = {.lex_state = 420}, - [1836] = {.lex_state = 639}, - [1837] = {.lex_state = 614, .external_lex_state = 1}, - [1838] = {.lex_state = 473}, - [1839] = {.lex_state = 650, .external_lex_state = 1}, - [1840] = {.lex_state = 473}, + [1828] = {.lex_state = 501}, + [1829] = {.lex_state = 501}, + [1830] = {.lex_state = 468}, + [1831] = {.lex_state = 420}, + [1832] = {.lex_state = 476}, + [1833] = {.lex_state = 501}, + [1834] = {.lex_state = 473}, + [1835] = {.lex_state = 501}, + [1836] = {.lex_state = 420}, + [1837] = {.lex_state = 605, .external_lex_state = 1}, + [1838] = {.lex_state = 420}, + [1839] = {.lex_state = 639}, + [1840] = {.lex_state = 614, .external_lex_state = 1}, [1841] = {.lex_state = 473}, - [1842] = {.lex_state = 501}, + [1842] = {.lex_state = 650, .external_lex_state = 1}, [1843] = {.lex_state = 473}, [1844] = {.lex_state = 473}, - [1845] = {.lex_state = 473}, + [1845] = {.lex_state = 501}, [1846] = {.lex_state = 473}, [1847] = {.lex_state = 473}, [1848] = {.lex_state = 473}, [1849] = {.lex_state = 473}, [1850] = {.lex_state = 473}, [1851] = {.lex_state = 473}, - [1852] = {.lex_state = 395}, - [1853] = {.lex_state = 420}, - [1854] = {.lex_state = 619, .external_lex_state = 1}, - [1855] = {.lex_state = 420}, - [1856] = {.lex_state = 395}, + [1852] = {.lex_state = 473}, + [1853] = {.lex_state = 473}, + [1854] = {.lex_state = 473}, + [1855] = {.lex_state = 395}, + [1856] = {.lex_state = 420}, [1857] = {.lex_state = 619, .external_lex_state = 1}, - [1858] = {.lex_state = 640, .external_lex_state = 1}, - [1859] = {.lex_state = 619, .external_lex_state = 1}, - [1860] = {.lex_state = 640, .external_lex_state = 1}, - [1861] = {.lex_state = 619, .external_lex_state = 1}, - [1862] = {.lex_state = 654, .external_lex_state = 1}, - [1863] = {.lex_state = 615, .external_lex_state = 1}, - [1864] = {.lex_state = 420}, - [1865] = {.lex_state = 619, .external_lex_state = 1}, - [1866] = {.lex_state = 473}, - [1867] = {.lex_state = 501}, - [1868] = {.lex_state = 501}, - [1869] = {.lex_state = 0}, + [1858] = {.lex_state = 420}, + [1859] = {.lex_state = 395}, + [1860] = {.lex_state = 619, .external_lex_state = 1}, + [1861] = {.lex_state = 640, .external_lex_state = 1}, + [1862] = {.lex_state = 619, .external_lex_state = 1}, + [1863] = {.lex_state = 640, .external_lex_state = 1}, + [1864] = {.lex_state = 619, .external_lex_state = 1}, + [1865] = {.lex_state = 654, .external_lex_state = 1}, + [1866] = {.lex_state = 615, .external_lex_state = 1}, + [1867] = {.lex_state = 420}, + [1868] = {.lex_state = 619, .external_lex_state = 1}, + [1869] = {.lex_state = 473}, [1870] = {.lex_state = 501}, - [1871] = {.lex_state = 0}, - [1872] = {.lex_state = 650, .external_lex_state = 1}, - [1873] = {.lex_state = 473}, - [1874] = {.lex_state = 501}, - [1875] = {.lex_state = 595, .external_lex_state = 1}, - [1876] = {.lex_state = 501}, - [1877] = {.lex_state = 468}, - [1878] = {.lex_state = 501}, + [1871] = {.lex_state = 501}, + [1872] = {.lex_state = 0}, + [1873] = {.lex_state = 501}, + [1874] = {.lex_state = 0}, + [1875] = {.lex_state = 650, .external_lex_state = 1}, + [1876] = {.lex_state = 473}, + [1877] = {.lex_state = 501}, + [1878] = {.lex_state = 595, .external_lex_state = 1}, [1879] = {.lex_state = 501}, - [1880] = {.lex_state = 420}, - [1881] = {.lex_state = 420}, - [1882] = {.lex_state = 420}, + [1880] = {.lex_state = 468}, + [1881] = {.lex_state = 501}, + [1882] = {.lex_state = 501}, [1883] = {.lex_state = 420}, - [1884] = {.lex_state = 468}, - [1885] = {.lex_state = 395}, - [1886] = {.lex_state = 476}, - [1887] = {.lex_state = 501}, - [1888] = {.lex_state = 651}, - [1889] = {.lex_state = 420}, - [1890] = {.lex_state = 641, .external_lex_state = 1}, - [1891] = {.lex_state = 420}, - [1892] = {.lex_state = 395}, - [1893] = {.lex_state = 608}, - [1894] = {.lex_state = 395}, - [1895] = {.lex_state = 608}, + [1884] = {.lex_state = 420}, + [1885] = {.lex_state = 420}, + [1886] = {.lex_state = 420}, + [1887] = {.lex_state = 468}, + [1888] = {.lex_state = 395}, + [1889] = {.lex_state = 476}, + [1890] = {.lex_state = 501}, + [1891] = {.lex_state = 651}, + [1892] = {.lex_state = 420}, + [1893] = {.lex_state = 641, .external_lex_state = 1}, + [1894] = {.lex_state = 420}, + [1895] = {.lex_state = 395}, [1896] = {.lex_state = 608}, - [1897] = {.lex_state = 487}, + [1897] = {.lex_state = 395}, [1898] = {.lex_state = 608}, - [1899] = {.lex_state = 0}, - [1900] = {.lex_state = 608}, - [1901] = {.lex_state = 0}, - [1902] = {.lex_state = 643}, - [1903] = {.lex_state = 420}, - [1904] = {.lex_state = 643}, - [1905] = {.lex_state = 608}, - [1906] = {.lex_state = 0}, - [1907] = {.lex_state = 501}, - [1908] = {.lex_state = 501}, - [1909] = {.lex_state = 501}, + [1899] = {.lex_state = 608}, + [1900] = {.lex_state = 487}, + [1901] = {.lex_state = 608}, + [1902] = {.lex_state = 0}, + [1903] = {.lex_state = 608}, + [1904] = {.lex_state = 0}, + [1905] = {.lex_state = 643}, + [1906] = {.lex_state = 420}, + [1907] = {.lex_state = 643}, + [1908] = {.lex_state = 608}, + [1909] = {.lex_state = 0}, [1910] = {.lex_state = 501}, - [1911] = {.lex_state = 643}, - [1912] = {.lex_state = 584}, - [1913] = {.lex_state = 576, .external_lex_state = 1}, - [1914] = {.lex_state = 584}, - [1915] = {.lex_state = 645, .external_lex_state = 1}, - [1916] = {.lex_state = 440}, - [1917] = {.lex_state = 645, .external_lex_state = 1}, + [1911] = {.lex_state = 501}, + [1912] = {.lex_state = 501}, + [1913] = {.lex_state = 501}, + [1914] = {.lex_state = 643}, + [1915] = {.lex_state = 584}, + [1916] = {.lex_state = 576, .external_lex_state = 1}, + [1917] = {.lex_state = 584}, [1918] = {.lex_state = 645, .external_lex_state = 1}, - [1919] = {.lex_state = 645, .external_lex_state = 1}, - [1920] = {.lex_state = 415}, - [1921] = {.lex_state = 420}, - [1922] = {.lex_state = 431}, - [1923] = {.lex_state = 420}, + [1919] = {.lex_state = 440}, + [1920] = {.lex_state = 645, .external_lex_state = 1}, + [1921] = {.lex_state = 645, .external_lex_state = 1}, + [1922] = {.lex_state = 645, .external_lex_state = 1}, + [1923] = {.lex_state = 415}, [1924] = {.lex_state = 420}, - [1925] = {.lex_state = 440}, - [1926] = {.lex_state = 652, .external_lex_state = 1}, - [1927] = {.lex_state = 443}, - [1928] = {.lex_state = 576, .external_lex_state = 1}, - [1929] = {.lex_state = 0}, - [1930] = {.lex_state = 0}, - [1931] = {.lex_state = 595, .external_lex_state = 1}, - [1932] = {.lex_state = 476}, + [1925] = {.lex_state = 431}, + [1926] = {.lex_state = 420}, + [1927] = {.lex_state = 420}, + [1928] = {.lex_state = 440}, + [1929] = {.lex_state = 652, .external_lex_state = 1}, + [1930] = {.lex_state = 443}, + [1931] = {.lex_state = 576, .external_lex_state = 1}, + [1932] = {.lex_state = 0}, [1933] = {.lex_state = 0}, - [1934] = {.lex_state = 624, .external_lex_state = 1}, - [1935] = {.lex_state = 0}, - [1936] = {.lex_state = 636, .external_lex_state = 1}, - [1937] = {.lex_state = 0}, + [1934] = {.lex_state = 595, .external_lex_state = 1}, + [1935] = {.lex_state = 476}, + [1936] = {.lex_state = 0}, + [1937] = {.lex_state = 624, .external_lex_state = 1}, [1938] = {.lex_state = 0}, - [1939] = {.lex_state = 420}, - [1940] = {.lex_state = 637}, - [1941] = {.lex_state = 652, .external_lex_state = 1}, - [1942] = {.lex_state = 652, .external_lex_state = 1}, - [1943] = {.lex_state = 424}, - [1944] = {.lex_state = 473}, - [1945] = {.lex_state = 0}, - [1946] = {.lex_state = 652, .external_lex_state = 1}, - [1947] = {.lex_state = 645, .external_lex_state = 1}, - [1948] = {.lex_state = 431}, - [1949] = {.lex_state = 645, .external_lex_state = 1}, - [1950] = {.lex_state = 420}, - [1951] = {.lex_state = 443}, + [1939] = {.lex_state = 636, .external_lex_state = 1}, + [1940] = {.lex_state = 0}, + [1941] = {.lex_state = 0}, + [1942] = {.lex_state = 420}, + [1943] = {.lex_state = 637}, + [1944] = {.lex_state = 652, .external_lex_state = 1}, + [1945] = {.lex_state = 652, .external_lex_state = 1}, + [1946] = {.lex_state = 424}, + [1947] = {.lex_state = 473}, + [1948] = {.lex_state = 0}, + [1949] = {.lex_state = 652, .external_lex_state = 1}, + [1950] = {.lex_state = 645, .external_lex_state = 1}, + [1951] = {.lex_state = 431}, [1952] = {.lex_state = 645, .external_lex_state = 1}, - [1953] = {.lex_state = 576, .external_lex_state = 1}, - [1954] = {.lex_state = 595, .external_lex_state = 1}, - [1955] = {.lex_state = 595, .external_lex_state = 1}, - [1956] = {.lex_state = 501}, - [1957] = {.lex_state = 646, .external_lex_state = 1}, - [1958] = {.lex_state = 595, .external_lex_state = 1}, - [1959] = {.lex_state = 501}, - [1960] = {.lex_state = 647, .external_lex_state = 1}, - [1961] = {.lex_state = 645, .external_lex_state = 1}, - [1962] = {.lex_state = 473}, - [1963] = {.lex_state = 0}, - [1964] = {.lex_state = 645, .external_lex_state = 1}, + [1953] = {.lex_state = 420}, + [1954] = {.lex_state = 443}, + [1955] = {.lex_state = 645, .external_lex_state = 1}, + [1956] = {.lex_state = 576, .external_lex_state = 1}, + [1957] = {.lex_state = 595, .external_lex_state = 1}, + [1958] = {.lex_state = 0}, + [1959] = {.lex_state = 595, .external_lex_state = 1}, + [1960] = {.lex_state = 501}, + [1961] = {.lex_state = 646, .external_lex_state = 1}, + [1962] = {.lex_state = 595, .external_lex_state = 1}, + [1963] = {.lex_state = 501}, + [1964] = {.lex_state = 647, .external_lex_state = 1}, [1965] = {.lex_state = 645, .external_lex_state = 1}, - [1966] = {.lex_state = 0}, - [1967] = {.lex_state = 624, .external_lex_state = 1}, - [1968] = {.lex_state = 576, .external_lex_state = 1}, - [1969] = {.lex_state = 576, .external_lex_state = 1}, - [1970] = {.lex_state = 645, .external_lex_state = 1}, - [1971] = {.lex_state = 420}, - [1972] = {.lex_state = 0}, - [1973] = {.lex_state = 420}, - [1974] = {.lex_state = 420}, - [1975] = {.lex_state = 645, .external_lex_state = 1}, - [1976] = {.lex_state = 576, .external_lex_state = 1}, - [1977] = {.lex_state = 424}, - [1978] = {.lex_state = 424}, + [1966] = {.lex_state = 473}, + [1967] = {.lex_state = 0}, + [1968] = {.lex_state = 645, .external_lex_state = 1}, + [1969] = {.lex_state = 645, .external_lex_state = 1}, + [1970] = {.lex_state = 0}, + [1971] = {.lex_state = 624, .external_lex_state = 1}, + [1972] = {.lex_state = 576, .external_lex_state = 1}, + [1973] = {.lex_state = 576, .external_lex_state = 1}, + [1974] = {.lex_state = 645, .external_lex_state = 1}, + [1975] = {.lex_state = 420}, + [1976] = {.lex_state = 0}, + [1977] = {.lex_state = 420}, + [1978] = {.lex_state = 420}, [1979] = {.lex_state = 645, .external_lex_state = 1}, [1980] = {.lex_state = 576, .external_lex_state = 1}, - [1981] = {.lex_state = 576, .external_lex_state = 1}, - [1982] = {.lex_state = 576, .external_lex_state = 1}, - [1983] = {.lex_state = 424}, - [1984] = {.lex_state = 424}, + [1981] = {.lex_state = 424}, + [1982] = {.lex_state = 424}, + [1983] = {.lex_state = 645, .external_lex_state = 1}, + [1984] = {.lex_state = 576, .external_lex_state = 1}, [1985] = {.lex_state = 576, .external_lex_state = 1}, [1986] = {.lex_state = 576, .external_lex_state = 1}, - [1987] = {.lex_state = 576, .external_lex_state = 1}, + [1987] = {.lex_state = 424}, [1988] = {.lex_state = 424}, - [1989] = {.lex_state = 424}, + [1989] = {.lex_state = 576, .external_lex_state = 1}, [1990] = {.lex_state = 576, .external_lex_state = 1}, [1991] = {.lex_state = 576, .external_lex_state = 1}, - [1992] = {.lex_state = 0}, - [1993] = {.lex_state = 420}, - [1994] = {.lex_state = 612, .external_lex_state = 1}, - [1995] = {.lex_state = 473}, - [1996] = {.lex_state = 617}, - [1997] = {.lex_state = 595, .external_lex_state = 1}, - [1998] = {.lex_state = 614, .external_lex_state = 1}, + [1992] = {.lex_state = 424}, + [1993] = {.lex_state = 424}, + [1994] = {.lex_state = 576, .external_lex_state = 1}, + [1995] = {.lex_state = 576, .external_lex_state = 1}, + [1996] = {.lex_state = 0}, + [1997] = {.lex_state = 420}, + [1998] = {.lex_state = 612, .external_lex_state = 1}, [1999] = {.lex_state = 473}, - [2000] = {.lex_state = 624, .external_lex_state = 1}, + [2000] = {.lex_state = 617}, [2001] = {.lex_state = 595, .external_lex_state = 1}, - [2002] = {.lex_state = 595, .external_lex_state = 1}, - [2003] = {.lex_state = 595, .external_lex_state = 1}, - [2004] = {.lex_state = 595, .external_lex_state = 1}, + [2002] = {.lex_state = 614, .external_lex_state = 1}, + [2003] = {.lex_state = 473}, + [2004] = {.lex_state = 624, .external_lex_state = 1}, [2005] = {.lex_state = 595, .external_lex_state = 1}, [2006] = {.lex_state = 595, .external_lex_state = 1}, [2007] = {.lex_state = 595, .external_lex_state = 1}, @@ -13842,1034 +13842,1034 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2010] = {.lex_state = 595, .external_lex_state = 1}, [2011] = {.lex_state = 595, .external_lex_state = 1}, [2012] = {.lex_state = 595, .external_lex_state = 1}, - [2013] = {.lex_state = 624, .external_lex_state = 1}, - [2014] = {.lex_state = 605, .external_lex_state = 1}, - [2015] = {.lex_state = 420}, - [2016] = {.lex_state = 617}, - [2017] = {.lex_state = 614, .external_lex_state = 1}, - [2018] = {.lex_state = 501}, - [2019] = {.lex_state = 650, .external_lex_state = 1}, - [2020] = {.lex_state = 501}, - [2021] = {.lex_state = 501}, - [2022] = {.lex_state = 576, .external_lex_state = 1}, + [2013] = {.lex_state = 595, .external_lex_state = 1}, + [2014] = {.lex_state = 595, .external_lex_state = 1}, + [2015] = {.lex_state = 595, .external_lex_state = 1}, + [2016] = {.lex_state = 595, .external_lex_state = 1}, + [2017] = {.lex_state = 473}, + [2018] = {.lex_state = 624, .external_lex_state = 1}, + [2019] = {.lex_state = 605, .external_lex_state = 1}, + [2020] = {.lex_state = 420}, + [2021] = {.lex_state = 617}, + [2022] = {.lex_state = 614, .external_lex_state = 1}, [2023] = {.lex_state = 501}, - [2024] = {.lex_state = 501}, + [2024] = {.lex_state = 650, .external_lex_state = 1}, [2025] = {.lex_state = 501}, [2026] = {.lex_state = 501}, - [2027] = {.lex_state = 501}, + [2027] = {.lex_state = 576, .external_lex_state = 1}, [2028] = {.lex_state = 501}, [2029] = {.lex_state = 501}, [2030] = {.lex_state = 501}, [2031] = {.lex_state = 501}, [2032] = {.lex_state = 501}, - [2033] = {.lex_state = 424}, - [2034] = {.lex_state = 637}, - [2035] = {.lex_state = 637}, - [2036] = {.lex_state = 424}, - [2037] = {.lex_state = 624, .external_lex_state = 1}, - [2038] = {.lex_state = 501}, - [2039] = {.lex_state = 473}, - [2040] = {.lex_state = 473}, - [2041] = {.lex_state = 646, .external_lex_state = 1}, - [2042] = {.lex_state = 443}, - [2043] = {.lex_state = 637}, - [2044] = {.lex_state = 501}, - [2045] = {.lex_state = 424}, + [2033] = {.lex_state = 501}, + [2034] = {.lex_state = 501}, + [2035] = {.lex_state = 501}, + [2036] = {.lex_state = 501}, + [2037] = {.lex_state = 501}, + [2038] = {.lex_state = 424}, + [2039] = {.lex_state = 637}, + [2040] = {.lex_state = 637}, + [2041] = {.lex_state = 424}, + [2042] = {.lex_state = 624, .external_lex_state = 1}, + [2043] = {.lex_state = 501}, + [2044] = {.lex_state = 473}, + [2045] = {.lex_state = 595, .external_lex_state = 1}, [2046] = {.lex_state = 473}, - [2047] = {.lex_state = 0}, - [2048] = {.lex_state = 653, .external_lex_state = 1}, - [2049] = {.lex_state = 473}, - [2050] = {.lex_state = 476}, - [2051] = {.lex_state = 501}, - [2052] = {.lex_state = 501}, - [2053] = {.lex_state = 501}, - [2054] = {.lex_state = 595, .external_lex_state = 1}, - [2055] = {.lex_state = 655, .external_lex_state = 1}, - [2056] = {.lex_state = 473}, - [2057] = {.lex_state = 424}, - [2058] = {.lex_state = 424}, - [2059] = {.lex_state = 476}, - [2060] = {.lex_state = 0}, - [2061] = {.lex_state = 476}, - [2062] = {.lex_state = 653, .external_lex_state = 1}, - [2063] = {.lex_state = 595, .external_lex_state = 1}, - [2064] = {.lex_state = 656, .external_lex_state = 1}, - [2065] = {.lex_state = 650, .external_lex_state = 1}, - [2066] = {.lex_state = 473}, - [2067] = {.lex_state = 576, .external_lex_state = 1}, - [2068] = {.lex_state = 473}, - [2069] = {.lex_state = 0}, - [2070] = {.lex_state = 576, .external_lex_state = 1}, - [2071] = {.lex_state = 473}, - [2072] = {.lex_state = 0}, + [2047] = {.lex_state = 646, .external_lex_state = 1}, + [2048] = {.lex_state = 443}, + [2049] = {.lex_state = 637}, + [2050] = {.lex_state = 501}, + [2051] = {.lex_state = 424}, + [2052] = {.lex_state = 473}, + [2053] = {.lex_state = 0}, + [2054] = {.lex_state = 653, .external_lex_state = 1}, + [2055] = {.lex_state = 473}, + [2056] = {.lex_state = 476}, + [2057] = {.lex_state = 501}, + [2058] = {.lex_state = 501}, + [2059] = {.lex_state = 501}, + [2060] = {.lex_state = 595, .external_lex_state = 1}, + [2061] = {.lex_state = 655, .external_lex_state = 1}, + [2062] = {.lex_state = 473}, + [2063] = {.lex_state = 424}, + [2064] = {.lex_state = 424}, + [2065] = {.lex_state = 476}, + [2066] = {.lex_state = 0}, + [2067] = {.lex_state = 476}, + [2068] = {.lex_state = 653, .external_lex_state = 1}, + [2069] = {.lex_state = 595, .external_lex_state = 1}, + [2070] = {.lex_state = 656, .external_lex_state = 1}, + [2071] = {.lex_state = 650, .external_lex_state = 1}, + [2072] = {.lex_state = 473}, [2073] = {.lex_state = 576, .external_lex_state = 1}, - [2074] = {.lex_state = 595, .external_lex_state = 1}, - [2075] = {.lex_state = 501}, - [2076] = {.lex_state = 501}, - [2077] = {.lex_state = 501}, - [2078] = {.lex_state = 501}, - [2079] = {.lex_state = 485}, - [2080] = {.lex_state = 485}, - [2081] = {.lex_state = 485}, - [2082] = {.lex_state = 485}, - [2083] = {.lex_state = 485}, - [2084] = {.lex_state = 584}, - [2085] = {.lex_state = 581}, - [2086] = {.lex_state = 584}, - [2087] = {.lex_state = 581}, - [2088] = {.lex_state = 424}, - [2089] = {.lex_state = 581}, - [2090] = {.lex_state = 424}, + [2074] = {.lex_state = 473}, + [2075] = {.lex_state = 0}, + [2076] = {.lex_state = 576, .external_lex_state = 1}, + [2077] = {.lex_state = 473}, + [2078] = {.lex_state = 0}, + [2079] = {.lex_state = 576, .external_lex_state = 1}, + [2080] = {.lex_state = 595, .external_lex_state = 1}, + [2081] = {.lex_state = 501}, + [2082] = {.lex_state = 501}, + [2083] = {.lex_state = 501}, + [2084] = {.lex_state = 501}, + [2085] = {.lex_state = 485}, + [2086] = {.lex_state = 485}, + [2087] = {.lex_state = 485}, + [2088] = {.lex_state = 485}, + [2089] = {.lex_state = 485}, + [2090] = {.lex_state = 584}, [2091] = {.lex_state = 581}, - [2092] = {.lex_state = 424}, + [2092] = {.lex_state = 584}, [2093] = {.lex_state = 581}, - [2094] = {.lex_state = 581}, - [2095] = {.lex_state = 0}, - [2096] = {.lex_state = 581}, + [2094] = {.lex_state = 424}, + [2095] = {.lex_state = 581}, + [2096] = {.lex_state = 424}, [2097] = {.lex_state = 581}, - [2098] = {.lex_state = 0}, + [2098] = {.lex_state = 424}, [2099] = {.lex_state = 581}, [2100] = {.lex_state = 581}, - [2101] = {.lex_state = 581}, - [2102] = {.lex_state = 473}, - [2103] = {.lex_state = 0}, - [2104] = {.lex_state = 581}, - [2105] = {.lex_state = 473}, - [2106] = {.lex_state = 0}, + [2101] = {.lex_state = 0}, + [2102] = {.lex_state = 581}, + [2103] = {.lex_state = 581}, + [2104] = {.lex_state = 0}, + [2105] = {.lex_state = 581}, + [2106] = {.lex_state = 581}, [2107] = {.lex_state = 581}, - [2108] = {.lex_state = 581}, - [2109] = {.lex_state = 581}, - [2110] = {.lex_state = 485}, - [2111] = {.lex_state = 485}, - [2112] = {.lex_state = 485}, - [2113] = {.lex_state = 485}, - [2114] = {.lex_state = 420}, - [2115] = {.lex_state = 420}, - [2116] = {.lex_state = 501}, - [2117] = {.lex_state = 501}, - [2118] = {.lex_state = 501}, - [2119] = {.lex_state = 501}, - [2120] = {.lex_state = 638}, - [2121] = {.lex_state = 424}, - [2122] = {.lex_state = 424}, - [2123] = {.lex_state = 638}, - [2124] = {.lex_state = 586}, - [2125] = {.lex_state = 586}, - [2126] = {.lex_state = 586}, - [2127] = {.lex_state = 586}, - [2128] = {.lex_state = 586}, - [2129] = {.lex_state = 586}, + [2108] = {.lex_state = 473}, + [2109] = {.lex_state = 0}, + [2110] = {.lex_state = 581}, + [2111] = {.lex_state = 473}, + [2112] = {.lex_state = 0}, + [2113] = {.lex_state = 581}, + [2114] = {.lex_state = 581}, + [2115] = {.lex_state = 581}, + [2116] = {.lex_state = 485}, + [2117] = {.lex_state = 485}, + [2118] = {.lex_state = 485}, + [2119] = {.lex_state = 485}, + [2120] = {.lex_state = 420}, + [2121] = {.lex_state = 420}, + [2122] = {.lex_state = 501}, + [2123] = {.lex_state = 501}, + [2124] = {.lex_state = 501}, + [2125] = {.lex_state = 501}, + [2126] = {.lex_state = 638}, + [2127] = {.lex_state = 424}, + [2128] = {.lex_state = 424}, + [2129] = {.lex_state = 638}, [2130] = {.lex_state = 586}, [2131] = {.lex_state = 586}, [2132] = {.lex_state = 586}, [2133] = {.lex_state = 586}, - [2134] = {.lex_state = 501}, - [2135] = {.lex_state = 476}, - [2136] = {.lex_state = 476}, - [2137] = {.lex_state = 501}, - [2138] = {.lex_state = 476}, - [2139] = {.lex_state = 473}, - [2140] = {.lex_state = 586}, - [2141] = {.lex_state = 468}, - [2142] = {.lex_state = 608}, - [2143] = {.lex_state = 608}, - [2144] = {.lex_state = 501}, + [2134] = {.lex_state = 586}, + [2135] = {.lex_state = 586}, + [2136] = {.lex_state = 586}, + [2137] = {.lex_state = 586}, + [2138] = {.lex_state = 586}, + [2139] = {.lex_state = 586}, + [2140] = {.lex_state = 501}, + [2141] = {.lex_state = 476}, + [2142] = {.lex_state = 476}, + [2143] = {.lex_state = 501}, + [2144] = {.lex_state = 476}, [2145] = {.lex_state = 473}, - [2146] = {.lex_state = 501}, - [2147] = {.lex_state = 420}, + [2146] = {.lex_state = 586}, + [2147] = {.lex_state = 468}, [2148] = {.lex_state = 608}, [2149] = {.lex_state = 608}, [2150] = {.lex_state = 501}, - [2151] = {.lex_state = 501}, - [2152] = {.lex_state = 608}, - [2153] = {.lex_state = 657, .external_lex_state = 1}, - [2154] = {.lex_state = 650, .external_lex_state = 1}, - [2155] = {.lex_state = 473}, - [2156] = {.lex_state = 595, .external_lex_state = 1}, + [2151] = {.lex_state = 473}, + [2152] = {.lex_state = 501}, + [2153] = {.lex_state = 420}, + [2154] = {.lex_state = 608}, + [2155] = {.lex_state = 608}, + [2156] = {.lex_state = 501}, [2157] = {.lex_state = 501}, - [2158] = {.lex_state = 420}, - [2159] = {.lex_state = 501}, - [2160] = {.lex_state = 608}, + [2158] = {.lex_state = 608}, + [2159] = {.lex_state = 657, .external_lex_state = 1}, + [2160] = {.lex_state = 650, .external_lex_state = 1}, [2161] = {.lex_state = 473}, - [2162] = {.lex_state = 608}, - [2163] = {.lex_state = 420}, - [2164] = {.lex_state = 476}, - [2165] = {.lex_state = 420}, - [2166] = {.lex_state = 420}, - [2167] = {.lex_state = 420}, - [2168] = {.lex_state = 649, .external_lex_state = 1}, - [2169] = {.lex_state = 395}, - [2170] = {.lex_state = 420}, - [2171] = {.lex_state = 612, .external_lex_state = 1}, - [2172] = {.lex_state = 473}, - [2173] = {.lex_state = 617}, - [2174] = {.lex_state = 595, .external_lex_state = 1}, - [2175] = {.lex_state = 614, .external_lex_state = 1}, - [2176] = {.lex_state = 473}, - [2177] = {.lex_state = 595, .external_lex_state = 1}, - [2178] = {.lex_state = 595, .external_lex_state = 1}, - [2179] = {.lex_state = 595, .external_lex_state = 1}, + [2162] = {.lex_state = 595, .external_lex_state = 1}, + [2163] = {.lex_state = 501}, + [2164] = {.lex_state = 420}, + [2165] = {.lex_state = 501}, + [2166] = {.lex_state = 608}, + [2167] = {.lex_state = 473}, + [2168] = {.lex_state = 608}, + [2169] = {.lex_state = 420}, + [2170] = {.lex_state = 476}, + [2171] = {.lex_state = 420}, + [2172] = {.lex_state = 420}, + [2173] = {.lex_state = 420}, + [2174] = {.lex_state = 649, .external_lex_state = 1}, + [2175] = {.lex_state = 395}, + [2176] = {.lex_state = 420}, + [2177] = {.lex_state = 612, .external_lex_state = 1}, + [2178] = {.lex_state = 473}, + [2179] = {.lex_state = 617}, [2180] = {.lex_state = 595, .external_lex_state = 1}, - [2181] = {.lex_state = 595, .external_lex_state = 1}, - [2182] = {.lex_state = 595, .external_lex_state = 1}, + [2181] = {.lex_state = 614, .external_lex_state = 1}, + [2182] = {.lex_state = 473}, [2183] = {.lex_state = 595, .external_lex_state = 1}, [2184] = {.lex_state = 595, .external_lex_state = 1}, [2185] = {.lex_state = 595, .external_lex_state = 1}, [2186] = {.lex_state = 595, .external_lex_state = 1}, [2187] = {.lex_state = 595, .external_lex_state = 1}, [2188] = {.lex_state = 595, .external_lex_state = 1}, - [2189] = {.lex_state = 468}, - [2190] = {.lex_state = 608}, - [2191] = {.lex_state = 608}, - [2192] = {.lex_state = 608}, - [2193] = {.lex_state = 501}, - [2194] = {.lex_state = 501}, - [2195] = {.lex_state = 501}, - [2196] = {.lex_state = 501}, - [2197] = {.lex_state = 501}, - [2198] = {.lex_state = 395}, + [2189] = {.lex_state = 595, .external_lex_state = 1}, + [2190] = {.lex_state = 595, .external_lex_state = 1}, + [2191] = {.lex_state = 595, .external_lex_state = 1}, + [2192] = {.lex_state = 595, .external_lex_state = 1}, + [2193] = {.lex_state = 595, .external_lex_state = 1}, + [2194] = {.lex_state = 595, .external_lex_state = 1}, + [2195] = {.lex_state = 468}, + [2196] = {.lex_state = 608}, + [2197] = {.lex_state = 608}, + [2198] = {.lex_state = 608}, [2199] = {.lex_state = 501}, - [2200] = {.lex_state = 658, .external_lex_state = 1}, - [2201] = {.lex_state = 650, .external_lex_state = 1}, - [2202] = {.lex_state = 473}, - [2203] = {.lex_state = 595, .external_lex_state = 1}, - [2204] = {.lex_state = 501}, - [2205] = {.lex_state = 659, .external_lex_state = 1}, - [2206] = {.lex_state = 420}, - [2207] = {.lex_state = 501}, - [2208] = {.lex_state = 501}, - [2209] = {.lex_state = 501}, + [2200] = {.lex_state = 501}, + [2201] = {.lex_state = 501}, + [2202] = {.lex_state = 501}, + [2203] = {.lex_state = 501}, + [2204] = {.lex_state = 395}, + [2205] = {.lex_state = 501}, + [2206] = {.lex_state = 658, .external_lex_state = 1}, + [2207] = {.lex_state = 650, .external_lex_state = 1}, + [2208] = {.lex_state = 473}, + [2209] = {.lex_state = 595, .external_lex_state = 1}, [2210] = {.lex_state = 501}, - [2211] = {.lex_state = 660, .external_lex_state = 1}, - [2212] = {.lex_state = 650, .external_lex_state = 1}, - [2213] = {.lex_state = 473}, - [2214] = {.lex_state = 595, .external_lex_state = 1}, - [2215] = {.lex_state = 661, .external_lex_state = 1}, - [2216] = {.lex_state = 650, .external_lex_state = 1}, - [2217] = {.lex_state = 473}, - [2218] = {.lex_state = 595, .external_lex_state = 1}, - [2219] = {.lex_state = 468}, - [2220] = {.lex_state = 608}, - [2221] = {.lex_state = 608}, - [2222] = {.lex_state = 501}, - [2223] = {.lex_state = 420}, - [2224] = {.lex_state = 420}, - [2225] = {.lex_state = 420}, - [2226] = {.lex_state = 476}, - [2227] = {.lex_state = 639, .external_lex_state = 1}, - [2228] = {.lex_state = 650, .external_lex_state = 1}, - [2229] = {.lex_state = 473}, - [2230] = {.lex_state = 595, .external_lex_state = 1}, - [2231] = {.lex_state = 619, .external_lex_state = 1}, - [2232] = {.lex_state = 420}, - [2233] = {.lex_state = 615, .external_lex_state = 1}, - [2234] = {.lex_state = 0}, - [2235] = {.lex_state = 501}, - [2236] = {.lex_state = 501}, - [2237] = {.lex_state = 473}, - [2238] = {.lex_state = 473}, - [2239] = {.lex_state = 501}, - [2240] = {.lex_state = 468}, - [2241] = {.lex_state = 395}, - [2242] = {.lex_state = 476}, - [2243] = {.lex_state = 501}, - [2244] = {.lex_state = 395}, - [2245] = {.lex_state = 476}, - [2246] = {.lex_state = 476}, - [2247] = {.lex_state = 476}, - [2248] = {.lex_state = 395}, - [2249] = {.lex_state = 395}, - [2250] = {.lex_state = 0}, + [2211] = {.lex_state = 659, .external_lex_state = 1}, + [2212] = {.lex_state = 420}, + [2213] = {.lex_state = 501}, + [2214] = {.lex_state = 501}, + [2215] = {.lex_state = 501}, + [2216] = {.lex_state = 501}, + [2217] = {.lex_state = 660, .external_lex_state = 1}, + [2218] = {.lex_state = 650, .external_lex_state = 1}, + [2219] = {.lex_state = 473}, + [2220] = {.lex_state = 595, .external_lex_state = 1}, + [2221] = {.lex_state = 661, .external_lex_state = 1}, + [2222] = {.lex_state = 650, .external_lex_state = 1}, + [2223] = {.lex_state = 473}, + [2224] = {.lex_state = 595, .external_lex_state = 1}, + [2225] = {.lex_state = 468}, + [2226] = {.lex_state = 608}, + [2227] = {.lex_state = 608}, + [2228] = {.lex_state = 501}, + [2229] = {.lex_state = 420}, + [2230] = {.lex_state = 420}, + [2231] = {.lex_state = 420}, + [2232] = {.lex_state = 476}, + [2233] = {.lex_state = 639, .external_lex_state = 1}, + [2234] = {.lex_state = 650, .external_lex_state = 1}, + [2235] = {.lex_state = 473}, + [2236] = {.lex_state = 595, .external_lex_state = 1}, + [2237] = {.lex_state = 619, .external_lex_state = 1}, + [2238] = {.lex_state = 420}, + [2239] = {.lex_state = 615, .external_lex_state = 1}, + [2240] = {.lex_state = 0}, + [2241] = {.lex_state = 501}, + [2242] = {.lex_state = 501}, + [2243] = {.lex_state = 473}, + [2244] = {.lex_state = 473}, + [2245] = {.lex_state = 501}, + [2246] = {.lex_state = 468}, + [2247] = {.lex_state = 395}, + [2248] = {.lex_state = 476}, + [2249] = {.lex_state = 501}, + [2250] = {.lex_state = 395}, [2251] = {.lex_state = 476}, - [2252] = {.lex_state = 651}, - [2253] = {.lex_state = 641, .external_lex_state = 1}, - [2254] = {.lex_state = 608}, - [2255] = {.lex_state = 420}, - [2256] = {.lex_state = 395}, - [2257] = {.lex_state = 608}, - [2258] = {.lex_state = 608}, - [2259] = {.lex_state = 608}, - [2260] = {.lex_state = 643}, + [2252] = {.lex_state = 476}, + [2253] = {.lex_state = 476}, + [2254] = {.lex_state = 395}, + [2255] = {.lex_state = 395}, + [2256] = {.lex_state = 0}, + [2257] = {.lex_state = 476}, + [2258] = {.lex_state = 651}, + [2259] = {.lex_state = 641, .external_lex_state = 1}, + [2260] = {.lex_state = 608}, [2261] = {.lex_state = 420}, - [2262] = {.lex_state = 608}, - [2263] = {.lex_state = 501}, - [2264] = {.lex_state = 501}, - [2265] = {.lex_state = 576, .external_lex_state = 1}, - [2266] = {.lex_state = 576, .external_lex_state = 1}, - [2267] = {.lex_state = 431}, - [2268] = {.lex_state = 645, .external_lex_state = 1}, - [2269] = {.lex_state = 579}, - [2270] = {.lex_state = 645, .external_lex_state = 1}, - [2271] = {.lex_state = 424}, - [2272] = {.lex_state = 424}, - [2273] = {.lex_state = 645, .external_lex_state = 1}, + [2262] = {.lex_state = 395}, + [2263] = {.lex_state = 608}, + [2264] = {.lex_state = 608}, + [2265] = {.lex_state = 608}, + [2266] = {.lex_state = 643}, + [2267] = {.lex_state = 420}, + [2268] = {.lex_state = 608}, + [2269] = {.lex_state = 501}, + [2270] = {.lex_state = 501}, + [2271] = {.lex_state = 576, .external_lex_state = 1}, + [2272] = {.lex_state = 576, .external_lex_state = 1}, + [2273] = {.lex_state = 431}, [2274] = {.lex_state = 645, .external_lex_state = 1}, - [2275] = {.lex_state = 424}, - [2276] = {.lex_state = 424}, - [2277] = {.lex_state = 645, .external_lex_state = 1}, - [2278] = {.lex_state = 645, .external_lex_state = 1}, - [2279] = {.lex_state = 424}, - [2280] = {.lex_state = 424}, - [2281] = {.lex_state = 645, .external_lex_state = 1}, - [2282] = {.lex_state = 652, .external_lex_state = 1}, - [2283] = {.lex_state = 440}, + [2275] = {.lex_state = 579}, + [2276] = {.lex_state = 645, .external_lex_state = 1}, + [2277] = {.lex_state = 424}, + [2278] = {.lex_state = 424}, + [2279] = {.lex_state = 645, .external_lex_state = 1}, + [2280] = {.lex_state = 645, .external_lex_state = 1}, + [2281] = {.lex_state = 424}, + [2282] = {.lex_state = 424}, + [2283] = {.lex_state = 645, .external_lex_state = 1}, [2284] = {.lex_state = 645, .external_lex_state = 1}, - [2285] = {.lex_state = 645, .external_lex_state = 1}, - [2286] = {.lex_state = 645, .external_lex_state = 1}, - [2287] = {.lex_state = 431}, + [2285] = {.lex_state = 424}, + [2286] = {.lex_state = 424}, + [2287] = {.lex_state = 645, .external_lex_state = 1}, [2288] = {.lex_state = 652, .external_lex_state = 1}, - [2289] = {.lex_state = 420}, - [2290] = {.lex_state = 443}, - [2291] = {.lex_state = 652, .external_lex_state = 1}, - [2292] = {.lex_state = 576, .external_lex_state = 1}, - [2293] = {.lex_state = 595, .external_lex_state = 1}, - [2294] = {.lex_state = 595, .external_lex_state = 1}, - [2295] = {.lex_state = 501}, - [2296] = {.lex_state = 646, .external_lex_state = 1}, - [2297] = {.lex_state = 595, .external_lex_state = 1}, - [2298] = {.lex_state = 501}, - [2299] = {.lex_state = 647, .external_lex_state = 1}, - [2300] = {.lex_state = 652, .external_lex_state = 1}, - [2301] = {.lex_state = 473}, - [2302] = {.lex_state = 0}, - [2303] = {.lex_state = 652, .external_lex_state = 1}, - [2304] = {.lex_state = 652, .external_lex_state = 1}, - [2305] = {.lex_state = 0}, - [2306] = {.lex_state = 624, .external_lex_state = 1}, + [2289] = {.lex_state = 440}, + [2290] = {.lex_state = 645, .external_lex_state = 1}, + [2291] = {.lex_state = 645, .external_lex_state = 1}, + [2292] = {.lex_state = 645, .external_lex_state = 1}, + [2293] = {.lex_state = 431}, + [2294] = {.lex_state = 652, .external_lex_state = 1}, + [2295] = {.lex_state = 420}, + [2296] = {.lex_state = 443}, + [2297] = {.lex_state = 652, .external_lex_state = 1}, + [2298] = {.lex_state = 576, .external_lex_state = 1}, + [2299] = {.lex_state = 595, .external_lex_state = 1}, + [2300] = {.lex_state = 0}, + [2301] = {.lex_state = 595, .external_lex_state = 1}, + [2302] = {.lex_state = 501}, + [2303] = {.lex_state = 646, .external_lex_state = 1}, + [2304] = {.lex_state = 595, .external_lex_state = 1}, + [2305] = {.lex_state = 501}, + [2306] = {.lex_state = 647, .external_lex_state = 1}, [2307] = {.lex_state = 652, .external_lex_state = 1}, - [2308] = {.lex_state = 420}, + [2308] = {.lex_state = 473}, [2309] = {.lex_state = 0}, - [2310] = {.lex_state = 420}, - [2311] = {.lex_state = 420}, - [2312] = {.lex_state = 652, .external_lex_state = 1}, - [2313] = {.lex_state = 652, .external_lex_state = 1}, - [2314] = {.lex_state = 424}, - [2315] = {.lex_state = 424}, - [2316] = {.lex_state = 645, .external_lex_state = 1}, - [2317] = {.lex_state = 584}, - [2318] = {.lex_state = 0}, - [2319] = {.lex_state = 420}, - [2320] = {.lex_state = 645, .external_lex_state = 1}, - [2321] = {.lex_state = 473}, - [2322] = {.lex_state = 473}, - [2323] = {.lex_state = 646, .external_lex_state = 1}, - [2324] = {.lex_state = 637}, - [2325] = {.lex_state = 645, .external_lex_state = 1}, - [2326] = {.lex_state = 424}, - [2327] = {.lex_state = 473}, - [2328] = {.lex_state = 0}, - [2329] = {.lex_state = 653, .external_lex_state = 1}, + [2310] = {.lex_state = 652, .external_lex_state = 1}, + [2311] = {.lex_state = 652, .external_lex_state = 1}, + [2312] = {.lex_state = 0}, + [2313] = {.lex_state = 624, .external_lex_state = 1}, + [2314] = {.lex_state = 652, .external_lex_state = 1}, + [2315] = {.lex_state = 420}, + [2316] = {.lex_state = 0}, + [2317] = {.lex_state = 420}, + [2318] = {.lex_state = 420}, + [2319] = {.lex_state = 652, .external_lex_state = 1}, + [2320] = {.lex_state = 652, .external_lex_state = 1}, + [2321] = {.lex_state = 424}, + [2322] = {.lex_state = 424}, + [2323] = {.lex_state = 645, .external_lex_state = 1}, + [2324] = {.lex_state = 584}, + [2325] = {.lex_state = 0}, + [2326] = {.lex_state = 420}, + [2327] = {.lex_state = 645, .external_lex_state = 1}, + [2328] = {.lex_state = 473}, + [2329] = {.lex_state = 595, .external_lex_state = 1}, [2330] = {.lex_state = 473}, - [2331] = {.lex_state = 476}, - [2332] = {.lex_state = 645, .external_lex_state = 1}, + [2331] = {.lex_state = 646, .external_lex_state = 1}, + [2332] = {.lex_state = 637}, [2333] = {.lex_state = 645, .external_lex_state = 1}, - [2334] = {.lex_state = 473}, - [2335] = {.lex_state = 645, .external_lex_state = 1}, - [2336] = {.lex_state = 645, .external_lex_state = 1}, - [2337] = {.lex_state = 0}, - [2338] = {.lex_state = 605, .external_lex_state = 1}, - [2339] = {.lex_state = 0}, - [2340] = {.lex_state = 605, .external_lex_state = 1}, - [2341] = {.lex_state = 0}, - [2342] = {.lex_state = 576, .external_lex_state = 1}, - [2343] = {.lex_state = 576, .external_lex_state = 1}, - [2344] = {.lex_state = 576, .external_lex_state = 1}, - [2345] = {.lex_state = 576, .external_lex_state = 1}, - [2346] = {.lex_state = 576, .external_lex_state = 1}, - [2347] = {.lex_state = 576, .external_lex_state = 1}, - [2348] = {.lex_state = 576, .external_lex_state = 1}, - [2349] = {.lex_state = 605, .external_lex_state = 1}, - [2350] = {.lex_state = 420}, - [2351] = {.lex_state = 617}, - [2352] = {.lex_state = 614, .external_lex_state = 1}, - [2353] = {.lex_state = 473}, - [2354] = {.lex_state = 650, .external_lex_state = 1}, - [2355] = {.lex_state = 662, .external_lex_state = 1}, + [2334] = {.lex_state = 424}, + [2335] = {.lex_state = 473}, + [2336] = {.lex_state = 0}, + [2337] = {.lex_state = 653, .external_lex_state = 1}, + [2338] = {.lex_state = 473}, + [2339] = {.lex_state = 476}, + [2340] = {.lex_state = 645, .external_lex_state = 1}, + [2341] = {.lex_state = 645, .external_lex_state = 1}, + [2342] = {.lex_state = 473}, + [2343] = {.lex_state = 645, .external_lex_state = 1}, + [2344] = {.lex_state = 645, .external_lex_state = 1}, + [2345] = {.lex_state = 0}, + [2346] = {.lex_state = 605, .external_lex_state = 1}, + [2347] = {.lex_state = 0}, + [2348] = {.lex_state = 605, .external_lex_state = 1}, + [2349] = {.lex_state = 0}, + [2350] = {.lex_state = 576, .external_lex_state = 1}, + [2351] = {.lex_state = 576, .external_lex_state = 1}, + [2352] = {.lex_state = 576, .external_lex_state = 1}, + [2353] = {.lex_state = 576, .external_lex_state = 1}, + [2354] = {.lex_state = 576, .external_lex_state = 1}, + [2355] = {.lex_state = 576, .external_lex_state = 1}, [2356] = {.lex_state = 576, .external_lex_state = 1}, - [2357] = {.lex_state = 0}, - [2358] = {.lex_state = 0}, - [2359] = {.lex_state = 595, .external_lex_state = 1}, - [2360] = {.lex_state = 476}, - [2361] = {.lex_state = 0}, - [2362] = {.lex_state = 624, .external_lex_state = 1}, - [2363] = {.lex_state = 0}, - [2364] = {.lex_state = 636, .external_lex_state = 1}, + [2357] = {.lex_state = 605, .external_lex_state = 1}, + [2358] = {.lex_state = 420}, + [2359] = {.lex_state = 617}, + [2360] = {.lex_state = 614, .external_lex_state = 1}, + [2361] = {.lex_state = 473}, + [2362] = {.lex_state = 650, .external_lex_state = 1}, + [2363] = {.lex_state = 662, .external_lex_state = 1}, + [2364] = {.lex_state = 576, .external_lex_state = 1}, [2365] = {.lex_state = 0}, [2366] = {.lex_state = 0}, - [2367] = {.lex_state = 420}, - [2368] = {.lex_state = 473}, - [2369] = {.lex_state = 662, .external_lex_state = 1}, - [2370] = {.lex_state = 473}, + [2367] = {.lex_state = 595, .external_lex_state = 1}, + [2368] = {.lex_state = 476}, + [2369] = {.lex_state = 0}, + [2370] = {.lex_state = 624, .external_lex_state = 1}, [2371] = {.lex_state = 0}, - [2372] = {.lex_state = 473}, - [2373] = {.lex_state = 501}, - [2374] = {.lex_state = 473}, - [2375] = {.lex_state = 473}, + [2372] = {.lex_state = 636, .external_lex_state = 1}, + [2373] = {.lex_state = 0}, + [2374] = {.lex_state = 0}, + [2375] = {.lex_state = 420}, [2376] = {.lex_state = 473}, - [2377] = {.lex_state = 473}, + [2377] = {.lex_state = 662, .external_lex_state = 1}, [2378] = {.lex_state = 473}, - [2379] = {.lex_state = 473}, + [2379] = {.lex_state = 0}, [2380] = {.lex_state = 473}, - [2381] = {.lex_state = 473}, + [2381] = {.lex_state = 501}, [2382] = {.lex_state = 473}, - [2383] = {.lex_state = 576, .external_lex_state = 1}, - [2384] = {.lex_state = 501}, - [2385] = {.lex_state = 663, .external_lex_state = 1}, - [2386] = {.lex_state = 650, .external_lex_state = 1}, - [2387] = {.lex_state = 501}, - [2388] = {.lex_state = 595, .external_lex_state = 1}, - [2389] = {.lex_state = 637}, - [2390] = {.lex_state = 637}, - [2391] = {.lex_state = 576, .external_lex_state = 1}, - [2392] = {.lex_state = 624, .external_lex_state = 1}, - [2393] = {.lex_state = 624, .external_lex_state = 1}, - [2394] = {.lex_state = 501}, - [2395] = {.lex_state = 420}, - [2396] = {.lex_state = 443}, - [2397] = {.lex_state = 420}, - [2398] = {.lex_state = 0}, - [2399] = {.lex_state = 624, .external_lex_state = 1}, - [2400] = {.lex_state = 595, .external_lex_state = 1}, - [2401] = {.lex_state = 655, .external_lex_state = 1}, + [2383] = {.lex_state = 473}, + [2384] = {.lex_state = 473}, + [2385] = {.lex_state = 473}, + [2386] = {.lex_state = 473}, + [2387] = {.lex_state = 473}, + [2388] = {.lex_state = 473}, + [2389] = {.lex_state = 473}, + [2390] = {.lex_state = 473}, + [2391] = {.lex_state = 624, .external_lex_state = 1}, + [2392] = {.lex_state = 576, .external_lex_state = 1}, + [2393] = {.lex_state = 501}, + [2394] = {.lex_state = 663, .external_lex_state = 1}, + [2395] = {.lex_state = 650, .external_lex_state = 1}, + [2396] = {.lex_state = 501}, + [2397] = {.lex_state = 595, .external_lex_state = 1}, + [2398] = {.lex_state = 637}, + [2399] = {.lex_state = 637}, + [2400] = {.lex_state = 576, .external_lex_state = 1}, + [2401] = {.lex_state = 624, .external_lex_state = 1}, [2402] = {.lex_state = 473}, - [2403] = {.lex_state = 653, .external_lex_state = 1}, - [2404] = {.lex_state = 595, .external_lex_state = 1}, - [2405] = {.lex_state = 473}, - [2406] = {.lex_state = 624, .external_lex_state = 1}, - [2407] = {.lex_state = 473}, - [2408] = {.lex_state = 655, .external_lex_state = 1}, - [2409] = {.lex_state = 476}, - [2410] = {.lex_state = 476}, - [2411] = {.lex_state = 653, .external_lex_state = 1}, - [2412] = {.lex_state = 501}, - [2413] = {.lex_state = 0}, - [2414] = {.lex_state = 473}, + [2403] = {.lex_state = 624, .external_lex_state = 1}, + [2404] = {.lex_state = 501}, + [2405] = {.lex_state = 420}, + [2406] = {.lex_state = 443}, + [2407] = {.lex_state = 420}, + [2408] = {.lex_state = 0}, + [2409] = {.lex_state = 624, .external_lex_state = 1}, + [2410] = {.lex_state = 595, .external_lex_state = 1}, + [2411] = {.lex_state = 655, .external_lex_state = 1}, + [2412] = {.lex_state = 473}, + [2413] = {.lex_state = 653, .external_lex_state = 1}, + [2414] = {.lex_state = 595, .external_lex_state = 1}, [2415] = {.lex_state = 473}, - [2416] = {.lex_state = 473}, - [2417] = {.lex_state = 576, .external_lex_state = 1}, - [2418] = {.lex_state = 576, .external_lex_state = 1}, - [2419] = {.lex_state = 473}, - [2420] = {.lex_state = 501}, - [2421] = {.lex_state = 581}, - [2422] = {.lex_state = 581}, - [2423] = {.lex_state = 581}, - [2424] = {.lex_state = 581}, - [2425] = {.lex_state = 581}, - [2426] = {.lex_state = 581}, - [2427] = {.lex_state = 581}, - [2428] = {.lex_state = 581}, - [2429] = {.lex_state = 581}, + [2416] = {.lex_state = 624, .external_lex_state = 1}, + [2417] = {.lex_state = 473}, + [2418] = {.lex_state = 655, .external_lex_state = 1}, + [2419] = {.lex_state = 476}, + [2420] = {.lex_state = 476}, + [2421] = {.lex_state = 653, .external_lex_state = 1}, + [2422] = {.lex_state = 501}, + [2423] = {.lex_state = 0}, + [2424] = {.lex_state = 473}, + [2425] = {.lex_state = 473}, + [2426] = {.lex_state = 473}, + [2427] = {.lex_state = 576, .external_lex_state = 1}, + [2428] = {.lex_state = 576, .external_lex_state = 1}, + [2429] = {.lex_state = 473}, [2430] = {.lex_state = 501}, - [2431] = {.lex_state = 424}, - [2432] = {.lex_state = 424}, - [2433] = {.lex_state = 468}, - [2434] = {.lex_state = 501}, - [2435] = {.lex_state = 476}, - [2436] = {.lex_state = 608}, - [2437] = {.lex_state = 608}, - [2438] = {.lex_state = 501}, - [2439] = {.lex_state = 501}, - [2440] = {.lex_state = 608}, - [2441] = {.lex_state = 586}, - [2442] = {.lex_state = 501}, - [2443] = {.lex_state = 501}, + [2431] = {.lex_state = 581}, + [2432] = {.lex_state = 581}, + [2433] = {.lex_state = 581}, + [2434] = {.lex_state = 581}, + [2435] = {.lex_state = 581}, + [2436] = {.lex_state = 581}, + [2437] = {.lex_state = 581}, + [2438] = {.lex_state = 581}, + [2439] = {.lex_state = 581}, + [2440] = {.lex_state = 501}, + [2441] = {.lex_state = 424}, + [2442] = {.lex_state = 424}, + [2443] = {.lex_state = 468}, [2444] = {.lex_state = 501}, - [2445] = {.lex_state = 501}, - [2446] = {.lex_state = 501}, - [2447] = {.lex_state = 473}, - [2448] = {.lex_state = 473}, - [2449] = {.lex_state = 420}, + [2445] = {.lex_state = 476}, + [2446] = {.lex_state = 608}, + [2447] = {.lex_state = 608}, + [2448] = {.lex_state = 501}, + [2449] = {.lex_state = 501}, [2450] = {.lex_state = 608}, - [2451] = {.lex_state = 420}, - [2452] = {.lex_state = 420}, - [2453] = {.lex_state = 649, .external_lex_state = 1}, - [2454] = {.lex_state = 605, .external_lex_state = 1}, - [2455] = {.lex_state = 420}, - [2456] = {.lex_state = 617}, - [2457] = {.lex_state = 614, .external_lex_state = 1}, + [2451] = {.lex_state = 586}, + [2452] = {.lex_state = 501}, + [2453] = {.lex_state = 501}, + [2454] = {.lex_state = 501}, + [2455] = {.lex_state = 501}, + [2456] = {.lex_state = 501}, + [2457] = {.lex_state = 473}, [2458] = {.lex_state = 473}, - [2459] = {.lex_state = 650, .external_lex_state = 1}, - [2460] = {.lex_state = 473}, - [2461] = {.lex_state = 501}, - [2462] = {.lex_state = 473}, - [2463] = {.lex_state = 473}, - [2464] = {.lex_state = 473}, - [2465] = {.lex_state = 473}, - [2466] = {.lex_state = 473}, - [2467] = {.lex_state = 473}, + [2459] = {.lex_state = 420}, + [2460] = {.lex_state = 608}, + [2461] = {.lex_state = 420}, + [2462] = {.lex_state = 420}, + [2463] = {.lex_state = 649, .external_lex_state = 1}, + [2464] = {.lex_state = 605, .external_lex_state = 1}, + [2465] = {.lex_state = 420}, + [2466] = {.lex_state = 617}, + [2467] = {.lex_state = 614, .external_lex_state = 1}, [2468] = {.lex_state = 473}, - [2469] = {.lex_state = 473}, + [2469] = {.lex_state = 650, .external_lex_state = 1}, [2470] = {.lex_state = 473}, - [2471] = {.lex_state = 608}, - [2472] = {.lex_state = 608}, - [2473] = {.lex_state = 608}, - [2474] = {.lex_state = 608}, - [2475] = {.lex_state = 608}, - [2476] = {.lex_state = 501}, - [2477] = {.lex_state = 0}, + [2471] = {.lex_state = 501}, + [2472] = {.lex_state = 473}, + [2473] = {.lex_state = 473}, + [2474] = {.lex_state = 473}, + [2475] = {.lex_state = 473}, + [2476] = {.lex_state = 473}, + [2477] = {.lex_state = 473}, [2478] = {.lex_state = 473}, [2479] = {.lex_state = 473}, - [2480] = {.lex_state = 501}, - [2481] = {.lex_state = 501}, - [2482] = {.lex_state = 473}, - [2483] = {.lex_state = 473}, - [2484] = {.lex_state = 473}, - [2485] = {.lex_state = 473}, - [2486] = {.lex_state = 608}, - [2487] = {.lex_state = 608}, - [2488] = {.lex_state = 501}, - [2489] = {.lex_state = 501}, - [2490] = {.lex_state = 608}, - [2491] = {.lex_state = 473}, + [2480] = {.lex_state = 473}, + [2481] = {.lex_state = 608}, + [2482] = {.lex_state = 608}, + [2483] = {.lex_state = 608}, + [2484] = {.lex_state = 608}, + [2485] = {.lex_state = 608}, + [2486] = {.lex_state = 501}, + [2487] = {.lex_state = 0}, + [2488] = {.lex_state = 473}, + [2489] = {.lex_state = 473}, + [2490] = {.lex_state = 501}, + [2491] = {.lex_state = 501}, [2492] = {.lex_state = 473}, - [2493] = {.lex_state = 619, .external_lex_state = 1}, - [2494] = {.lex_state = 0}, - [2495] = {.lex_state = 476}, - [2496] = {.lex_state = 0}, - [2497] = {.lex_state = 0}, - [2498] = {.lex_state = 608}, - [2499] = {.lex_state = 420}, - [2500] = {.lex_state = 643}, - [2501] = {.lex_state = 584}, - [2502] = {.lex_state = 645, .external_lex_state = 1}, - [2503] = {.lex_state = 584}, - [2504] = {.lex_state = 645, .external_lex_state = 1}, - [2505] = {.lex_state = 645, .external_lex_state = 1}, - [2506] = {.lex_state = 645, .external_lex_state = 1}, - [2507] = {.lex_state = 424}, - [2508] = {.lex_state = 424}, - [2509] = {.lex_state = 645, .external_lex_state = 1}, - [2510] = {.lex_state = 645, .external_lex_state = 1}, - [2511] = {.lex_state = 645, .external_lex_state = 1}, - [2512] = {.lex_state = 424}, - [2513] = {.lex_state = 424}, + [2493] = {.lex_state = 473}, + [2494] = {.lex_state = 473}, + [2495] = {.lex_state = 473}, + [2496] = {.lex_state = 608}, + [2497] = {.lex_state = 608}, + [2498] = {.lex_state = 501}, + [2499] = {.lex_state = 501}, + [2500] = {.lex_state = 608}, + [2501] = {.lex_state = 473}, + [2502] = {.lex_state = 473}, + [2503] = {.lex_state = 619, .external_lex_state = 1}, + [2504] = {.lex_state = 0}, + [2505] = {.lex_state = 476}, + [2506] = {.lex_state = 0}, + [2507] = {.lex_state = 0}, + [2508] = {.lex_state = 608}, + [2509] = {.lex_state = 420}, + [2510] = {.lex_state = 643}, + [2511] = {.lex_state = 584}, + [2512] = {.lex_state = 645, .external_lex_state = 1}, + [2513] = {.lex_state = 584}, [2514] = {.lex_state = 645, .external_lex_state = 1}, [2515] = {.lex_state = 645, .external_lex_state = 1}, [2516] = {.lex_state = 645, .external_lex_state = 1}, [2517] = {.lex_state = 424}, [2518] = {.lex_state = 424}, - [2519] = {.lex_state = 431}, - [2520] = {.lex_state = 652, .external_lex_state = 1}, - [2521] = {.lex_state = 579}, - [2522] = {.lex_state = 652, .external_lex_state = 1}, + [2519] = {.lex_state = 645, .external_lex_state = 1}, + [2520] = {.lex_state = 645, .external_lex_state = 1}, + [2521] = {.lex_state = 645, .external_lex_state = 1}, + [2522] = {.lex_state = 424}, [2523] = {.lex_state = 424}, - [2524] = {.lex_state = 424}, + [2524] = {.lex_state = 645, .external_lex_state = 1}, [2525] = {.lex_state = 645, .external_lex_state = 1}, - [2526] = {.lex_state = 652, .external_lex_state = 1}, + [2526] = {.lex_state = 645, .external_lex_state = 1}, [2527] = {.lex_state = 424}, [2528] = {.lex_state = 424}, - [2529] = {.lex_state = 645, .external_lex_state = 1}, + [2529] = {.lex_state = 431}, [2530] = {.lex_state = 652, .external_lex_state = 1}, - [2531] = {.lex_state = 424}, - [2532] = {.lex_state = 424}, - [2533] = {.lex_state = 645, .external_lex_state = 1}, - [2534] = {.lex_state = 584}, - [2535] = {.lex_state = 0}, - [2536] = {.lex_state = 420}, - [2537] = {.lex_state = 652, .external_lex_state = 1}, - [2538] = {.lex_state = 473}, - [2539] = {.lex_state = 473}, - [2540] = {.lex_state = 646, .external_lex_state = 1}, - [2541] = {.lex_state = 637}, - [2542] = {.lex_state = 652, .external_lex_state = 1}, - [2543] = {.lex_state = 424}, - [2544] = {.lex_state = 473}, + [2531] = {.lex_state = 579}, + [2532] = {.lex_state = 652, .external_lex_state = 1}, + [2533] = {.lex_state = 424}, + [2534] = {.lex_state = 424}, + [2535] = {.lex_state = 645, .external_lex_state = 1}, + [2536] = {.lex_state = 652, .external_lex_state = 1}, + [2537] = {.lex_state = 424}, + [2538] = {.lex_state = 424}, + [2539] = {.lex_state = 645, .external_lex_state = 1}, + [2540] = {.lex_state = 652, .external_lex_state = 1}, + [2541] = {.lex_state = 424}, + [2542] = {.lex_state = 424}, + [2543] = {.lex_state = 645, .external_lex_state = 1}, + [2544] = {.lex_state = 584}, [2545] = {.lex_state = 0}, - [2546] = {.lex_state = 653, .external_lex_state = 1}, - [2547] = {.lex_state = 473}, - [2548] = {.lex_state = 476}, - [2549] = {.lex_state = 652, .external_lex_state = 1}, - [2550] = {.lex_state = 652, .external_lex_state = 1}, - [2551] = {.lex_state = 473}, - [2552] = {.lex_state = 652, .external_lex_state = 1}, + [2546] = {.lex_state = 420}, + [2547] = {.lex_state = 652, .external_lex_state = 1}, + [2548] = {.lex_state = 473}, + [2549] = {.lex_state = 595, .external_lex_state = 1}, + [2550] = {.lex_state = 473}, + [2551] = {.lex_state = 646, .external_lex_state = 1}, + [2552] = {.lex_state = 637}, [2553] = {.lex_state = 652, .external_lex_state = 1}, - [2554] = {.lex_state = 0}, - [2555] = {.lex_state = 605, .external_lex_state = 1}, + [2554] = {.lex_state = 424}, + [2555] = {.lex_state = 473}, [2556] = {.lex_state = 0}, - [2557] = {.lex_state = 605, .external_lex_state = 1}, - [2558] = {.lex_state = 0}, - [2559] = {.lex_state = 424}, - [2560] = {.lex_state = 424}, - [2561] = {.lex_state = 645, .external_lex_state = 1}, - [2562] = {.lex_state = 645, .external_lex_state = 1}, - [2563] = {.lex_state = 0}, - [2564] = {.lex_state = 624, .external_lex_state = 1}, - [2565] = {.lex_state = 624, .external_lex_state = 1}, - [2566] = {.lex_state = 645, .external_lex_state = 1}, - [2567] = {.lex_state = 624, .external_lex_state = 1}, - [2568] = {.lex_state = 595, .external_lex_state = 1}, - [2569] = {.lex_state = 655, .external_lex_state = 1}, - [2570] = {.lex_state = 473}, - [2571] = {.lex_state = 653, .external_lex_state = 1}, - [2572] = {.lex_state = 595, .external_lex_state = 1}, + [2557] = {.lex_state = 653, .external_lex_state = 1}, + [2558] = {.lex_state = 473}, + [2559] = {.lex_state = 476}, + [2560] = {.lex_state = 652, .external_lex_state = 1}, + [2561] = {.lex_state = 652, .external_lex_state = 1}, + [2562] = {.lex_state = 473}, + [2563] = {.lex_state = 652, .external_lex_state = 1}, + [2564] = {.lex_state = 652, .external_lex_state = 1}, + [2565] = {.lex_state = 0}, + [2566] = {.lex_state = 605, .external_lex_state = 1}, + [2567] = {.lex_state = 0}, + [2568] = {.lex_state = 605, .external_lex_state = 1}, + [2569] = {.lex_state = 0}, + [2570] = {.lex_state = 424}, + [2571] = {.lex_state = 424}, + [2572] = {.lex_state = 645, .external_lex_state = 1}, [2573] = {.lex_state = 645, .external_lex_state = 1}, - [2574] = {.lex_state = 473}, - [2575] = {.lex_state = 0}, - [2576] = {.lex_state = 645, .external_lex_state = 1}, - [2577] = {.lex_state = 473}, - [2578] = {.lex_state = 0}, - [2579] = {.lex_state = 645, .external_lex_state = 1}, - [2580] = {.lex_state = 664, .external_lex_state = 1}, - [2581] = {.lex_state = 650, .external_lex_state = 1}, + [2574] = {.lex_state = 0}, + [2575] = {.lex_state = 624, .external_lex_state = 1}, + [2576] = {.lex_state = 473}, + [2577] = {.lex_state = 624, .external_lex_state = 1}, + [2578] = {.lex_state = 645, .external_lex_state = 1}, + [2579] = {.lex_state = 624, .external_lex_state = 1}, + [2580] = {.lex_state = 595, .external_lex_state = 1}, + [2581] = {.lex_state = 655, .external_lex_state = 1}, [2582] = {.lex_state = 473}, - [2583] = {.lex_state = 662, .external_lex_state = 1}, - [2584] = {.lex_state = 576, .external_lex_state = 1}, - [2585] = {.lex_state = 595, .external_lex_state = 1}, - [2586] = {.lex_state = 595, .external_lex_state = 1}, - [2587] = {.lex_state = 501}, - [2588] = {.lex_state = 646, .external_lex_state = 1}, - [2589] = {.lex_state = 595, .external_lex_state = 1}, - [2590] = {.lex_state = 501}, - [2591] = {.lex_state = 647, .external_lex_state = 1}, - [2592] = {.lex_state = 662, .external_lex_state = 1}, - [2593] = {.lex_state = 473}, - [2594] = {.lex_state = 0}, + [2583] = {.lex_state = 653, .external_lex_state = 1}, + [2584] = {.lex_state = 595, .external_lex_state = 1}, + [2585] = {.lex_state = 645, .external_lex_state = 1}, + [2586] = {.lex_state = 473}, + [2587] = {.lex_state = 0}, + [2588] = {.lex_state = 645, .external_lex_state = 1}, + [2589] = {.lex_state = 473}, + [2590] = {.lex_state = 0}, + [2591] = {.lex_state = 645, .external_lex_state = 1}, + [2592] = {.lex_state = 664, .external_lex_state = 1}, + [2593] = {.lex_state = 650, .external_lex_state = 1}, + [2594] = {.lex_state = 473}, [2595] = {.lex_state = 662, .external_lex_state = 1}, - [2596] = {.lex_state = 662, .external_lex_state = 1}, - [2597] = {.lex_state = 0}, - [2598] = {.lex_state = 624, .external_lex_state = 1}, - [2599] = {.lex_state = 624, .external_lex_state = 1}, - [2600] = {.lex_state = 662, .external_lex_state = 1}, - [2601] = {.lex_state = 595, .external_lex_state = 1}, - [2602] = {.lex_state = 501}, + [2596] = {.lex_state = 576, .external_lex_state = 1}, + [2597] = {.lex_state = 595, .external_lex_state = 1}, + [2598] = {.lex_state = 0}, + [2599] = {.lex_state = 595, .external_lex_state = 1}, + [2600] = {.lex_state = 501}, + [2601] = {.lex_state = 646, .external_lex_state = 1}, + [2602] = {.lex_state = 595, .external_lex_state = 1}, [2603] = {.lex_state = 501}, - [2604] = {.lex_state = 0}, - [2605] = {.lex_state = 0}, - [2606] = {.lex_state = 595, .external_lex_state = 1}, - [2607] = {.lex_state = 476}, - [2608] = {.lex_state = 0}, - [2609] = {.lex_state = 0}, - [2610] = {.lex_state = 473}, - [2611] = {.lex_state = 501}, - [2612] = {.lex_state = 501}, - [2613] = {.lex_state = 0}, - [2614] = {.lex_state = 420}, - [2615] = {.lex_state = 501}, - [2616] = {.lex_state = 0}, + [2604] = {.lex_state = 647, .external_lex_state = 1}, + [2605] = {.lex_state = 662, .external_lex_state = 1}, + [2606] = {.lex_state = 473}, + [2607] = {.lex_state = 0}, + [2608] = {.lex_state = 662, .external_lex_state = 1}, + [2609] = {.lex_state = 662, .external_lex_state = 1}, + [2610] = {.lex_state = 0}, + [2611] = {.lex_state = 624, .external_lex_state = 1}, + [2612] = {.lex_state = 624, .external_lex_state = 1}, + [2613] = {.lex_state = 662, .external_lex_state = 1}, + [2614] = {.lex_state = 595, .external_lex_state = 1}, + [2615] = {.lex_state = 662, .external_lex_state = 1}, + [2616] = {.lex_state = 501}, [2617] = {.lex_state = 501}, - [2618] = {.lex_state = 473}, - [2619] = {.lex_state = 624, .external_lex_state = 1}, - [2620] = {.lex_state = 473}, - [2621] = {.lex_state = 655, .external_lex_state = 1}, - [2622] = {.lex_state = 473}, - [2623] = {.lex_state = 473}, - [2624] = {.lex_state = 576, .external_lex_state = 1}, - [2625] = {.lex_state = 576, .external_lex_state = 1}, - [2626] = {.lex_state = 595, .external_lex_state = 1}, - [2627] = {.lex_state = 624, .external_lex_state = 1}, - [2628] = {.lex_state = 420}, - [2629] = {.lex_state = 473}, - [2630] = {.lex_state = 468}, - [2631] = {.lex_state = 501}, - [2632] = {.lex_state = 653, .external_lex_state = 1}, - [2633] = {.lex_state = 655, .external_lex_state = 1}, + [2618] = {.lex_state = 0}, + [2619] = {.lex_state = 0}, + [2620] = {.lex_state = 595, .external_lex_state = 1}, + [2621] = {.lex_state = 476}, + [2622] = {.lex_state = 0}, + [2623] = {.lex_state = 0}, + [2624] = {.lex_state = 473}, + [2625] = {.lex_state = 501}, + [2626] = {.lex_state = 624, .external_lex_state = 1}, + [2627] = {.lex_state = 501}, + [2628] = {.lex_state = 0}, + [2629] = {.lex_state = 420}, + [2630] = {.lex_state = 501}, + [2631] = {.lex_state = 0}, + [2632] = {.lex_state = 501}, + [2633] = {.lex_state = 473}, [2634] = {.lex_state = 624, .external_lex_state = 1}, - [2635] = {.lex_state = 420}, - [2636] = {.lex_state = 420}, - [2637] = {.lex_state = 420}, - [2638] = {.lex_state = 468}, - [2639] = {.lex_state = 608}, - [2640] = {.lex_state = 608}, - [2641] = {.lex_state = 501}, - [2642] = {.lex_state = 501}, - [2643] = {.lex_state = 501}, - [2644] = {.lex_state = 501}, - [2645] = {.lex_state = 501}, + [2635] = {.lex_state = 473}, + [2636] = {.lex_state = 655, .external_lex_state = 1}, + [2637] = {.lex_state = 473}, + [2638] = {.lex_state = 473}, + [2639] = {.lex_state = 576, .external_lex_state = 1}, + [2640] = {.lex_state = 576, .external_lex_state = 1}, + [2641] = {.lex_state = 595, .external_lex_state = 1}, + [2642] = {.lex_state = 624, .external_lex_state = 1}, + [2643] = {.lex_state = 420}, + [2644] = {.lex_state = 473}, + [2645] = {.lex_state = 468}, [2646] = {.lex_state = 501}, - [2647] = {.lex_state = 501}, - [2648] = {.lex_state = 420}, - [2649] = {.lex_state = 665, .external_lex_state = 1}, - [2650] = {.lex_state = 650, .external_lex_state = 1}, - [2651] = {.lex_state = 473}, - [2652] = {.lex_state = 595, .external_lex_state = 1}, - [2653] = {.lex_state = 608}, + [2647] = {.lex_state = 653, .external_lex_state = 1}, + [2648] = {.lex_state = 655, .external_lex_state = 1}, + [2649] = {.lex_state = 624, .external_lex_state = 1}, + [2650] = {.lex_state = 420}, + [2651] = {.lex_state = 420}, + [2652] = {.lex_state = 420}, + [2653] = {.lex_state = 468}, [2654] = {.lex_state = 608}, [2655] = {.lex_state = 608}, - [2656] = {.lex_state = 608}, + [2656] = {.lex_state = 501}, [2657] = {.lex_state = 501}, [2658] = {.lex_state = 501}, [2659] = {.lex_state = 501}, [2660] = {.lex_state = 501}, - [2661] = {.lex_state = 608}, - [2662] = {.lex_state = 645, .external_lex_state = 1}, - [2663] = {.lex_state = 645, .external_lex_state = 1}, - [2664] = {.lex_state = 645, .external_lex_state = 1}, - [2665] = {.lex_state = 645, .external_lex_state = 1}, - [2666] = {.lex_state = 645, .external_lex_state = 1}, - [2667] = {.lex_state = 645, .external_lex_state = 1}, - [2668] = {.lex_state = 645, .external_lex_state = 1}, - [2669] = {.lex_state = 645, .external_lex_state = 1}, - [2670] = {.lex_state = 584}, - [2671] = {.lex_state = 652, .external_lex_state = 1}, - [2672] = {.lex_state = 584}, - [2673] = {.lex_state = 652, .external_lex_state = 1}, - [2674] = {.lex_state = 652, .external_lex_state = 1}, - [2675] = {.lex_state = 652, .external_lex_state = 1}, - [2676] = {.lex_state = 424}, - [2677] = {.lex_state = 424}, - [2678] = {.lex_state = 652, .external_lex_state = 1}, - [2679] = {.lex_state = 652, .external_lex_state = 1}, - [2680] = {.lex_state = 652, .external_lex_state = 1}, - [2681] = {.lex_state = 424}, - [2682] = {.lex_state = 424}, - [2683] = {.lex_state = 652, .external_lex_state = 1}, - [2684] = {.lex_state = 652, .external_lex_state = 1}, - [2685] = {.lex_state = 652, .external_lex_state = 1}, - [2686] = {.lex_state = 424}, - [2687] = {.lex_state = 424}, + [2661] = {.lex_state = 501}, + [2662] = {.lex_state = 501}, + [2663] = {.lex_state = 420}, + [2664] = {.lex_state = 665, .external_lex_state = 1}, + [2665] = {.lex_state = 650, .external_lex_state = 1}, + [2666] = {.lex_state = 473}, + [2667] = {.lex_state = 595, .external_lex_state = 1}, + [2668] = {.lex_state = 608}, + [2669] = {.lex_state = 608}, + [2670] = {.lex_state = 608}, + [2671] = {.lex_state = 608}, + [2672] = {.lex_state = 501}, + [2673] = {.lex_state = 501}, + [2674] = {.lex_state = 501}, + [2675] = {.lex_state = 501}, + [2676] = {.lex_state = 608}, + [2677] = {.lex_state = 645, .external_lex_state = 1}, + [2678] = {.lex_state = 645, .external_lex_state = 1}, + [2679] = {.lex_state = 645, .external_lex_state = 1}, + [2680] = {.lex_state = 645, .external_lex_state = 1}, + [2681] = {.lex_state = 645, .external_lex_state = 1}, + [2682] = {.lex_state = 645, .external_lex_state = 1}, + [2683] = {.lex_state = 645, .external_lex_state = 1}, + [2684] = {.lex_state = 645, .external_lex_state = 1}, + [2685] = {.lex_state = 584}, + [2686] = {.lex_state = 652, .external_lex_state = 1}, + [2687] = {.lex_state = 584}, [2688] = {.lex_state = 652, .external_lex_state = 1}, [2689] = {.lex_state = 652, .external_lex_state = 1}, - [2690] = {.lex_state = 0}, - [2691] = {.lex_state = 624, .external_lex_state = 1}, - [2692] = {.lex_state = 624, .external_lex_state = 1}, + [2690] = {.lex_state = 652, .external_lex_state = 1}, + [2691] = {.lex_state = 424}, + [2692] = {.lex_state = 424}, [2693] = {.lex_state = 652, .external_lex_state = 1}, - [2694] = {.lex_state = 624, .external_lex_state = 1}, - [2695] = {.lex_state = 595, .external_lex_state = 1}, - [2696] = {.lex_state = 655, .external_lex_state = 1}, - [2697] = {.lex_state = 473}, - [2698] = {.lex_state = 653, .external_lex_state = 1}, - [2699] = {.lex_state = 595, .external_lex_state = 1}, + [2694] = {.lex_state = 652, .external_lex_state = 1}, + [2695] = {.lex_state = 652, .external_lex_state = 1}, + [2696] = {.lex_state = 424}, + [2697] = {.lex_state = 424}, + [2698] = {.lex_state = 652, .external_lex_state = 1}, + [2699] = {.lex_state = 652, .external_lex_state = 1}, [2700] = {.lex_state = 652, .external_lex_state = 1}, - [2701] = {.lex_state = 473}, - [2702] = {.lex_state = 0}, + [2701] = {.lex_state = 424}, + [2702] = {.lex_state = 424}, [2703] = {.lex_state = 652, .external_lex_state = 1}, - [2704] = {.lex_state = 473}, + [2704] = {.lex_state = 652, .external_lex_state = 1}, [2705] = {.lex_state = 0}, - [2706] = {.lex_state = 652, .external_lex_state = 1}, - [2707] = {.lex_state = 645, .external_lex_state = 1}, - [2708] = {.lex_state = 666, .external_lex_state = 1}, - [2709] = {.lex_state = 576, .external_lex_state = 1}, - [2710] = {.lex_state = 0}, - [2711] = {.lex_state = 0}, - [2712] = {.lex_state = 595, .external_lex_state = 1}, - [2713] = {.lex_state = 476}, - [2714] = {.lex_state = 0}, - [2715] = {.lex_state = 624, .external_lex_state = 1}, - [2716] = {.lex_state = 0}, - [2717] = {.lex_state = 636, .external_lex_state = 1}, + [2706] = {.lex_state = 624, .external_lex_state = 1}, + [2707] = {.lex_state = 473}, + [2708] = {.lex_state = 624, .external_lex_state = 1}, + [2709] = {.lex_state = 652, .external_lex_state = 1}, + [2710] = {.lex_state = 624, .external_lex_state = 1}, + [2711] = {.lex_state = 595, .external_lex_state = 1}, + [2712] = {.lex_state = 655, .external_lex_state = 1}, + [2713] = {.lex_state = 473}, + [2714] = {.lex_state = 653, .external_lex_state = 1}, + [2715] = {.lex_state = 595, .external_lex_state = 1}, + [2716] = {.lex_state = 652, .external_lex_state = 1}, + [2717] = {.lex_state = 473}, [2718] = {.lex_state = 0}, - [2719] = {.lex_state = 0}, - [2720] = {.lex_state = 420}, - [2721] = {.lex_state = 473}, - [2722] = {.lex_state = 666, .external_lex_state = 1}, - [2723] = {.lex_state = 473}, - [2724] = {.lex_state = 0}, - [2725] = {.lex_state = 645, .external_lex_state = 1}, - [2726] = {.lex_state = 645, .external_lex_state = 1}, - [2727] = {.lex_state = 473}, - [2728] = {.lex_state = 624, .external_lex_state = 1}, - [2729] = {.lex_state = 473}, - [2730] = {.lex_state = 655, .external_lex_state = 1}, - [2731] = {.lex_state = 473}, - [2732] = {.lex_state = 473}, - [2733] = {.lex_state = 645, .external_lex_state = 1}, - [2734] = {.lex_state = 645, .external_lex_state = 1}, - [2735] = {.lex_state = 473}, - [2736] = {.lex_state = 662, .external_lex_state = 1}, + [2719] = {.lex_state = 652, .external_lex_state = 1}, + [2720] = {.lex_state = 473}, + [2721] = {.lex_state = 0}, + [2722] = {.lex_state = 652, .external_lex_state = 1}, + [2723] = {.lex_state = 645, .external_lex_state = 1}, + [2724] = {.lex_state = 666, .external_lex_state = 1}, + [2725] = {.lex_state = 576, .external_lex_state = 1}, + [2726] = {.lex_state = 0}, + [2727] = {.lex_state = 0}, + [2728] = {.lex_state = 595, .external_lex_state = 1}, + [2729] = {.lex_state = 476}, + [2730] = {.lex_state = 0}, + [2731] = {.lex_state = 624, .external_lex_state = 1}, + [2732] = {.lex_state = 0}, + [2733] = {.lex_state = 636, .external_lex_state = 1}, + [2734] = {.lex_state = 0}, + [2735] = {.lex_state = 0}, + [2736] = {.lex_state = 420}, [2737] = {.lex_state = 473}, - [2738] = {.lex_state = 473}, - [2739] = {.lex_state = 646, .external_lex_state = 1}, - [2740] = {.lex_state = 443}, - [2741] = {.lex_state = 637}, - [2742] = {.lex_state = 662, .external_lex_state = 1}, - [2743] = {.lex_state = 424}, + [2738] = {.lex_state = 666, .external_lex_state = 1}, + [2739] = {.lex_state = 473}, + [2740] = {.lex_state = 0}, + [2741] = {.lex_state = 624, .external_lex_state = 1}, + [2742] = {.lex_state = 645, .external_lex_state = 1}, + [2743] = {.lex_state = 645, .external_lex_state = 1}, [2744] = {.lex_state = 473}, - [2745] = {.lex_state = 0}, - [2746] = {.lex_state = 653, .external_lex_state = 1}, - [2747] = {.lex_state = 473}, - [2748] = {.lex_state = 476}, - [2749] = {.lex_state = 662, .external_lex_state = 1}, - [2750] = {.lex_state = 662, .external_lex_state = 1}, - [2751] = {.lex_state = 662, .external_lex_state = 1}, - [2752] = {.lex_state = 576, .external_lex_state = 1}, - [2753] = {.lex_state = 473}, - [2754] = {.lex_state = 595, .external_lex_state = 1}, + [2745] = {.lex_state = 624, .external_lex_state = 1}, + [2746] = {.lex_state = 473}, + [2747] = {.lex_state = 655, .external_lex_state = 1}, + [2748] = {.lex_state = 473}, + [2749] = {.lex_state = 473}, + [2750] = {.lex_state = 645, .external_lex_state = 1}, + [2751] = {.lex_state = 645, .external_lex_state = 1}, + [2752] = {.lex_state = 473}, + [2753] = {.lex_state = 662, .external_lex_state = 1}, + [2754] = {.lex_state = 473}, [2755] = {.lex_state = 595, .external_lex_state = 1}, - [2756] = {.lex_state = 501}, + [2756] = {.lex_state = 473}, [2757] = {.lex_state = 646, .external_lex_state = 1}, - [2758] = {.lex_state = 595, .external_lex_state = 1}, - [2759] = {.lex_state = 647, .external_lex_state = 1}, - [2760] = {.lex_state = 624, .external_lex_state = 1}, - [2761] = {.lex_state = 624, .external_lex_state = 1}, - [2762] = {.lex_state = 501}, + [2758] = {.lex_state = 443}, + [2759] = {.lex_state = 637}, + [2760] = {.lex_state = 662, .external_lex_state = 1}, + [2761] = {.lex_state = 424}, + [2762] = {.lex_state = 473}, [2763] = {.lex_state = 0}, - [2764] = {.lex_state = 501}, - [2765] = {.lex_state = 501}, - [2766] = {.lex_state = 501}, - [2767] = {.lex_state = 624, .external_lex_state = 1}, - [2768] = {.lex_state = 420}, - [2769] = {.lex_state = 473}, - [2770] = {.lex_state = 655, .external_lex_state = 1}, - [2771] = {.lex_state = 624, .external_lex_state = 1}, - [2772] = {.lex_state = 473}, - [2773] = {.lex_state = 576, .external_lex_state = 1}, - [2774] = {.lex_state = 624, .external_lex_state = 1}, - [2775] = {.lex_state = 420}, - [2776] = {.lex_state = 420}, - [2777] = {.lex_state = 468}, - [2778] = {.lex_state = 608}, - [2779] = {.lex_state = 608}, - [2780] = {.lex_state = 501}, - [2781] = {.lex_state = 473}, - [2782] = {.lex_state = 576, .external_lex_state = 1}, - [2783] = {.lex_state = 608}, - [2784] = {.lex_state = 608}, - [2785] = {.lex_state = 608}, - [2786] = {.lex_state = 608}, - [2787] = {.lex_state = 608}, - [2788] = {.lex_state = 501}, - [2789] = {.lex_state = 501}, - [2790] = {.lex_state = 608}, - [2791] = {.lex_state = 501}, - [2792] = {.lex_state = 501}, + [2764] = {.lex_state = 653, .external_lex_state = 1}, + [2765] = {.lex_state = 473}, + [2766] = {.lex_state = 476}, + [2767] = {.lex_state = 662, .external_lex_state = 1}, + [2768] = {.lex_state = 662, .external_lex_state = 1}, + [2769] = {.lex_state = 662, .external_lex_state = 1}, + [2770] = {.lex_state = 576, .external_lex_state = 1}, + [2771] = {.lex_state = 473}, + [2772] = {.lex_state = 624, .external_lex_state = 1}, + [2773] = {.lex_state = 595, .external_lex_state = 1}, + [2774] = {.lex_state = 0}, + [2775] = {.lex_state = 595, .external_lex_state = 1}, + [2776] = {.lex_state = 501}, + [2777] = {.lex_state = 646, .external_lex_state = 1}, + [2778] = {.lex_state = 595, .external_lex_state = 1}, + [2779] = {.lex_state = 647, .external_lex_state = 1}, + [2780] = {.lex_state = 624, .external_lex_state = 1}, + [2781] = {.lex_state = 624, .external_lex_state = 1}, + [2782] = {.lex_state = 501}, + [2783] = {.lex_state = 501}, + [2784] = {.lex_state = 0}, + [2785] = {.lex_state = 501}, + [2786] = {.lex_state = 501}, + [2787] = {.lex_state = 501}, + [2788] = {.lex_state = 624, .external_lex_state = 1}, + [2789] = {.lex_state = 420}, + [2790] = {.lex_state = 473}, + [2791] = {.lex_state = 655, .external_lex_state = 1}, + [2792] = {.lex_state = 624, .external_lex_state = 1}, [2793] = {.lex_state = 473}, - [2794] = {.lex_state = 473}, - [2795] = {.lex_state = 608}, - [2796] = {.lex_state = 608}, - [2797] = {.lex_state = 501}, - [2798] = {.lex_state = 501}, - [2799] = {.lex_state = 652, .external_lex_state = 1}, - [2800] = {.lex_state = 652, .external_lex_state = 1}, - [2801] = {.lex_state = 652, .external_lex_state = 1}, - [2802] = {.lex_state = 652, .external_lex_state = 1}, - [2803] = {.lex_state = 652, .external_lex_state = 1}, - [2804] = {.lex_state = 652, .external_lex_state = 1}, - [2805] = {.lex_state = 652, .external_lex_state = 1}, - [2806] = {.lex_state = 652, .external_lex_state = 1}, - [2807] = {.lex_state = 652, .external_lex_state = 1}, - [2808] = {.lex_state = 667, .external_lex_state = 1}, - [2809] = {.lex_state = 576, .external_lex_state = 1}, - [2810] = {.lex_state = 0}, - [2811] = {.lex_state = 0}, - [2812] = {.lex_state = 595, .external_lex_state = 1}, - [2813] = {.lex_state = 476}, - [2814] = {.lex_state = 0}, - [2815] = {.lex_state = 624, .external_lex_state = 1}, - [2816] = {.lex_state = 0}, - [2817] = {.lex_state = 636, .external_lex_state = 1}, - [2818] = {.lex_state = 0}, - [2819] = {.lex_state = 0}, - [2820] = {.lex_state = 420}, - [2821] = {.lex_state = 473}, - [2822] = {.lex_state = 667, .external_lex_state = 1}, - [2823] = {.lex_state = 473}, - [2824] = {.lex_state = 0}, + [2794] = {.lex_state = 576, .external_lex_state = 1}, + [2795] = {.lex_state = 624, .external_lex_state = 1}, + [2796] = {.lex_state = 420}, + [2797] = {.lex_state = 420}, + [2798] = {.lex_state = 468}, + [2799] = {.lex_state = 608}, + [2800] = {.lex_state = 608}, + [2801] = {.lex_state = 501}, + [2802] = {.lex_state = 473}, + [2803] = {.lex_state = 576, .external_lex_state = 1}, + [2804] = {.lex_state = 608}, + [2805] = {.lex_state = 608}, + [2806] = {.lex_state = 608}, + [2807] = {.lex_state = 608}, + [2808] = {.lex_state = 608}, + [2809] = {.lex_state = 501}, + [2810] = {.lex_state = 501}, + [2811] = {.lex_state = 608}, + [2812] = {.lex_state = 501}, + [2813] = {.lex_state = 501}, + [2814] = {.lex_state = 473}, + [2815] = {.lex_state = 473}, + [2816] = {.lex_state = 608}, + [2817] = {.lex_state = 608}, + [2818] = {.lex_state = 501}, + [2819] = {.lex_state = 501}, + [2820] = {.lex_state = 652, .external_lex_state = 1}, + [2821] = {.lex_state = 652, .external_lex_state = 1}, + [2822] = {.lex_state = 652, .external_lex_state = 1}, + [2823] = {.lex_state = 652, .external_lex_state = 1}, + [2824] = {.lex_state = 652, .external_lex_state = 1}, [2825] = {.lex_state = 652, .external_lex_state = 1}, [2826] = {.lex_state = 652, .external_lex_state = 1}, - [2827] = {.lex_state = 473}, - [2828] = {.lex_state = 624, .external_lex_state = 1}, - [2829] = {.lex_state = 473}, - [2830] = {.lex_state = 655, .external_lex_state = 1}, - [2831] = {.lex_state = 473}, - [2832] = {.lex_state = 473}, - [2833] = {.lex_state = 652, .external_lex_state = 1}, - [2834] = {.lex_state = 652, .external_lex_state = 1}, - [2835] = {.lex_state = 666, .external_lex_state = 1}, - [2836] = {.lex_state = 576, .external_lex_state = 1}, - [2837] = {.lex_state = 595, .external_lex_state = 1}, - [2838] = {.lex_state = 595, .external_lex_state = 1}, - [2839] = {.lex_state = 501}, - [2840] = {.lex_state = 646, .external_lex_state = 1}, - [2841] = {.lex_state = 595, .external_lex_state = 1}, - [2842] = {.lex_state = 501}, - [2843] = {.lex_state = 647, .external_lex_state = 1}, - [2844] = {.lex_state = 666, .external_lex_state = 1}, - [2845] = {.lex_state = 473}, - [2846] = {.lex_state = 0}, - [2847] = {.lex_state = 666, .external_lex_state = 1}, - [2848] = {.lex_state = 666, .external_lex_state = 1}, - [2849] = {.lex_state = 0}, + [2827] = {.lex_state = 652, .external_lex_state = 1}, + [2828] = {.lex_state = 652, .external_lex_state = 1}, + [2829] = {.lex_state = 667, .external_lex_state = 1}, + [2830] = {.lex_state = 576, .external_lex_state = 1}, + [2831] = {.lex_state = 0}, + [2832] = {.lex_state = 0}, + [2833] = {.lex_state = 595, .external_lex_state = 1}, + [2834] = {.lex_state = 476}, + [2835] = {.lex_state = 0}, + [2836] = {.lex_state = 624, .external_lex_state = 1}, + [2837] = {.lex_state = 0}, + [2838] = {.lex_state = 636, .external_lex_state = 1}, + [2839] = {.lex_state = 0}, + [2840] = {.lex_state = 0}, + [2841] = {.lex_state = 420}, + [2842] = {.lex_state = 473}, + [2843] = {.lex_state = 667, .external_lex_state = 1}, + [2844] = {.lex_state = 473}, + [2845] = {.lex_state = 0}, + [2846] = {.lex_state = 624, .external_lex_state = 1}, + [2847] = {.lex_state = 652, .external_lex_state = 1}, + [2848] = {.lex_state = 652, .external_lex_state = 1}, + [2849] = {.lex_state = 473}, [2850] = {.lex_state = 624, .external_lex_state = 1}, - [2851] = {.lex_state = 624, .external_lex_state = 1}, - [2852] = {.lex_state = 666, .external_lex_state = 1}, - [2853] = {.lex_state = 645, .external_lex_state = 1}, - [2854] = {.lex_state = 645, .external_lex_state = 1}, - [2855] = {.lex_state = 624, .external_lex_state = 1}, - [2856] = {.lex_state = 420}, - [2857] = {.lex_state = 473}, - [2858] = {.lex_state = 655, .external_lex_state = 1}, - [2859] = {.lex_state = 624, .external_lex_state = 1}, - [2860] = {.lex_state = 624, .external_lex_state = 1}, - [2861] = {.lex_state = 624, .external_lex_state = 1}, - [2862] = {.lex_state = 662, .external_lex_state = 1}, - [2863] = {.lex_state = 420}, - [2864] = {.lex_state = 443}, - [2865] = {.lex_state = 420}, - [2866] = {.lex_state = 0}, - [2867] = {.lex_state = 624, .external_lex_state = 1}, - [2868] = {.lex_state = 595, .external_lex_state = 1}, - [2869] = {.lex_state = 655, .external_lex_state = 1}, - [2870] = {.lex_state = 473}, - [2871] = {.lex_state = 653, .external_lex_state = 1}, - [2872] = {.lex_state = 595, .external_lex_state = 1}, - [2873] = {.lex_state = 473}, - [2874] = {.lex_state = 473}, - [2875] = {.lex_state = 646, .external_lex_state = 1}, - [2876] = {.lex_state = 637}, - [2877] = {.lex_state = 473}, - [2878] = {.lex_state = 653, .external_lex_state = 1}, - [2879] = {.lex_state = 473}, - [2880] = {.lex_state = 476}, - [2881] = {.lex_state = 501}, - [2882] = {.lex_state = 501}, - [2883] = {.lex_state = 501}, + [2851] = {.lex_state = 473}, + [2852] = {.lex_state = 655, .external_lex_state = 1}, + [2853] = {.lex_state = 473}, + [2854] = {.lex_state = 473}, + [2855] = {.lex_state = 652, .external_lex_state = 1}, + [2856] = {.lex_state = 652, .external_lex_state = 1}, + [2857] = {.lex_state = 666, .external_lex_state = 1}, + [2858] = {.lex_state = 576, .external_lex_state = 1}, + [2859] = {.lex_state = 595, .external_lex_state = 1}, + [2860] = {.lex_state = 0}, + [2861] = {.lex_state = 595, .external_lex_state = 1}, + [2862] = {.lex_state = 501}, + [2863] = {.lex_state = 646, .external_lex_state = 1}, + [2864] = {.lex_state = 595, .external_lex_state = 1}, + [2865] = {.lex_state = 501}, + [2866] = {.lex_state = 647, .external_lex_state = 1}, + [2867] = {.lex_state = 666, .external_lex_state = 1}, + [2868] = {.lex_state = 473}, + [2869] = {.lex_state = 0}, + [2870] = {.lex_state = 666, .external_lex_state = 1}, + [2871] = {.lex_state = 666, .external_lex_state = 1}, + [2872] = {.lex_state = 0}, + [2873] = {.lex_state = 624, .external_lex_state = 1}, + [2874] = {.lex_state = 624, .external_lex_state = 1}, + [2875] = {.lex_state = 666, .external_lex_state = 1}, + [2876] = {.lex_state = 666, .external_lex_state = 1}, + [2877] = {.lex_state = 645, .external_lex_state = 1}, + [2878] = {.lex_state = 645, .external_lex_state = 1}, + [2879] = {.lex_state = 624, .external_lex_state = 1}, + [2880] = {.lex_state = 420}, + [2881] = {.lex_state = 473}, + [2882] = {.lex_state = 655, .external_lex_state = 1}, + [2883] = {.lex_state = 624, .external_lex_state = 1}, [2884] = {.lex_state = 624, .external_lex_state = 1}, - [2885] = {.lex_state = 420}, - [2886] = {.lex_state = 473}, - [2887] = {.lex_state = 501}, - [2888] = {.lex_state = 576, .external_lex_state = 1}, - [2889] = {.lex_state = 624, .external_lex_state = 1}, - [2890] = {.lex_state = 608}, - [2891] = {.lex_state = 608}, - [2892] = {.lex_state = 501}, - [2893] = {.lex_state = 501}, - [2894] = {.lex_state = 608}, - [2895] = {.lex_state = 420}, - [2896] = {.lex_state = 501}, - [2897] = {.lex_state = 501}, - [2898] = {.lex_state = 501}, - [2899] = {.lex_state = 501}, - [2900] = {.lex_state = 667, .external_lex_state = 1}, - [2901] = {.lex_state = 576, .external_lex_state = 1}, - [2902] = {.lex_state = 595, .external_lex_state = 1}, - [2903] = {.lex_state = 595, .external_lex_state = 1}, - [2904] = {.lex_state = 501}, - [2905] = {.lex_state = 646, .external_lex_state = 1}, - [2906] = {.lex_state = 595, .external_lex_state = 1}, - [2907] = {.lex_state = 501}, - [2908] = {.lex_state = 647, .external_lex_state = 1}, - [2909] = {.lex_state = 667, .external_lex_state = 1}, - [2910] = {.lex_state = 473}, - [2911] = {.lex_state = 0}, - [2912] = {.lex_state = 667, .external_lex_state = 1}, - [2913] = {.lex_state = 667, .external_lex_state = 1}, - [2914] = {.lex_state = 0}, - [2915] = {.lex_state = 624, .external_lex_state = 1}, - [2916] = {.lex_state = 624, .external_lex_state = 1}, - [2917] = {.lex_state = 667, .external_lex_state = 1}, - [2918] = {.lex_state = 652, .external_lex_state = 1}, - [2919] = {.lex_state = 652, .external_lex_state = 1}, - [2920] = {.lex_state = 624, .external_lex_state = 1}, - [2921] = {.lex_state = 420}, - [2922] = {.lex_state = 473}, - [2923] = {.lex_state = 655, .external_lex_state = 1}, - [2924] = {.lex_state = 624, .external_lex_state = 1}, - [2925] = {.lex_state = 666, .external_lex_state = 1}, - [2926] = {.lex_state = 473}, - [2927] = {.lex_state = 473}, - [2928] = {.lex_state = 646, .external_lex_state = 1}, - [2929] = {.lex_state = 443}, - [2930] = {.lex_state = 637}, - [2931] = {.lex_state = 666, .external_lex_state = 1}, - [2932] = {.lex_state = 424}, - [2933] = {.lex_state = 473}, - [2934] = {.lex_state = 0}, - [2935] = {.lex_state = 653, .external_lex_state = 1}, - [2936] = {.lex_state = 473}, - [2937] = {.lex_state = 476}, - [2938] = {.lex_state = 666, .external_lex_state = 1}, - [2939] = {.lex_state = 666, .external_lex_state = 1}, - [2940] = {.lex_state = 666, .external_lex_state = 1}, - [2941] = {.lex_state = 645, .external_lex_state = 1}, - [2942] = {.lex_state = 645, .external_lex_state = 1}, - [2943] = {.lex_state = 624, .external_lex_state = 1}, - [2944] = {.lex_state = 420}, - [2945] = {.lex_state = 473}, - [2946] = {.lex_state = 645, .external_lex_state = 1}, - [2947] = {.lex_state = 662, .external_lex_state = 1}, - [2948] = {.lex_state = 662, .external_lex_state = 1}, - [2949] = {.lex_state = 0}, - [2950] = {.lex_state = 420}, - [2951] = {.lex_state = 662, .external_lex_state = 1}, - [2952] = {.lex_state = 0}, - [2953] = {.lex_state = 662, .external_lex_state = 1}, - [2954] = {.lex_state = 473}, - [2955] = {.lex_state = 624, .external_lex_state = 1}, + [2885] = {.lex_state = 473}, + [2886] = {.lex_state = 624, .external_lex_state = 1}, + [2887] = {.lex_state = 662, .external_lex_state = 1}, + [2888] = {.lex_state = 420}, + [2889] = {.lex_state = 443}, + [2890] = {.lex_state = 420}, + [2891] = {.lex_state = 0}, + [2892] = {.lex_state = 624, .external_lex_state = 1}, + [2893] = {.lex_state = 595, .external_lex_state = 1}, + [2894] = {.lex_state = 655, .external_lex_state = 1}, + [2895] = {.lex_state = 473}, + [2896] = {.lex_state = 653, .external_lex_state = 1}, + [2897] = {.lex_state = 595, .external_lex_state = 1}, + [2898] = {.lex_state = 576, .external_lex_state = 1}, + [2899] = {.lex_state = 473}, + [2900] = {.lex_state = 595, .external_lex_state = 1}, + [2901] = {.lex_state = 473}, + [2902] = {.lex_state = 646, .external_lex_state = 1}, + [2903] = {.lex_state = 637}, + [2904] = {.lex_state = 473}, + [2905] = {.lex_state = 653, .external_lex_state = 1}, + [2906] = {.lex_state = 473}, + [2907] = {.lex_state = 476}, + [2908] = {.lex_state = 501}, + [2909] = {.lex_state = 624, .external_lex_state = 1}, + [2910] = {.lex_state = 501}, + [2911] = {.lex_state = 501}, + [2912] = {.lex_state = 624, .external_lex_state = 1}, + [2913] = {.lex_state = 420}, + [2914] = {.lex_state = 473}, + [2915] = {.lex_state = 501}, + [2916] = {.lex_state = 576, .external_lex_state = 1}, + [2917] = {.lex_state = 624, .external_lex_state = 1}, + [2918] = {.lex_state = 608}, + [2919] = {.lex_state = 608}, + [2920] = {.lex_state = 501}, + [2921] = {.lex_state = 501}, + [2922] = {.lex_state = 608}, + [2923] = {.lex_state = 420}, + [2924] = {.lex_state = 501}, + [2925] = {.lex_state = 501}, + [2926] = {.lex_state = 501}, + [2927] = {.lex_state = 501}, + [2928] = {.lex_state = 667, .external_lex_state = 1}, + [2929] = {.lex_state = 576, .external_lex_state = 1}, + [2930] = {.lex_state = 595, .external_lex_state = 1}, + [2931] = {.lex_state = 0}, + [2932] = {.lex_state = 595, .external_lex_state = 1}, + [2933] = {.lex_state = 501}, + [2934] = {.lex_state = 646, .external_lex_state = 1}, + [2935] = {.lex_state = 595, .external_lex_state = 1}, + [2936] = {.lex_state = 501}, + [2937] = {.lex_state = 647, .external_lex_state = 1}, + [2938] = {.lex_state = 667, .external_lex_state = 1}, + [2939] = {.lex_state = 473}, + [2940] = {.lex_state = 0}, + [2941] = {.lex_state = 667, .external_lex_state = 1}, + [2942] = {.lex_state = 667, .external_lex_state = 1}, + [2943] = {.lex_state = 0}, + [2944] = {.lex_state = 624, .external_lex_state = 1}, + [2945] = {.lex_state = 624, .external_lex_state = 1}, + [2946] = {.lex_state = 667, .external_lex_state = 1}, + [2947] = {.lex_state = 667, .external_lex_state = 1}, + [2948] = {.lex_state = 652, .external_lex_state = 1}, + [2949] = {.lex_state = 652, .external_lex_state = 1}, + [2950] = {.lex_state = 624, .external_lex_state = 1}, + [2951] = {.lex_state = 420}, + [2952] = {.lex_state = 473}, + [2953] = {.lex_state = 655, .external_lex_state = 1}, + [2954] = {.lex_state = 624, .external_lex_state = 1}, + [2955] = {.lex_state = 666, .external_lex_state = 1}, [2956] = {.lex_state = 473}, - [2957] = {.lex_state = 655, .external_lex_state = 1}, + [2957] = {.lex_state = 595, .external_lex_state = 1}, [2958] = {.lex_state = 473}, - [2959] = {.lex_state = 473}, - [2960] = {.lex_state = 624, .external_lex_state = 1}, - [2961] = {.lex_state = 624, .external_lex_state = 1}, - [2962] = {.lex_state = 624, .external_lex_state = 1}, - [2963] = {.lex_state = 655, .external_lex_state = 1}, + [2959] = {.lex_state = 646, .external_lex_state = 1}, + [2960] = {.lex_state = 443}, + [2961] = {.lex_state = 637}, + [2962] = {.lex_state = 666, .external_lex_state = 1}, + [2963] = {.lex_state = 424}, [2964] = {.lex_state = 473}, - [2965] = {.lex_state = 653, .external_lex_state = 1}, - [2966] = {.lex_state = 595, .external_lex_state = 1}, - [2967] = {.lex_state = 501}, - [2968] = {.lex_state = 624, .external_lex_state = 1}, - [2969] = {.lex_state = 420}, - [2970] = {.lex_state = 576, .external_lex_state = 1}, - [2971] = {.lex_state = 501}, - [2972] = {.lex_state = 501}, - [2973] = {.lex_state = 501}, - [2974] = {.lex_state = 501}, + [2965] = {.lex_state = 0}, + [2966] = {.lex_state = 653, .external_lex_state = 1}, + [2967] = {.lex_state = 473}, + [2968] = {.lex_state = 476}, + [2969] = {.lex_state = 666, .external_lex_state = 1}, + [2970] = {.lex_state = 666, .external_lex_state = 1}, + [2971] = {.lex_state = 666, .external_lex_state = 1}, + [2972] = {.lex_state = 645, .external_lex_state = 1}, + [2973] = {.lex_state = 624, .external_lex_state = 1}, + [2974] = {.lex_state = 645, .external_lex_state = 1}, [2975] = {.lex_state = 624, .external_lex_state = 1}, - [2976] = {.lex_state = 501}, - [2977] = {.lex_state = 501}, - [2978] = {.lex_state = 667, .external_lex_state = 1}, - [2979] = {.lex_state = 473}, - [2980] = {.lex_state = 473}, - [2981] = {.lex_state = 646, .external_lex_state = 1}, - [2982] = {.lex_state = 443}, - [2983] = {.lex_state = 637}, - [2984] = {.lex_state = 667, .external_lex_state = 1}, - [2985] = {.lex_state = 424}, - [2986] = {.lex_state = 473}, - [2987] = {.lex_state = 0}, - [2988] = {.lex_state = 653, .external_lex_state = 1}, + [2976] = {.lex_state = 420}, + [2977] = {.lex_state = 473}, + [2978] = {.lex_state = 645, .external_lex_state = 1}, + [2979] = {.lex_state = 662, .external_lex_state = 1}, + [2980] = {.lex_state = 624, .external_lex_state = 1}, + [2981] = {.lex_state = 662, .external_lex_state = 1}, + [2982] = {.lex_state = 0}, + [2983] = {.lex_state = 420}, + [2984] = {.lex_state = 662, .external_lex_state = 1}, + [2985] = {.lex_state = 0}, + [2986] = {.lex_state = 662, .external_lex_state = 1}, + [2987] = {.lex_state = 473}, + [2988] = {.lex_state = 624, .external_lex_state = 1}, [2989] = {.lex_state = 473}, - [2990] = {.lex_state = 476}, - [2991] = {.lex_state = 667, .external_lex_state = 1}, - [2992] = {.lex_state = 667, .external_lex_state = 1}, - [2993] = {.lex_state = 667, .external_lex_state = 1}, - [2994] = {.lex_state = 652, .external_lex_state = 1}, - [2995] = {.lex_state = 652, .external_lex_state = 1}, + [2990] = {.lex_state = 655, .external_lex_state = 1}, + [2991] = {.lex_state = 473}, + [2992] = {.lex_state = 473}, + [2993] = {.lex_state = 624, .external_lex_state = 1}, + [2994] = {.lex_state = 473}, + [2995] = {.lex_state = 624, .external_lex_state = 1}, [2996] = {.lex_state = 624, .external_lex_state = 1}, - [2997] = {.lex_state = 420}, + [2997] = {.lex_state = 655, .external_lex_state = 1}, [2998] = {.lex_state = 473}, - [2999] = {.lex_state = 652, .external_lex_state = 1}, - [3000] = {.lex_state = 624, .external_lex_state = 1}, - [3001] = {.lex_state = 624, .external_lex_state = 1}, - [3002] = {.lex_state = 666, .external_lex_state = 1}, - [3003] = {.lex_state = 420}, - [3004] = {.lex_state = 443}, - [3005] = {.lex_state = 420}, - [3006] = {.lex_state = 0}, - [3007] = {.lex_state = 624, .external_lex_state = 1}, - [3008] = {.lex_state = 595, .external_lex_state = 1}, - [3009] = {.lex_state = 655, .external_lex_state = 1}, - [3010] = {.lex_state = 473}, - [3011] = {.lex_state = 653, .external_lex_state = 1}, - [3012] = {.lex_state = 595, .external_lex_state = 1}, - [3013] = {.lex_state = 645, .external_lex_state = 1}, - [3014] = {.lex_state = 624, .external_lex_state = 1}, - [3015] = {.lex_state = 420}, - [3016] = {.lex_state = 624, .external_lex_state = 1}, - [3017] = {.lex_state = 662, .external_lex_state = 1}, - [3018] = {.lex_state = 0}, - [3019] = {.lex_state = 662, .external_lex_state = 1}, - [3020] = {.lex_state = 662, .external_lex_state = 1}, - [3021] = {.lex_state = 662, .external_lex_state = 1}, - [3022] = {.lex_state = 624, .external_lex_state = 1}, - [3023] = {.lex_state = 420}, - [3024] = {.lex_state = 473}, - [3025] = {.lex_state = 655, .external_lex_state = 1}, - [3026] = {.lex_state = 624, .external_lex_state = 1}, - [3027] = {.lex_state = 501}, - [3028] = {.lex_state = 624, .external_lex_state = 1}, - [3029] = {.lex_state = 473}, - [3030] = {.lex_state = 655, .external_lex_state = 1}, - [3031] = {.lex_state = 473}, - [3032] = {.lex_state = 473}, - [3033] = {.lex_state = 501}, - [3034] = {.lex_state = 624, .external_lex_state = 1}, - [3035] = {.lex_state = 501}, - [3036] = {.lex_state = 501}, - [3037] = {.lex_state = 576, .external_lex_state = 1}, - [3038] = {.lex_state = 624, .external_lex_state = 1}, + [2999] = {.lex_state = 653, .external_lex_state = 1}, + [3000] = {.lex_state = 595, .external_lex_state = 1}, + [3001] = {.lex_state = 501}, + [3002] = {.lex_state = 501}, + [3003] = {.lex_state = 624, .external_lex_state = 1}, + [3004] = {.lex_state = 420}, + [3005] = {.lex_state = 576, .external_lex_state = 1}, + [3006] = {.lex_state = 501}, + [3007] = {.lex_state = 501}, + [3008] = {.lex_state = 501}, + [3009] = {.lex_state = 501}, + [3010] = {.lex_state = 624, .external_lex_state = 1}, + [3011] = {.lex_state = 501}, + [3012] = {.lex_state = 501}, + [3013] = {.lex_state = 667, .external_lex_state = 1}, + [3014] = {.lex_state = 473}, + [3015] = {.lex_state = 595, .external_lex_state = 1}, + [3016] = {.lex_state = 473}, + [3017] = {.lex_state = 646, .external_lex_state = 1}, + [3018] = {.lex_state = 443}, + [3019] = {.lex_state = 637}, + [3020] = {.lex_state = 667, .external_lex_state = 1}, + [3021] = {.lex_state = 424}, + [3022] = {.lex_state = 473}, + [3023] = {.lex_state = 0}, + [3024] = {.lex_state = 653, .external_lex_state = 1}, + [3025] = {.lex_state = 473}, + [3026] = {.lex_state = 476}, + [3027] = {.lex_state = 667, .external_lex_state = 1}, + [3028] = {.lex_state = 667, .external_lex_state = 1}, + [3029] = {.lex_state = 667, .external_lex_state = 1}, + [3030] = {.lex_state = 652, .external_lex_state = 1}, + [3031] = {.lex_state = 624, .external_lex_state = 1}, + [3032] = {.lex_state = 652, .external_lex_state = 1}, + [3033] = {.lex_state = 624, .external_lex_state = 1}, + [3034] = {.lex_state = 420}, + [3035] = {.lex_state = 473}, + [3036] = {.lex_state = 652, .external_lex_state = 1}, + [3037] = {.lex_state = 624, .external_lex_state = 1}, + [3038] = {.lex_state = 473}, [3039] = {.lex_state = 624, .external_lex_state = 1}, - [3040] = {.lex_state = 667, .external_lex_state = 1}, + [3040] = {.lex_state = 666, .external_lex_state = 1}, [3041] = {.lex_state = 420}, [3042] = {.lex_state = 443}, [3043] = {.lex_state = 420}, @@ -14880,115 +14880,170 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3048] = {.lex_state = 473}, [3049] = {.lex_state = 653, .external_lex_state = 1}, [3050] = {.lex_state = 595, .external_lex_state = 1}, - [3051] = {.lex_state = 652, .external_lex_state = 1}, - [3052] = {.lex_state = 624, .external_lex_state = 1}, - [3053] = {.lex_state = 420}, - [3054] = {.lex_state = 666, .external_lex_state = 1}, - [3055] = {.lex_state = 666, .external_lex_state = 1}, - [3056] = {.lex_state = 0}, - [3057] = {.lex_state = 420}, - [3058] = {.lex_state = 666, .external_lex_state = 1}, - [3059] = {.lex_state = 0}, - [3060] = {.lex_state = 666, .external_lex_state = 1}, - [3061] = {.lex_state = 473}, + [3051] = {.lex_state = 645, .external_lex_state = 1}, + [3052] = {.lex_state = 645, .external_lex_state = 1}, + [3053] = {.lex_state = 624, .external_lex_state = 1}, + [3054] = {.lex_state = 420}, + [3055] = {.lex_state = 624, .external_lex_state = 1}, + [3056] = {.lex_state = 662, .external_lex_state = 1}, + [3057] = {.lex_state = 662, .external_lex_state = 1}, + [3058] = {.lex_state = 0}, + [3059] = {.lex_state = 662, .external_lex_state = 1}, + [3060] = {.lex_state = 662, .external_lex_state = 1}, + [3061] = {.lex_state = 662, .external_lex_state = 1}, [3062] = {.lex_state = 624, .external_lex_state = 1}, - [3063] = {.lex_state = 473}, - [3064] = {.lex_state = 655, .external_lex_state = 1}, - [3065] = {.lex_state = 473}, - [3066] = {.lex_state = 473}, - [3067] = {.lex_state = 645, .external_lex_state = 1}, + [3063] = {.lex_state = 420}, + [3064] = {.lex_state = 473}, + [3065] = {.lex_state = 655, .external_lex_state = 1}, + [3066] = {.lex_state = 624, .external_lex_state = 1}, + [3067] = {.lex_state = 501}, [3068] = {.lex_state = 624, .external_lex_state = 1}, - [3069] = {.lex_state = 662, .external_lex_state = 1}, - [3070] = {.lex_state = 662, .external_lex_state = 1}, - [3071] = {.lex_state = 662, .external_lex_state = 1}, - [3072] = {.lex_state = 624, .external_lex_state = 1}, - [3073] = {.lex_state = 420}, - [3074] = {.lex_state = 473}, - [3075] = {.lex_state = 662, .external_lex_state = 1}, - [3076] = {.lex_state = 624, .external_lex_state = 1}, - [3077] = {.lex_state = 624, .external_lex_state = 1}, - [3078] = {.lex_state = 420}, - [3079] = {.lex_state = 473}, - [3080] = {.lex_state = 655, .external_lex_state = 1}, + [3069] = {.lex_state = 624, .external_lex_state = 1}, + [3070] = {.lex_state = 473}, + [3071] = {.lex_state = 655, .external_lex_state = 1}, + [3072] = {.lex_state = 473}, + [3073] = {.lex_state = 473}, + [3074] = {.lex_state = 501}, + [3075] = {.lex_state = 624, .external_lex_state = 1}, + [3076] = {.lex_state = 501}, + [3077] = {.lex_state = 501}, + [3078] = {.lex_state = 576, .external_lex_state = 1}, + [3079] = {.lex_state = 624, .external_lex_state = 1}, + [3080] = {.lex_state = 473}, [3081] = {.lex_state = 624, .external_lex_state = 1}, - [3082] = {.lex_state = 501}, - [3083] = {.lex_state = 667, .external_lex_state = 1}, - [3084] = {.lex_state = 667, .external_lex_state = 1}, - [3085] = {.lex_state = 0}, - [3086] = {.lex_state = 420}, - [3087] = {.lex_state = 667, .external_lex_state = 1}, - [3088] = {.lex_state = 0}, - [3089] = {.lex_state = 667, .external_lex_state = 1}, + [3082] = {.lex_state = 667, .external_lex_state = 1}, + [3083] = {.lex_state = 420}, + [3084] = {.lex_state = 443}, + [3085] = {.lex_state = 420}, + [3086] = {.lex_state = 0}, + [3087] = {.lex_state = 624, .external_lex_state = 1}, + [3088] = {.lex_state = 595, .external_lex_state = 1}, + [3089] = {.lex_state = 655, .external_lex_state = 1}, [3090] = {.lex_state = 473}, - [3091] = {.lex_state = 624, .external_lex_state = 1}, - [3092] = {.lex_state = 473}, - [3093] = {.lex_state = 655, .external_lex_state = 1}, - [3094] = {.lex_state = 473}, - [3095] = {.lex_state = 473}, - [3096] = {.lex_state = 652, .external_lex_state = 1}, - [3097] = {.lex_state = 624, .external_lex_state = 1}, + [3091] = {.lex_state = 653, .external_lex_state = 1}, + [3092] = {.lex_state = 595, .external_lex_state = 1}, + [3093] = {.lex_state = 652, .external_lex_state = 1}, + [3094] = {.lex_state = 652, .external_lex_state = 1}, + [3095] = {.lex_state = 624, .external_lex_state = 1}, + [3096] = {.lex_state = 420}, + [3097] = {.lex_state = 666, .external_lex_state = 1}, [3098] = {.lex_state = 624, .external_lex_state = 1}, [3099] = {.lex_state = 666, .external_lex_state = 1}, [3100] = {.lex_state = 0}, - [3101] = {.lex_state = 666, .external_lex_state = 1}, + [3101] = {.lex_state = 420}, [3102] = {.lex_state = 666, .external_lex_state = 1}, - [3103] = {.lex_state = 666, .external_lex_state = 1}, - [3104] = {.lex_state = 624, .external_lex_state = 1}, - [3105] = {.lex_state = 420}, - [3106] = {.lex_state = 473}, - [3107] = {.lex_state = 655, .external_lex_state = 1}, - [3108] = {.lex_state = 624, .external_lex_state = 1}, - [3109] = {.lex_state = 645, .external_lex_state = 1}, - [3110] = {.lex_state = 662, .external_lex_state = 1}, - [3111] = {.lex_state = 624, .external_lex_state = 1}, - [3112] = {.lex_state = 420}, - [3113] = {.lex_state = 624, .external_lex_state = 1}, - [3114] = {.lex_state = 420}, - [3115] = {.lex_state = 473}, - [3116] = {.lex_state = 624, .external_lex_state = 1}, - [3117] = {.lex_state = 667, .external_lex_state = 1}, - [3118] = {.lex_state = 0}, - [3119] = {.lex_state = 667, .external_lex_state = 1}, - [3120] = {.lex_state = 667, .external_lex_state = 1}, - [3121] = {.lex_state = 667, .external_lex_state = 1}, - [3122] = {.lex_state = 624, .external_lex_state = 1}, - [3123] = {.lex_state = 420}, - [3124] = {.lex_state = 473}, - [3125] = {.lex_state = 655, .external_lex_state = 1}, - [3126] = {.lex_state = 624, .external_lex_state = 1}, - [3127] = {.lex_state = 652, .external_lex_state = 1}, - [3128] = {.lex_state = 666, .external_lex_state = 1}, - [3129] = {.lex_state = 666, .external_lex_state = 1}, - [3130] = {.lex_state = 666, .external_lex_state = 1}, - [3131] = {.lex_state = 624, .external_lex_state = 1}, - [3132] = {.lex_state = 420}, - [3133] = {.lex_state = 473}, - [3134] = {.lex_state = 666, .external_lex_state = 1}, - [3135] = {.lex_state = 662, .external_lex_state = 1}, - [3136] = {.lex_state = 624, .external_lex_state = 1}, - [3137] = {.lex_state = 624, .external_lex_state = 1}, - [3138] = {.lex_state = 420}, - [3139] = {.lex_state = 667, .external_lex_state = 1}, - [3140] = {.lex_state = 667, .external_lex_state = 1}, - [3141] = {.lex_state = 667, .external_lex_state = 1}, - [3142] = {.lex_state = 624, .external_lex_state = 1}, - [3143] = {.lex_state = 420}, - [3144] = {.lex_state = 473}, - [3145] = {.lex_state = 667, .external_lex_state = 1}, + [3103] = {.lex_state = 0}, + [3104] = {.lex_state = 666, .external_lex_state = 1}, + [3105] = {.lex_state = 473}, + [3106] = {.lex_state = 624, .external_lex_state = 1}, + [3107] = {.lex_state = 473}, + [3108] = {.lex_state = 655, .external_lex_state = 1}, + [3109] = {.lex_state = 473}, + [3110] = {.lex_state = 473}, + [3111] = {.lex_state = 645, .external_lex_state = 1}, + [3112] = {.lex_state = 624, .external_lex_state = 1}, + [3113] = {.lex_state = 662, .external_lex_state = 1}, + [3114] = {.lex_state = 624, .external_lex_state = 1}, + [3115] = {.lex_state = 662, .external_lex_state = 1}, + [3116] = {.lex_state = 662, .external_lex_state = 1}, + [3117] = {.lex_state = 624, .external_lex_state = 1}, + [3118] = {.lex_state = 420}, + [3119] = {.lex_state = 473}, + [3120] = {.lex_state = 662, .external_lex_state = 1}, + [3121] = {.lex_state = 624, .external_lex_state = 1}, + [3122] = {.lex_state = 501}, + [3123] = {.lex_state = 624, .external_lex_state = 1}, + [3124] = {.lex_state = 420}, + [3125] = {.lex_state = 473}, + [3126] = {.lex_state = 655, .external_lex_state = 1}, + [3127] = {.lex_state = 624, .external_lex_state = 1}, + [3128] = {.lex_state = 501}, + [3129] = {.lex_state = 667, .external_lex_state = 1}, + [3130] = {.lex_state = 624, .external_lex_state = 1}, + [3131] = {.lex_state = 667, .external_lex_state = 1}, + [3132] = {.lex_state = 0}, + [3133] = {.lex_state = 420}, + [3134] = {.lex_state = 667, .external_lex_state = 1}, + [3135] = {.lex_state = 0}, + [3136] = {.lex_state = 667, .external_lex_state = 1}, + [3137] = {.lex_state = 473}, + [3138] = {.lex_state = 624, .external_lex_state = 1}, + [3139] = {.lex_state = 473}, + [3140] = {.lex_state = 655, .external_lex_state = 1}, + [3141] = {.lex_state = 473}, + [3142] = {.lex_state = 473}, + [3143] = {.lex_state = 652, .external_lex_state = 1}, + [3144] = {.lex_state = 624, .external_lex_state = 1}, + [3145] = {.lex_state = 624, .external_lex_state = 1}, [3146] = {.lex_state = 666, .external_lex_state = 1}, - [3147] = {.lex_state = 624, .external_lex_state = 1}, - [3148] = {.lex_state = 420}, - [3149] = {.lex_state = 662, .external_lex_state = 1}, - [3150] = {.lex_state = 624, .external_lex_state = 1}, - [3151] = {.lex_state = 667, .external_lex_state = 1}, + [3147] = {.lex_state = 666, .external_lex_state = 1}, + [3148] = {.lex_state = 0}, + [3149] = {.lex_state = 666, .external_lex_state = 1}, + [3150] = {.lex_state = 666, .external_lex_state = 1}, + [3151] = {.lex_state = 666, .external_lex_state = 1}, [3152] = {.lex_state = 624, .external_lex_state = 1}, [3153] = {.lex_state = 420}, - [3154] = {.lex_state = 666, .external_lex_state = 1}, - [3155] = {.lex_state = 624, .external_lex_state = 1}, - [3156] = {.lex_state = 667, .external_lex_state = 1}, - [3157] = {.lex_state = 624, .external_lex_state = 1}, - [3158] = {.lex_state = 666, .external_lex_state = 1}, - [3159] = {.lex_state = 667, .external_lex_state = 1}, + [3154] = {.lex_state = 473}, + [3155] = {.lex_state = 655, .external_lex_state = 1}, + [3156] = {.lex_state = 624, .external_lex_state = 1}, + [3157] = {.lex_state = 645, .external_lex_state = 1}, + [3158] = {.lex_state = 662, .external_lex_state = 1}, + [3159] = {.lex_state = 662, .external_lex_state = 1}, + [3160] = {.lex_state = 624, .external_lex_state = 1}, + [3161] = {.lex_state = 420}, + [3162] = {.lex_state = 624, .external_lex_state = 1}, + [3163] = {.lex_state = 624, .external_lex_state = 1}, + [3164] = {.lex_state = 420}, + [3165] = {.lex_state = 473}, + [3166] = {.lex_state = 624, .external_lex_state = 1}, + [3167] = {.lex_state = 667, .external_lex_state = 1}, + [3168] = {.lex_state = 667, .external_lex_state = 1}, + [3169] = {.lex_state = 0}, + [3170] = {.lex_state = 667, .external_lex_state = 1}, + [3171] = {.lex_state = 667, .external_lex_state = 1}, + [3172] = {.lex_state = 667, .external_lex_state = 1}, + [3173] = {.lex_state = 624, .external_lex_state = 1}, + [3174] = {.lex_state = 420}, + [3175] = {.lex_state = 473}, + [3176] = {.lex_state = 655, .external_lex_state = 1}, + [3177] = {.lex_state = 624, .external_lex_state = 1}, + [3178] = {.lex_state = 652, .external_lex_state = 1}, + [3179] = {.lex_state = 666, .external_lex_state = 1}, + [3180] = {.lex_state = 624, .external_lex_state = 1}, + [3181] = {.lex_state = 666, .external_lex_state = 1}, + [3182] = {.lex_state = 666, .external_lex_state = 1}, + [3183] = {.lex_state = 624, .external_lex_state = 1}, + [3184] = {.lex_state = 420}, + [3185] = {.lex_state = 473}, + [3186] = {.lex_state = 666, .external_lex_state = 1}, + [3187] = {.lex_state = 662, .external_lex_state = 1}, + [3188] = {.lex_state = 624, .external_lex_state = 1}, + [3189] = {.lex_state = 624, .external_lex_state = 1}, + [3190] = {.lex_state = 420}, + [3191] = {.lex_state = 667, .external_lex_state = 1}, + [3192] = {.lex_state = 624, .external_lex_state = 1}, + [3193] = {.lex_state = 667, .external_lex_state = 1}, + [3194] = {.lex_state = 667, .external_lex_state = 1}, + [3195] = {.lex_state = 624, .external_lex_state = 1}, + [3196] = {.lex_state = 420}, + [3197] = {.lex_state = 473}, + [3198] = {.lex_state = 667, .external_lex_state = 1}, + [3199] = {.lex_state = 666, .external_lex_state = 1}, + [3200] = {.lex_state = 666, .external_lex_state = 1}, + [3201] = {.lex_state = 624, .external_lex_state = 1}, + [3202] = {.lex_state = 420}, + [3203] = {.lex_state = 662, .external_lex_state = 1}, + [3204] = {.lex_state = 624, .external_lex_state = 1}, + [3205] = {.lex_state = 667, .external_lex_state = 1}, + [3206] = {.lex_state = 667, .external_lex_state = 1}, + [3207] = {.lex_state = 624, .external_lex_state = 1}, + [3208] = {.lex_state = 420}, + [3209] = {.lex_state = 666, .external_lex_state = 1}, + [3210] = {.lex_state = 624, .external_lex_state = 1}, + [3211] = {.lex_state = 667, .external_lex_state = 1}, + [3212] = {.lex_state = 624, .external_lex_state = 1}, + [3213] = {.lex_state = 666, .external_lex_state = 1}, + [3214] = {.lex_state = 667, .external_lex_state = 1}, }; enum { @@ -24905,133 +24960,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [391] = { [anon_sym_LPAREN] = ACTIONS(1626), + [anon_sym_constexpr] = ACTIONS(1628), [sym_comment] = ACTIONS(49), }, [392] = { - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_LPAREN] = ACTIONS(1630), [sym_comment] = ACTIONS(49), }, [393] = { - [sym__expression] = STATE(853), - [sym_conditional_expression] = STATE(853), - [sym_assignment_expression] = STATE(853), - [sym_pointer_expression] = STATE(853), - [sym_logical_expression] = STATE(853), - [sym_bitwise_expression] = STATE(853), - [sym_equality_expression] = STATE(853), - [sym_relational_expression] = STATE(853), - [sym_shift_expression] = STATE(853), - [sym_math_expression] = STATE(853), - [sym_cast_expression] = STATE(853), - [sym_sizeof_expression] = STATE(853), - [sym_subscript_expression] = STATE(853), - [sym_call_expression] = STATE(853), - [sym_field_expression] = STATE(853), - [sym_compound_literal_expression] = STATE(853), - [sym_parenthesized_expression] = STATE(853), - [sym_concatenated_string] = STATE(853), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(853), - [sym_new_expression] = STATE(853), - [sym_delete_expression] = STATE(853), - [sym_lambda_expression] = STATE(853), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1630), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(1630), - [sym_char_literal] = ACTIONS(1630), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(1648), - [sym_false] = ACTIONS(1648), - [sym_null] = ACTIONS(1648), + [sym__expression] = STATE(854), + [sym_conditional_expression] = STATE(854), + [sym_assignment_expression] = STATE(854), + [sym_pointer_expression] = STATE(854), + [sym_logical_expression] = STATE(854), + [sym_bitwise_expression] = STATE(854), + [sym_equality_expression] = STATE(854), + [sym_relational_expression] = STATE(854), + [sym_shift_expression] = STATE(854), + [sym_math_expression] = STATE(854), + [sym_cast_expression] = STATE(854), + [sym_sizeof_expression] = STATE(854), + [sym_subscript_expression] = STATE(854), + [sym_call_expression] = STATE(854), + [sym_field_expression] = STATE(854), + [sym_compound_literal_expression] = STATE(854), + [sym_parenthesized_expression] = STATE(854), + [sym_concatenated_string] = STATE(854), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(854), + [sym_new_expression] = STATE(854), + [sym_delete_expression] = STATE(854), + [sym_lambda_expression] = STATE(854), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1632), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(1632), + [sym_char_literal] = ACTIONS(1632), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(1650), + [sym_false] = ACTIONS(1650), + [sym_null] = ACTIONS(1650), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(1648), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(1650), }, [394] = { - [anon_sym_COLON] = ACTIONS(1654), + [anon_sym_COLON] = ACTIONS(1656), [sym_comment] = ACTIONS(49), }, [395] = { - [anon_sym_LPAREN] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1658), [sym_comment] = ACTIONS(49), }, [396] = { - [sym_compound_statement] = STATE(871), - [sym_labeled_statement] = STATE(871), - [sym_expression_statement] = STATE(871), - [sym_if_statement] = STATE(871), - [sym_switch_statement] = STATE(871), - [sym_case_statement] = STATE(871), - [sym_while_statement] = STATE(871), - [sym_do_statement] = STATE(871), - [sym_for_statement] = STATE(871), - [sym_return_statement] = STATE(871), - [sym_break_statement] = STATE(871), - [sym_continue_statement] = STATE(871), - [sym_goto_statement] = STATE(871), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(871), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_compound_statement] = STATE(872), + [sym_labeled_statement] = STATE(872), + [sym_expression_statement] = STATE(872), + [sym_if_statement] = STATE(872), + [sym_switch_statement] = STATE(872), + [sym_case_statement] = STATE(872), + [sym_while_statement] = STATE(872), + [sym_do_statement] = STATE(872), + [sym_for_statement] = STATE(872), + [sym_return_statement] = STATE(872), + [sym_break_statement] = STATE(872), + [sym_continue_statement] = STATE(872), + [sym_goto_statement] = STATE(872), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(872), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -25040,55 +25096,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, [397] = { - [anon_sym_LPAREN] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1692), [sym_comment] = ACTIONS(49), }, [398] = { - [sym__expression] = STATE(876), - [sym_conditional_expression] = STATE(876), - [sym_assignment_expression] = STATE(876), - [sym_pointer_expression] = STATE(876), - [sym_logical_expression] = STATE(876), - [sym_bitwise_expression] = STATE(876), - [sym_equality_expression] = STATE(876), - [sym_relational_expression] = STATE(876), - [sym_shift_expression] = STATE(876), - [sym_math_expression] = STATE(876), - [sym_cast_expression] = STATE(876), - [sym_sizeof_expression] = STATE(876), - [sym_subscript_expression] = STATE(876), - [sym_call_expression] = STATE(876), - [sym_field_expression] = STATE(876), - [sym_compound_literal_expression] = STATE(876), - [sym_parenthesized_expression] = STATE(876), - [sym_initializer_list] = STATE(877), - [sym_concatenated_string] = STATE(876), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(876), - [sym_new_expression] = STATE(876), - [sym_delete_expression] = STATE(876), - [sym_lambda_expression] = STATE(876), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1692), + [sym__expression] = STATE(877), + [sym_conditional_expression] = STATE(877), + [sym_assignment_expression] = STATE(877), + [sym_pointer_expression] = STATE(877), + [sym_logical_expression] = STATE(877), + [sym_bitwise_expression] = STATE(877), + [sym_equality_expression] = STATE(877), + [sym_relational_expression] = STATE(877), + [sym_shift_expression] = STATE(877), + [sym_math_expression] = STATE(877), + [sym_cast_expression] = STATE(877), + [sym_sizeof_expression] = STATE(877), + [sym_subscript_expression] = STATE(877), + [sym_call_expression] = STATE(877), + [sym_field_expression] = STATE(877), + [sym_compound_literal_expression] = STATE(877), + [sym_parenthesized_expression] = STATE(877), + [sym_initializer_list] = STATE(878), + [sym_concatenated_string] = STATE(877), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(877), + [sym_new_expression] = STATE(877), + [sym_delete_expression] = STATE(877), + [sym_lambda_expression] = STATE(877), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1694), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(1694), + [anon_sym_SEMI] = ACTIONS(1696), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -25100,29 +25156,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(1692), - [sym_char_literal] = ACTIONS(1692), + [sym_number_literal] = ACTIONS(1694), + [sym_char_literal] = ACTIONS(1694), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(1696), - [sym_false] = ACTIONS(1696), - [sym_null] = ACTIONS(1696), + [sym_true] = ACTIONS(1698), + [sym_false] = ACTIONS(1698), + [sym_null] = ACTIONS(1698), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(1696), + [sym_nullptr] = ACTIONS(1698), }, [399] = { - [anon_sym_SEMI] = ACTIONS(1698), + [anon_sym_SEMI] = ACTIONS(1700), [sym_comment] = ACTIONS(49), }, [400] = { - [anon_sym_SEMI] = ACTIONS(1700), + [anon_sym_SEMI] = ACTIONS(1702), [sym_comment] = ACTIONS(49), }, [401] = { - [sym_identifier] = ACTIONS(1702), + [sym_identifier] = ACTIONS(1704), [sym_comment] = ACTIONS(49), }, [402] = { @@ -25285,35 +25341,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1469), }, [405] = { - [sym__expression] = STATE(882), - [sym_conditional_expression] = STATE(882), - [sym_assignment_expression] = STATE(882), - [sym_pointer_expression] = STATE(882), - [sym_logical_expression] = STATE(882), - [sym_bitwise_expression] = STATE(882), - [sym_equality_expression] = STATE(882), - [sym_relational_expression] = STATE(882), - [sym_shift_expression] = STATE(882), - [sym_math_expression] = STATE(882), - [sym_cast_expression] = STATE(882), - [sym_sizeof_expression] = STATE(882), - [sym_subscript_expression] = STATE(882), - [sym_call_expression] = STATE(882), - [sym_field_expression] = STATE(882), - [sym_compound_literal_expression] = STATE(882), - [sym_parenthesized_expression] = STATE(882), - [sym_concatenated_string] = STATE(882), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(882), - [sym_new_expression] = STATE(882), - [sym_delete_expression] = STATE(882), - [sym_lambda_expression] = STATE(882), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), + [sym__expression] = STATE(883), + [sym_conditional_expression] = STATE(883), + [sym_assignment_expression] = STATE(883), + [sym_pointer_expression] = STATE(883), + [sym_logical_expression] = STATE(883), + [sym_bitwise_expression] = STATE(883), + [sym_equality_expression] = STATE(883), + [sym_relational_expression] = STATE(883), + [sym_shift_expression] = STATE(883), + [sym_math_expression] = STATE(883), + [sym_cast_expression] = STATE(883), + [sym_sizeof_expression] = STATE(883), + [sym_subscript_expression] = STATE(883), + [sym_call_expression] = STATE(883), + [sym_field_expression] = STATE(883), + [sym_compound_literal_expression] = STATE(883), + [sym_parenthesized_expression] = STATE(883), + [sym_concatenated_string] = STATE(883), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(883), + [sym_new_expression] = STATE(883), + [sym_delete_expression] = STATE(883), + [sym_lambda_expression] = STATE(883), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1708), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(644), @@ -25324,21 +25380,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1704), - [sym_char_literal] = ACTIONS(1704), + [sym_number_literal] = ACTIONS(1706), + [sym_char_literal] = ACTIONS(1706), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1708), - [sym_false] = ACTIONS(1708), - [sym_null] = ACTIONS(1708), + [sym_true] = ACTIONS(1710), + [sym_false] = ACTIONS(1710), + [sym_null] = ACTIONS(1710), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1708), + [sym_nullptr] = ACTIONS(1710), }, [406] = { - [aux_sym_concatenated_string_repeat1] = STATE(883), + [aux_sym_concatenated_string_repeat1] = STATE(884), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -25377,12 +25433,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(1710), + [sym_string_literal] = ACTIONS(1712), [sym_comment] = ACTIONS(49), }, [407] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(886), + [sym_template_argument_list] = STATE(887), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1483), @@ -25402,7 +25458,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(1712), + [anon_sym_COLON] = ACTIONS(1714), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -25438,49 +25494,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1716), [sym_operator_name] = ACTIONS(142), }, [408] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1720), [sym_operator_name] = ACTIONS(190), }, [409] = { - [sym__expression] = STATE(890), - [sym_conditional_expression] = STATE(890), - [sym_assignment_expression] = STATE(890), - [sym_pointer_expression] = STATE(890), - [sym_logical_expression] = STATE(890), - [sym_bitwise_expression] = STATE(890), - [sym_equality_expression] = STATE(890), - [sym_relational_expression] = STATE(890), - [sym_shift_expression] = STATE(890), - [sym_math_expression] = STATE(890), - [sym_cast_expression] = STATE(890), - [sym_sizeof_expression] = STATE(890), - [sym_subscript_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_field_expression] = STATE(890), - [sym_compound_literal_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_concatenated_string] = STATE(890), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(890), - [sym_new_expression] = STATE(890), - [sym_delete_expression] = STATE(890), - [sym_lambda_expression] = STATE(890), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1720), + [sym__expression] = STATE(891), + [sym_conditional_expression] = STATE(891), + [sym_assignment_expression] = STATE(891), + [sym_pointer_expression] = STATE(891), + [sym_logical_expression] = STATE(891), + [sym_bitwise_expression] = STATE(891), + [sym_equality_expression] = STATE(891), + [sym_relational_expression] = STATE(891), + [sym_shift_expression] = STATE(891), + [sym_math_expression] = STATE(891), + [sym_cast_expression] = STATE(891), + [sym_sizeof_expression] = STATE(891), + [sym_subscript_expression] = STATE(891), + [sym_call_expression] = STATE(891), + [sym_field_expression] = STATE(891), + [sym_compound_literal_expression] = STATE(891), + [sym_parenthesized_expression] = STATE(891), + [sym_concatenated_string] = STATE(891), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(891), + [sym_new_expression] = STATE(891), + [sym_delete_expression] = STATE(891), + [sym_lambda_expression] = STATE(891), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1722), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1724), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -25489,172 +25545,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1720), - [sym_char_literal] = ACTIONS(1720), + [sym_number_literal] = ACTIONS(1722), + [sym_char_literal] = ACTIONS(1722), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1724), - [sym_false] = ACTIONS(1724), - [sym_null] = ACTIONS(1724), + [sym_true] = ACTIONS(1726), + [sym_false] = ACTIONS(1726), + [sym_null] = ACTIONS(1726), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1724), + [sym_nullptr] = ACTIONS(1726), }, [410] = { - [sym_raw_string_literal] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1728), - [sym_preproc_directive] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_typedef] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_RBRACE] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_register] = ACTIONS(1728), - [anon_sym_inline] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_restrict] = ACTIONS(1728), - [anon_sym_volatile] = ACTIONS(1728), - [anon_sym__Atomic] = ACTIONS(1728), - [anon_sym_mutable] = ACTIONS(1728), - [anon_sym_explicit] = ACTIONS(1728), - [anon_sym_constexpr] = ACTIONS(1728), - [anon_sym_unsigned] = ACTIONS(1728), - [anon_sym_long] = ACTIONS(1728), - [anon_sym_short] = ACTIONS(1728), - [sym_primitive_type] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_goto] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_sizeof] = ACTIONS(1728), - [sym_number_literal] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [sym_string_literal] = ACTIONS(1726), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [sym_null] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1728), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1728), - [sym_auto] = ACTIONS(1728), - [anon_sym_typename] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_delete] = ACTIONS(1728), - [sym_nullptr] = ACTIONS(1728), + [sym_raw_string_literal] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1730), + [sym_preproc_directive] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_restrict] = ACTIONS(1730), + [anon_sym_volatile] = ACTIONS(1730), + [anon_sym__Atomic] = ACTIONS(1730), + [anon_sym_mutable] = ACTIONS(1730), + [anon_sym_explicit] = ACTIONS(1730), + [anon_sym_constexpr] = ACTIONS(1730), + [anon_sym_unsigned] = ACTIONS(1730), + [anon_sym_long] = ACTIONS(1730), + [anon_sym_short] = ACTIONS(1730), + [sym_primitive_type] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_goto] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_sizeof] = ACTIONS(1730), + [sym_number_literal] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [sym_string_literal] = ACTIONS(1728), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [sym_null] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1730), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1730), + [sym_auto] = ACTIONS(1730), + [anon_sym_typename] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1730), + [sym_nullptr] = ACTIONS(1730), }, [411] = { - [sym_raw_string_literal] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1732), - [sym_preproc_directive] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_typedef] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym_mutable] = ACTIONS(1732), - [anon_sym_explicit] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_unsigned] = ACTIONS(1732), - [anon_sym_long] = ACTIONS(1732), - [anon_sym_short] = ACTIONS(1732), - [sym_primitive_type] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [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_AMP] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_sizeof] = ACTIONS(1732), - [sym_number_literal] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [sym_string_literal] = ACTIONS(1730), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [sym_null] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1732), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1732), - [sym_auto] = ACTIONS(1732), - [anon_sym_typename] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_delete] = ACTIONS(1732), - [sym_nullptr] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1734), + [sym_preproc_directive] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_RBRACE] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_register] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_restrict] = ACTIONS(1734), + [anon_sym_volatile] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1734), + [anon_sym_mutable] = ACTIONS(1734), + [anon_sym_explicit] = ACTIONS(1734), + [anon_sym_constexpr] = ACTIONS(1734), + [anon_sym_unsigned] = ACTIONS(1734), + [anon_sym_long] = ACTIONS(1734), + [anon_sym_short] = 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(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_AMP] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_sizeof] = ACTIONS(1734), + [sym_number_literal] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [sym_string_literal] = ACTIONS(1732), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [sym_null] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1734), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1734), + [sym_auto] = ACTIONS(1734), + [anon_sym_typename] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [sym_nullptr] = ACTIONS(1734), }, [412] = { - [sym__declarator] = STATE(892), - [sym_pointer_declarator] = STATE(892), - [sym_function_declarator] = STATE(892), - [sym_array_declarator] = STATE(892), - [sym_init_declarator] = STATE(893), - [sym_reference_declarator] = STATE(892), - [sym_structured_binding_reference_declarator] = STATE(894), - [sym_structured_binding_declarator] = STATE(895), + [sym__declarator] = STATE(893), + [sym_pointer_declarator] = STATE(893), + [sym_function_declarator] = STATE(893), + [sym_array_declarator] = STATE(893), + [sym_init_declarator] = STATE(894), + [sym_reference_declarator] = STATE(893), + [sym_structured_binding_reference_declarator] = STATE(895), + [sym_structured_binding_declarator] = STATE(896), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(892), - [sym_destructor_name] = STATE(892), + [sym_template_function] = STATE(893), + [sym_destructor_name] = STATE(893), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1736), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(198), [anon_sym_AMP] = ACTIONS(200), @@ -25663,44 +25719,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1736), + [sym_operator_name] = ACTIONS(1738), }, [413] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -25708,7 +25764,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [414] = { - [anon_sym_SEMI] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(1742), [sym_comment] = ACTIONS(49), }, [415] = { @@ -25735,7 +25791,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(228), [sym_identifier] = ACTIONS(230), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1772), [sym_operator_name] = ACTIONS(228), }, [416] = { @@ -25770,19 +25826,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [417] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_COLON_COLON] = ACTIONS(1772), }, [418] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -25790,18 +25846,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -25821,14 +25877,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -25836,7 +25892,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -25851,7 +25907,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -25948,82 +26004,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [420] = { - [sym_argument_list] = STATE(914), - [sym_initializer_list] = STATE(914), + [sym_argument_list] = STATE(915), + [sym_initializer_list] = STATE(915), [sym_template_argument_list] = STATE(203), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1774), + [anon_sym_COLON_COLON] = ACTIONS(1776), }, [421] = { - [sym_destructor_name] = STATE(916), + [sym_destructor_name] = STATE(917), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(1776), + [sym_identifier] = ACTIONS(1778), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(1778), + [sym_operator_name] = ACTIONS(1780), }, [422] = { - [aux_sym_field_initializer_list_repeat1] = STATE(918), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), + [aux_sym_field_initializer_list_repeat1] = STATE(919), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(1784), [sym_comment] = ACTIONS(49), }, [423] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1784), + [anon_sym_COLON_COLON] = ACTIONS(1786), }, [424] = { - [sym_argument_list] = STATE(920), - [sym_initializer_list] = STATE(920), + [sym_argument_list] = STATE(921), + [sym_initializer_list] = STATE(921), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), }, [425] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1788), - [sym_preproc_directive] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_restrict] = ACTIONS(1788), - [anon_sym_volatile] = ACTIONS(1788), - [anon_sym__Atomic] = ACTIONS(1788), - [anon_sym_mutable] = ACTIONS(1788), - [anon_sym_explicit] = ACTIONS(1788), - [anon_sym_constexpr] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1788), - [sym_auto] = ACTIONS(1788), - [anon_sym_typename] = ACTIONS(1788), - [anon_sym_template] = ACTIONS(1788), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [sym_operator_name] = ACTIONS(1786), + [ts_builtin_sym_end] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1790), + [sym_preproc_directive] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_restrict] = ACTIONS(1790), + [anon_sym_volatile] = ACTIONS(1790), + [anon_sym__Atomic] = ACTIONS(1790), + [anon_sym_mutable] = ACTIONS(1790), + [anon_sym_explicit] = ACTIONS(1790), + [anon_sym_constexpr] = ACTIONS(1790), + [anon_sym_unsigned] = ACTIONS(1790), + [anon_sym_long] = ACTIONS(1790), + [anon_sym_short] = ACTIONS(1790), + [sym_primitive_type] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1790), + [sym_auto] = ACTIONS(1790), + [anon_sym_typename] = ACTIONS(1790), + [anon_sym_template] = ACTIONS(1790), + [anon_sym_namespace] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [sym_operator_name] = ACTIONS(1788), }, [426] = { [sym_storage_class_specifier] = STATE(426), @@ -26031,19 +26087,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(426), [anon_sym_LPAREN] = ACTIONS(798), [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), [anon_sym_STAR] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -26053,80 +26109,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(798), }, [427] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, [428] = { - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(1805), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), [sym_comment] = ACTIONS(49), }, [429] = { - [sym_compound_statement] = STATE(921), + [sym_compound_statement] = STATE(922), [anon_sym_LBRACE] = ACTIONS(212), [sym_comment] = ACTIONS(49), }, @@ -26134,11 +26190,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_storage_class_specifier] = STATE(426), [sym_type_qualifier] = STATE(426), [aux_sym__declaration_specifiers_repeat1] = STATE(426), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -26149,75 +26205,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, [431] = { - [anon_sym_LF] = ACTIONS(1813), + [anon_sym_LF] = ACTIONS(1815), [sym_comment] = ACTIONS(83), }, [432] = { - [aux_sym_preproc_params_repeat1] = STATE(925), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(1817), + [aux_sym_preproc_params_repeat1] = STATE(926), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RPAREN] = ACTIONS(1819), [sym_comment] = ACTIONS(49), }, [433] = { - [anon_sym_LF] = ACTIONS(1819), - [sym_preproc_arg] = ACTIONS(1819), + [anon_sym_LF] = ACTIONS(1821), + [sym_preproc_arg] = ACTIONS(1821), [sym_comment] = ACTIONS(83), }, [434] = { - [ts_builtin_sym_end] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [sym_operator_name] = ACTIONS(1821), + [ts_builtin_sym_end] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_template] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [sym_operator_name] = ACTIONS(1823), }, [435] = { - [anon_sym_LF] = ACTIONS(1825), + [anon_sym_LF] = ACTIONS(1827), [sym_comment] = ACTIONS(83), }, [436] = { @@ -26235,36 +26291,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), }, [437] = { - [sym__type_specifier] = STATE(932), - [sym_sized_type_specifier] = STATE(932), - [sym_enum_specifier] = STATE(932), - [sym_struct_specifier] = STATE(932), - [sym_union_specifier] = STATE(932), - [sym_macro_type_specifier] = STATE(932), - [sym_class_specifier] = STATE(932), - [sym_dependent_type] = STATE(932), + [sym__type_specifier] = STATE(933), + [sym_sized_type_specifier] = STATE(933), + [sym_enum_specifier] = STATE(933), + [sym_struct_specifier] = STATE(933), + [sym_union_specifier] = STATE(933), + [sym_macro_type_specifier] = STATE(933), + [sym_class_specifier] = STATE(933), + [sym_dependent_type] = STATE(933), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(933), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(934), + [anon_sym_unsigned] = ACTIONS(1829), + [anon_sym_long] = ACTIONS(1829), + [anon_sym_short] = ACTIONS(1829), + [sym_primitive_type] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(1829), - [anon_sym_typename] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(1831), + [anon_sym_typename] = ACTIONS(1841), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [438] = { - [sym_type_qualifier] = STATE(934), - [sym_trailing_return_type] = STATE(934), - [aux_sym_function_declarator_repeat1] = STATE(934), + [sym_type_qualifier] = STATE(935), + [sym_trailing_return_type] = STATE(935), + [aux_sym_function_declarator_repeat1] = STATE(935), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_RPAREN] = ACTIONS(1596), [anon_sym_LBRACK] = ACTIONS(1596), @@ -26277,21 +26333,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(845), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(1841), + [sym_noexcept] = ACTIONS(1843), }, [439] = { - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1805), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_GT] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_COLON] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1798), + [anon_sym_GT] = ACTIONS(1807), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, [440] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), @@ -26339,26 +26395,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(249), }, [441] = { - [sym_preproc_params] = STATE(937), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1843), - [anon_sym_LF] = ACTIONS(1845), + [sym_preproc_params] = STATE(938), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1845), + [anon_sym_LF] = ACTIONS(1847), [anon_sym_LPAREN] = ACTIONS(257), [sym_comment] = ACTIONS(83), }, [442] = { - [sym_preproc_include] = STATE(940), - [sym_preproc_def] = STATE(940), - [sym_preproc_function_def] = STATE(940), - [sym_preproc_call] = STATE(940), - [sym_preproc_if] = STATE(940), - [sym_preproc_ifdef] = STATE(940), - [sym_preproc_else] = STATE(939), - [sym_preproc_elif] = STATE(939), - [sym_function_definition] = STATE(940), - [sym_declaration] = STATE(940), - [sym_type_definition] = STATE(940), + [sym_preproc_include] = STATE(941), + [sym_preproc_def] = STATE(941), + [sym_preproc_function_def] = STATE(941), + [sym_preproc_call] = STATE(941), + [sym_preproc_if] = STATE(941), + [sym_preproc_ifdef] = STATE(941), + [sym_preproc_else] = STATE(940), + [sym_preproc_elif] = STATE(940), + [sym_function_definition] = STATE(941), + [sym_declaration] = STATE(941), + [sym_type_definition] = STATE(941), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(940), + [sym_linkage_specification] = STATE(941), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -26370,32 +26426,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(940), + [sym__empty_declaration] = STATE(941), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(940), - [sym_template_declaration] = STATE(940), - [sym_template_instantiation] = STATE(940), + [sym_structured_binding_declaration] = STATE(941), + [sym_template_declaration] = STATE(941), + [sym_template_instantiation] = STATE(941), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(940), - [sym_using_declaration] = STATE(940), - [sym_alias_declaration] = STATE(940), + [sym_namespace_definition] = STATE(941), + [sym_using_declaration] = STATE(941), + [sym_alias_declaration] = STATE(941), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(940), + [aux_sym_translation_unit_repeat1] = STATE(941), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1847), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1849), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -26436,19 +26492,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [443] = { - [sym_preproc_include] = STATE(943), - [sym_preproc_def] = STATE(943), - [sym_preproc_function_def] = STATE(943), - [sym_preproc_call] = STATE(943), - [sym_preproc_if] = STATE(943), - [sym_preproc_ifdef] = STATE(943), - [sym_preproc_else] = STATE(942), - [sym_preproc_elif] = STATE(942), - [sym_function_definition] = STATE(943), - [sym_declaration] = STATE(943), - [sym_type_definition] = STATE(943), + [sym_preproc_include] = STATE(944), + [sym_preproc_def] = STATE(944), + [sym_preproc_function_def] = STATE(944), + [sym_preproc_call] = STATE(944), + [sym_preproc_if] = STATE(944), + [sym_preproc_ifdef] = STATE(944), + [sym_preproc_else] = STATE(943), + [sym_preproc_elif] = STATE(943), + [sym_function_definition] = STATE(944), + [sym_declaration] = STATE(944), + [sym_type_definition] = STATE(944), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(943), + [sym_linkage_specification] = STATE(944), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -26460,32 +26516,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(943), + [sym__empty_declaration] = STATE(944), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(943), - [sym_template_declaration] = STATE(943), - [sym_template_instantiation] = STATE(943), + [sym_structured_binding_declaration] = STATE(944), + [sym_template_declaration] = STATE(944), + [sym_template_instantiation] = STATE(944), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(943), - [sym_using_declaration] = STATE(943), - [sym_alias_declaration] = STATE(943), + [sym_namespace_definition] = STATE(944), + [sym_using_declaration] = STATE(944), + [sym_alias_declaration] = STATE(944), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(943), + [aux_sym_translation_unit_repeat1] = STATE(944), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1849), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1851), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -26526,19 +26582,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [444] = { - [sym_preproc_include] = STATE(946), - [sym_preproc_def] = STATE(946), - [sym_preproc_function_def] = STATE(946), - [sym_preproc_call] = STATE(946), - [sym_preproc_if] = STATE(946), - [sym_preproc_ifdef] = STATE(946), - [sym_preproc_else] = STATE(945), - [sym_preproc_elif] = STATE(945), - [sym_function_definition] = STATE(946), - [sym_declaration] = STATE(946), - [sym_type_definition] = STATE(946), + [sym_preproc_include] = STATE(947), + [sym_preproc_def] = STATE(947), + [sym_preproc_function_def] = STATE(947), + [sym_preproc_call] = STATE(947), + [sym_preproc_if] = STATE(947), + [sym_preproc_ifdef] = STATE(947), + [sym_preproc_else] = STATE(946), + [sym_preproc_elif] = STATE(946), + [sym_function_definition] = STATE(947), + [sym_declaration] = STATE(947), + [sym_type_definition] = STATE(947), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(946), + [sym_linkage_specification] = STATE(947), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -26550,32 +26606,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(946), + [sym__empty_declaration] = STATE(947), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(946), - [sym_template_declaration] = STATE(946), - [sym_template_instantiation] = STATE(946), + [sym_structured_binding_declaration] = STATE(947), + [sym_template_declaration] = STATE(947), + [sym_template_instantiation] = STATE(947), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(946), - [sym_using_declaration] = STATE(946), - [sym_alias_declaration] = STATE(946), + [sym_namespace_definition] = STATE(947), + [sym_using_declaration] = STATE(947), + [sym_alias_declaration] = STATE(947), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(946), + [aux_sym_translation_unit_repeat1] = STATE(947), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1851), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1853), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -26616,45 +26672,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [445] = { - [sym_string_literal] = ACTIONS(1853), - [sym_system_lib_string] = ACTIONS(1853), + [sym_string_literal] = ACTIONS(1855), + [sym_system_lib_string] = ACTIONS(1855), [sym_comment] = ACTIONS(49), }, [446] = { - [sym_identifier] = ACTIONS(1855), + [sym_identifier] = ACTIONS(1857), [sym_comment] = ACTIONS(49), }, [447] = { - [sym_preproc_arg] = ACTIONS(1857), + [sym_preproc_arg] = ACTIONS(1859), [sym_comment] = ACTIONS(83), }, [448] = { - [sym_identifier] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), [sym_comment] = ACTIONS(49), }, [449] = { - [sym_identifier] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), [sym_comment] = ACTIONS(49), }, [450] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1863), - [anon_sym_LF] = ACTIONS(1865), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1867), [sym_comment] = ACTIONS(83), }, [451] = { - [sym_type_qualifier] = STATE(955), - [sym__type_specifier] = STATE(954), - [sym_sized_type_specifier] = STATE(954), - [sym_enum_specifier] = STATE(954), - [sym_struct_specifier] = STATE(954), - [sym_union_specifier] = STATE(954), - [sym_macro_type_specifier] = STATE(954), - [sym_class_specifier] = STATE(954), - [sym_dependent_type] = STATE(954), + [sym_type_qualifier] = STATE(956), + [sym__type_specifier] = STATE(955), + [sym_sized_type_specifier] = STATE(955), + [sym_enum_specifier] = STATE(955), + [sym_struct_specifier] = STATE(955), + [sym_union_specifier] = STATE(955), + [sym_macro_type_specifier] = STATE(955), + [sym_class_specifier] = STATE(955), + [sym_dependent_type] = STATE(955), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(955), + [aux_sym_type_definition_repeat1] = STATE(956), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -26666,14 +26722,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(1867), + [sym_primitive_type] = ACTIONS(1869), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(1867), + [sym_auto] = ACTIONS(1869), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, @@ -26701,7 +26757,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(115), [anon_sym_AMP_AMP] = ACTIONS(113), [anon_sym_TILDE] = ACTIONS(113), - [sym_string_literal] = ACTIONS(1869), + [sym_string_literal] = ACTIONS(1871), [sym_identifier] = ACTIONS(115), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(115), @@ -26711,11 +26767,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(113), }, [453] = { - [sym__declaration_specifiers] = STATE(957), - [sym__declarator] = STATE(958), - [sym_pointer_declarator] = STATE(958), - [sym_function_declarator] = STATE(958), - [sym_array_declarator] = STATE(958), + [sym__declaration_specifiers] = STATE(958), + [sym__declarator] = STATE(959), + [sym_pointer_declarator] = STATE(959), + [sym_function_declarator] = STATE(959), + [sym_array_declarator] = STATE(959), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -26726,11 +26782,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_parameter_list] = STATE(959), - [sym_reference_declarator] = STATE(958), + [sym_template_parameter_list] = STATE(960), + [sym_reference_declarator] = STATE(959), [sym_template_type] = STATE(107), - [sym_template_function] = STATE(958), - [sym_destructor_name] = STATE(958), + [sym_template_function] = STATE(959), + [sym_destructor_name] = STATE(959), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(108), @@ -26766,41 +26822,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_COLON_COLON] = ACTIONS(174), - [sym_operator_name] = ACTIONS(1871), + [sym_operator_name] = ACTIONS(1873), }, [454] = { - [sym_declaration_list] = STATE(962), - [anon_sym_LBRACE] = ACTIONS(1873), - [sym_identifier] = ACTIONS(1875), + [sym_declaration_list] = STATE(963), + [anon_sym_LBRACE] = ACTIONS(1875), + [sym_identifier] = ACTIONS(1877), [sym_comment] = ACTIONS(49), }, [455] = { [sym_template_type] = STATE(117), - [sym_scoped_identifier] = STATE(965), + [sym_scoped_identifier] = STATE(966), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(117), - [sym_identifier] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), [sym_comment] = ACTIONS(49), - [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_namespace] = ACTIONS(1881), [anon_sym_COLON_COLON] = ACTIONS(186), }, [456] = { - [sym__declarator] = STATE(967), - [sym_pointer_declarator] = STATE(967), - [sym_function_declarator] = STATE(967), - [sym_array_declarator] = STATE(967), - [sym_init_declarator] = STATE(968), - [sym_reference_declarator] = STATE(967), - [sym_structured_binding_reference_declarator] = STATE(969), - [sym_structured_binding_declarator] = STATE(970), + [sym__declarator] = STATE(968), + [sym_pointer_declarator] = STATE(968), + [sym_function_declarator] = STATE(968), + [sym_array_declarator] = STATE(968), + [sym_init_declarator] = STATE(969), + [sym_reference_declarator] = STATE(968), + [sym_structured_binding_reference_declarator] = STATE(970), + [sym_structured_binding_declarator] = STATE(971), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(967), - [sym_destructor_name] = STATE(967), + [sym_template_function] = STATE(968), + [sym_destructor_name] = STATE(968), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(198), [anon_sym_AMP] = ACTIONS(200), @@ -26809,13 +26865,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1883), + [sym_operator_name] = ACTIONS(1885), }, [457] = { - [sym_compound_statement] = STATE(972), - [sym_field_initializer_list] = STATE(973), + [sym_compound_statement] = STATE(973), + [sym_field_initializer_list] = STATE(974), [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_COLON] = ACTIONS(214), [sym_comment] = ACTIONS(49), @@ -26864,17 +26920,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(224), }, [459] = { - [sym_preproc_include] = STATE(974), - [sym_preproc_def] = STATE(974), - [sym_preproc_function_def] = STATE(974), - [sym_preproc_call] = STATE(974), - [sym_preproc_if] = STATE(974), - [sym_preproc_ifdef] = STATE(974), - [sym_function_definition] = STATE(974), - [sym_declaration] = STATE(974), - [sym_type_definition] = STATE(974), + [sym_preproc_include] = STATE(975), + [sym_preproc_def] = STATE(975), + [sym_preproc_function_def] = STATE(975), + [sym_preproc_call] = STATE(975), + [sym_preproc_if] = STATE(975), + [sym_preproc_ifdef] = STATE(975), + [sym_function_definition] = STATE(975), + [sym_declaration] = STATE(975), + [sym_type_definition] = STATE(975), [sym__declaration_specifiers] = STATE(456), - [sym_linkage_specification] = STATE(974), + [sym_linkage_specification] = STATE(975), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(457), @@ -26886,32 +26942,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(974), + [sym__empty_declaration] = STATE(975), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(974), - [sym_template_declaration] = STATE(974), - [sym_template_instantiation] = STATE(974), + [sym_structured_binding_declaration] = STATE(975), + [sym_template_declaration] = STATE(975), + [sym_template_instantiation] = STATE(975), [sym_constructor_or_destructor_definition] = STATE(458), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(974), - [sym_using_declaration] = STATE(974), - [sym_alias_declaration] = STATE(974), + [sym_namespace_definition] = STATE(975), + [sym_using_declaration] = STATE(975), + [sym_alias_declaration] = STATE(975), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(974), + [aux_sym_translation_unit_repeat1] = STATE(975), [aux_sym__declaration_specifiers_repeat1] = STATE(460), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(865), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(867), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(869), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1887), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1889), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(873), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(875), [sym_preproc_directive] = ACTIONS(877), @@ -26952,7 +27008,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [460] = { [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), - [sym_function_declarator] = STATE(975), + [sym_function_declarator] = STATE(976), [sym_array_declarator] = STATE(28), [sym_storage_class_specifier] = STATE(145), [sym_type_qualifier] = STATE(145), @@ -27005,19 +27061,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [461] = { - [sym_preproc_include] = STATE(977), - [sym_preproc_def] = STATE(977), - [sym_preproc_function_def] = STATE(977), - [sym_preproc_call] = STATE(977), - [sym_preproc_if] = STATE(977), - [sym_preproc_ifdef] = STATE(977), - [sym_preproc_else] = STATE(976), - [sym_preproc_elif] = STATE(976), - [sym_function_definition] = STATE(977), - [sym_declaration] = STATE(977), - [sym_type_definition] = STATE(977), + [sym_preproc_include] = STATE(978), + [sym_preproc_def] = STATE(978), + [sym_preproc_function_def] = STATE(978), + [sym_preproc_call] = STATE(978), + [sym_preproc_if] = STATE(978), + [sym_preproc_ifdef] = STATE(978), + [sym_preproc_else] = STATE(977), + [sym_preproc_elif] = STATE(977), + [sym_function_definition] = STATE(978), + [sym_declaration] = STATE(978), + [sym_type_definition] = STATE(978), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(977), + [sym_linkage_specification] = STATE(978), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -27029,32 +27085,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(977), + [sym__empty_declaration] = STATE(978), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(977), - [sym_template_declaration] = STATE(977), - [sym_template_instantiation] = STATE(977), + [sym_structured_binding_declaration] = STATE(978), + [sym_template_declaration] = STATE(978), + [sym_template_instantiation] = STATE(978), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(977), - [sym_using_declaration] = STATE(977), - [sym_alias_declaration] = STATE(977), + [sym_namespace_definition] = STATE(978), + [sym_using_declaration] = STATE(978), + [sym_alias_declaration] = STATE(978), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(977), + [aux_sym_translation_unit_repeat1] = STATE(978), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1891), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -27095,7 +27151,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [462] = { - [sym_preproc_arg] = ACTIONS(1891), + [sym_preproc_arg] = ACTIONS(1893), [sym_comment] = ACTIONS(83), }, [463] = { @@ -27144,7 +27200,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(307), }, [464] = { - [sym__type_declarator] = STATE(979), + [sym__type_declarator] = STATE(980), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -27155,14 +27211,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [465] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(980), - [sym_sized_type_specifier] = STATE(980), - [sym_enum_specifier] = STATE(980), - [sym_struct_specifier] = STATE(980), - [sym_union_specifier] = STATE(980), - [sym_macro_type_specifier] = STATE(980), - [sym_class_specifier] = STATE(980), - [sym_dependent_type] = STATE(980), + [sym__type_specifier] = STATE(981), + [sym_sized_type_specifier] = STATE(981), + [sym_enum_specifier] = STATE(981), + [sym_struct_specifier] = STATE(981), + [sym_union_specifier] = STATE(981), + [sym_macro_type_specifier] = STATE(981), + [sym_class_specifier] = STATE(981), + [sym_dependent_type] = STATE(981), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -27178,22 +27234,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(1893), + [sym_primitive_type] = ACTIONS(1895), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(1893), + [sym_auto] = ACTIONS(1895), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, [466] = { - [sym_function_definition] = STATE(981), - [sym_declaration] = STATE(981), - [sym__declaration_specifiers] = STATE(982), - [sym_declaration_list] = STATE(981), + [sym_function_definition] = STATE(982), + [sym_declaration] = STATE(982), + [sym__declaration_specifiers] = STATE(983), + [sym_declaration_list] = STATE(982), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -27236,14 +27292,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [467] = { - [sym__declarator] = STATE(983), - [sym_pointer_declarator] = STATE(983), - [sym_function_declarator] = STATE(983), - [sym_array_declarator] = STATE(983), - [sym_reference_declarator] = STATE(983), + [sym__declarator] = STATE(984), + [sym_pointer_declarator] = STATE(984), + [sym_function_declarator] = STATE(984), + [sym_array_declarator] = STATE(984), + [sym_reference_declarator] = STATE(984), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(983), - [sym_destructor_name] = STATE(983), + [sym_template_function] = STATE(984), + [sym_destructor_name] = STATE(984), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -27255,19 +27311,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1895), + [sym_operator_name] = ACTIONS(1897), }, [468] = { [sym_parameter_list] = STATE(299), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(1897), + [anon_sym_SEMI] = ACTIONS(1899), [anon_sym_LBRACK] = ACTIONS(208), [sym_comment] = ACTIONS(49), }, [469] = { - [sym_function_definition] = STATE(985), - [sym_declaration] = STATE(985), - [sym__declaration_specifiers] = STATE(986), + [sym_function_definition] = STATE(986), + [sym_declaration] = STATE(986), + [sym__declaration_specifiers] = STATE(987), [sym_storage_class_specifier] = STATE(305), [sym_type_qualifier] = STATE(305), [sym__type_specifier] = STATE(304), @@ -27275,7 +27331,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(304), [sym_struct_specifier] = STATE(304), [sym_union_specifier] = STATE(304), - [sym__empty_declaration] = STATE(985), + [sym__empty_declaration] = STATE(986), [sym_macro_type_specifier] = STATE(304), [sym_class_specifier] = STATE(304), [sym_dependent_type] = STATE(304), @@ -27310,17 +27366,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [470] = { - [sym_preproc_include] = STATE(988), - [sym_preproc_def] = STATE(988), - [sym_preproc_function_def] = STATE(988), - [sym_preproc_call] = STATE(988), - [sym_preproc_if] = STATE(988), - [sym_preproc_ifdef] = STATE(988), - [sym_function_definition] = STATE(988), - [sym_declaration] = STATE(988), - [sym_type_definition] = STATE(988), + [sym_preproc_include] = STATE(989), + [sym_preproc_def] = STATE(989), + [sym_preproc_function_def] = STATE(989), + [sym_preproc_call] = STATE(989), + [sym_preproc_if] = STATE(989), + [sym_preproc_ifdef] = STATE(989), + [sym_function_definition] = STATE(989), + [sym_declaration] = STATE(989), + [sym_type_definition] = STATE(989), [sym__declaration_specifiers] = STATE(27), - [sym_linkage_specification] = STATE(988), + [sym_linkage_specification] = STATE(989), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(29), @@ -27332,25 +27388,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(988), + [sym__empty_declaration] = STATE(989), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(988), - [sym_template_declaration] = STATE(988), - [sym_template_instantiation] = STATE(988), + [sym_structured_binding_declaration] = STATE(989), + [sym_template_declaration] = STATE(989), + [sym_template_instantiation] = STATE(989), [sym_constructor_or_destructor_definition] = STATE(31), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(988), - [sym_using_declaration] = STATE(988), - [sym_alias_declaration] = STATE(988), + [sym_namespace_definition] = STATE(989), + [sym_using_declaration] = STATE(989), + [sym_alias_declaration] = STATE(989), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(988), + [aux_sym_translation_unit_repeat1] = STATE(989), [aux_sym__declaration_specifiers_repeat1] = STATE(37), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -27362,7 +27418,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1901), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -27396,7 +27452,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(63), }, [471] = { - [sym_declaration_list] = STATE(989), + [sym_declaration_list] = STATE(990), [anon_sym_LBRACE] = ACTIONS(901), [sym_comment] = ACTIONS(49), }, @@ -27447,68 +27503,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [473] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(1901), - [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_EQ] = ACTIONS(1905), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, [474] = { [sym_template_type] = STATE(117), - [sym_scoped_identifier] = STATE(993), + [sym_scoped_identifier] = STATE(994), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(117), - [sym_identifier] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(186), }, [475] = { - [anon_sym_SEMI] = ACTIONS(1901), + [anon_sym_SEMI] = ACTIONS(1903), [sym_comment] = ACTIONS(49), }, [476] = { - [ts_builtin_sym_end] = ACTIONS(1907), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1909), - [sym_preproc_directive] = ACTIONS(1909), - [anon_sym_typedef] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_RBRACE] = ACTIONS(1907), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_inline] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_restrict] = ACTIONS(1909), - [anon_sym_volatile] = ACTIONS(1909), - [anon_sym__Atomic] = ACTIONS(1909), - [anon_sym_mutable] = ACTIONS(1909), - [anon_sym_explicit] = ACTIONS(1909), - [anon_sym_constexpr] = ACTIONS(1909), - [anon_sym_unsigned] = ACTIONS(1909), - [anon_sym_long] = ACTIONS(1909), - [anon_sym_short] = ACTIONS(1909), - [sym_primitive_type] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1909), - [sym_auto] = ACTIONS(1909), - [anon_sym_typename] = ACTIONS(1909), - [anon_sym_template] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [sym_operator_name] = ACTIONS(1907), + [ts_builtin_sym_end] = ACTIONS(1909), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1911), + [sym_preproc_directive] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_restrict] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym__Atomic] = ACTIONS(1911), + [anon_sym_mutable] = ACTIONS(1911), + [anon_sym_explicit] = ACTIONS(1911), + [anon_sym_constexpr] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1911), + [sym_auto] = ACTIONS(1911), + [anon_sym_typename] = ACTIONS(1911), + [anon_sym_template] = ACTIONS(1911), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [sym_operator_name] = ACTIONS(1909), }, [477] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(524), @@ -27556,52 +27612,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(522), }, [478] = { - [sym_compound_statement] = STATE(996), + [sym_compound_statement] = STATE(997), [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(997), + [aux_sym_declaration_repeat1] = STATE(998), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(1911), - [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_SEMI] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1915), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, [479] = { - [aux_sym_declaration_repeat1] = STATE(997), + [aux_sym_declaration_repeat1] = STATE(998), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(1911), + [anon_sym_SEMI] = ACTIONS(1913), [sym_comment] = ACTIONS(49), }, [480] = { - [sym_argument_list] = STATE(999), - [sym_initializer_list] = STATE(999), + [sym_argument_list] = STATE(1000), + [sym_initializer_list] = STATE(1000), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_EQ] = ACTIONS(1917), [sym_comment] = ACTIONS(49), }, [481] = { - [sym_argument_list] = STATE(1001), - [sym_initializer_list] = STATE(1001), + [sym_argument_list] = STATE(1002), + [sym_initializer_list] = STATE(1002), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1919), [sym_comment] = ACTIONS(49), }, [482] = { - [sym_preproc_include] = STATE(1003), - [sym_preproc_def] = STATE(1003), - [sym_preproc_function_def] = STATE(1003), - [sym_preproc_call] = STATE(1003), + [sym_preproc_include] = STATE(1004), + [sym_preproc_def] = STATE(1004), + [sym_preproc_function_def] = STATE(1004), + [sym_preproc_call] = STATE(1004), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1003), - [sym_type_definition] = STATE(1003), + [sym_declaration] = STATE(1004), + [sym_type_definition] = STATE(1004), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1003), + [sym_compound_statement] = STATE(1004), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -27609,18 +27665,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1003), - [sym_expression_statement] = STATE(1003), - [sym_if_statement] = STATE(1003), - [sym_switch_statement] = STATE(1003), - [sym_case_statement] = STATE(1003), - [sym_while_statement] = STATE(1003), - [sym_do_statement] = STATE(1003), - [sym_for_statement] = STATE(1003), - [sym_return_statement] = STATE(1003), - [sym_break_statement] = STATE(1003), - [sym_continue_statement] = STATE(1003), - [sym_goto_statement] = STATE(1003), + [sym_labeled_statement] = STATE(1004), + [sym_expression_statement] = STATE(1004), + [sym_if_statement] = STATE(1004), + [sym_switch_statement] = STATE(1004), + [sym_case_statement] = STATE(1004), + [sym_while_statement] = STATE(1004), + [sym_do_statement] = STATE(1004), + [sym_for_statement] = STATE(1004), + [sym_return_statement] = STATE(1004), + [sym_break_statement] = STATE(1004), + [sym_continue_statement] = STATE(1004), + [sym_goto_statement] = STATE(1004), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -27640,14 +27696,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(1003), + [sym__empty_declaration] = STATE(1004), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1003), + [sym_structured_binding_declaration] = STATE(1004), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1003), + [sym_for_range_loop] = STATE(1004), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -27655,7 +27711,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1003), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1004), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -27670,7 +27726,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1921), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -27771,12 +27827,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(692), }, [484] = { - [sym_compound_statement] = STATE(1004), + [sym_compound_statement] = STATE(1005), [anon_sym_LBRACE] = ACTIONS(915), [sym_comment] = ACTIONS(49), }, [485] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1921), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1923), [sym_comment] = ACTIONS(49), }, [486] = { @@ -27823,18 +27879,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_translation_unit_repeat1] = STATE(486), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1923), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1926), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1928), [anon_sym_LPAREN] = ACTIONS(720), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1929), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1934), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1937), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1932), - [sym_preproc_directive] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1943), - [anon_sym_extern] = ACTIONS(1946), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1934), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1936), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1939), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1934), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1934), + [sym_preproc_directive] = ACTIONS(1942), + [anon_sym_typedef] = ACTIONS(1945), + [anon_sym_extern] = ACTIONS(1948), [anon_sym_STAR] = ACTIONS(741), [anon_sym_static] = ACTIONS(744), [anon_sym_register] = ACTIONS(744), @@ -27861,15 +27917,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(777), [sym_auto] = ACTIONS(753), [anon_sym_typename] = ACTIONS(780), - [anon_sym_template] = ACTIONS(1949), - [anon_sym_namespace] = ACTIONS(1952), - [anon_sym_using] = ACTIONS(1955), + [anon_sym_template] = ACTIONS(1951), + [anon_sym_namespace] = ACTIONS(1954), + [anon_sym_using] = ACTIONS(1957), [anon_sym_COLON_COLON] = ACTIONS(792), [sym_operator_name] = ACTIONS(795), }, [487] = { - [sym_compound_statement] = STATE(1004), - [sym_field_initializer_list] = STATE(1006), + [sym_compound_statement] = STATE(1005), + [sym_field_initializer_list] = STATE(1007), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_LBRACE] = ACTIONS(915), [anon_sym_LBRACK] = ACTIONS(210), @@ -27877,147 +27933,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(1958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1960), - [sym_preproc_directive] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_RBRACE] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_restrict] = ACTIONS(1960), - [anon_sym_volatile] = ACTIONS(1960), - [anon_sym__Atomic] = ACTIONS(1960), - [anon_sym_mutable] = ACTIONS(1960), - [anon_sym_explicit] = ACTIONS(1960), - [anon_sym_constexpr] = ACTIONS(1960), - [anon_sym_unsigned] = ACTIONS(1960), - [anon_sym_long] = ACTIONS(1960), - [anon_sym_short] = ACTIONS(1960), - [sym_primitive_type] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1960), - [sym_auto] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1960), - [anon_sym_namespace] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [sym_operator_name] = ACTIONS(1958), + [ts_builtin_sym_end] = ACTIONS(1960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1962), + [sym_preproc_directive] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_register] = ACTIONS(1962), + [anon_sym_inline] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_restrict] = ACTIONS(1962), + [anon_sym_volatile] = ACTIONS(1962), + [anon_sym__Atomic] = ACTIONS(1962), + [anon_sym_mutable] = ACTIONS(1962), + [anon_sym_explicit] = ACTIONS(1962), + [anon_sym_constexpr] = ACTIONS(1962), + [anon_sym_unsigned] = ACTIONS(1962), + [anon_sym_long] = ACTIONS(1962), + [anon_sym_short] = ACTIONS(1962), + [sym_primitive_type] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1962), + [sym_auto] = ACTIONS(1962), + [anon_sym_typename] = ACTIONS(1962), + [anon_sym_template] = ACTIONS(1962), + [anon_sym_namespace] = ACTIONS(1962), + [anon_sym_using] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [sym_operator_name] = ACTIONS(1960), }, [489] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1964), [sym_comment] = ACTIONS(49), }, [490] = { - [ts_builtin_sym_end] = ACTIONS(1964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1966), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1964), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_mutable] = ACTIONS(1966), - [anon_sym_explicit] = ACTIONS(1966), - [anon_sym_constexpr] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_typename] = ACTIONS(1966), - [anon_sym_template] = ACTIONS(1966), - [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_using] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [sym_operator_name] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_mutable] = ACTIONS(1968), + [anon_sym_explicit] = ACTIONS(1968), + [anon_sym_constexpr] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_typename] = ACTIONS(1968), + [anon_sym_template] = ACTIONS(1968), + [anon_sym_namespace] = ACTIONS(1968), + [anon_sym_using] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [sym_operator_name] = ACTIONS(1966), }, [491] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1970), [sym_comment] = ACTIONS(49), }, [492] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_template] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1972), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [sym_operator_name] = ACTIONS(1970), + [ts_builtin_sym_end] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [sym_operator_name] = ACTIONS(1972), }, [493] = { - [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1976), [sym_comment] = ACTIONS(49), }, [494] = { @@ -28027,9 +28083,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [495] = { - [aux_sym_enumerator_list_repeat1] = STATE(1011), - [anon_sym_COMMA] = ACTIONS(1976), - [anon_sym_RBRACE] = ACTIONS(1974), + [aux_sym_enumerator_list_repeat1] = STATE(1012), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1976), [sym_comment] = ACTIONS(49), }, [496] = { @@ -28089,7 +28145,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1980), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -28132,7 +28188,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [500] = { - [sym_field_declaration_list] = STATE(1013), + [sym_field_declaration_list] = STATE(1014), [anon_sym_LBRACE] = ACTIONS(315), [sym_comment] = ACTIONS(49), }, @@ -28143,7 +28199,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [502] = { - [sym_field_declaration_list] = STATE(1014), + [sym_field_declaration_list] = STATE(1015), [anon_sym_LBRACE] = ACTIONS(315), [sym_comment] = ACTIONS(49), }, @@ -28157,9 +28213,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1111), }, [504] = { - [aux_sym_template_argument_list_repeat1] = STATE(1016), + [aux_sym_template_argument_list_repeat1] = STATE(1017), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1982), [sym_comment] = ACTIONS(49), }, [505] = { @@ -28186,7 +28242,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [507] = { - [sym_field_declaration_list] = STATE(1017), + [sym_field_declaration_list] = STATE(1018), [anon_sym_LBRACE] = ACTIONS(315), [sym_comment] = ACTIONS(49), }, @@ -28203,64 +28259,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [509] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(1982), + [anon_sym_RPAREN] = ACTIONS(1984), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, [510] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1984), + [anon_sym_RPAREN] = ACTIONS(1986), + [anon_sym_SEMI] = ACTIONS(1986), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [sym_operator_name] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_template] = ACTIONS(1990), + [anon_sym_namespace] = ACTIONS(1990), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [sym_operator_name] = ACTIONS(1988), }, [512] = { - [sym__declaration_specifiers] = STATE(1020), + [sym__declaration_specifiers] = STATE(1021), [sym_storage_class_specifier] = STATE(374), [sym_type_qualifier] = STATE(374), [sym__type_specifier] = STATE(367), @@ -28268,44 +28324,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(367), [sym_struct_specifier] = STATE(367), [sym_union_specifier] = STATE(367), - [sym__expression] = STATE(1021), - [sym_conditional_expression] = STATE(1021), - [sym_assignment_expression] = STATE(1021), - [sym_pointer_expression] = STATE(1021), - [sym_logical_expression] = STATE(1021), - [sym_bitwise_expression] = STATE(1021), - [sym_equality_expression] = STATE(1021), - [sym_relational_expression] = STATE(1021), - [sym_shift_expression] = STATE(1021), - [sym_math_expression] = STATE(1021), - [sym_cast_expression] = STATE(1021), - [sym_sizeof_expression] = STATE(1021), - [sym_subscript_expression] = STATE(1021), - [sym_call_expression] = STATE(1021), - [sym_field_expression] = STATE(1021), - [sym_compound_literal_expression] = STATE(1021), - [sym_parenthesized_expression] = STATE(1021), - [sym_concatenated_string] = STATE(1021), + [sym__expression] = STATE(1022), + [sym_conditional_expression] = STATE(1022), + [sym_assignment_expression] = STATE(1022), + [sym_pointer_expression] = STATE(1022), + [sym_logical_expression] = STATE(1022), + [sym_bitwise_expression] = STATE(1022), + [sym_equality_expression] = STATE(1022), + [sym_relational_expression] = STATE(1022), + [sym_shift_expression] = STATE(1022), + [sym_math_expression] = STATE(1022), + [sym_cast_expression] = STATE(1022), + [sym_sizeof_expression] = STATE(1022), + [sym_subscript_expression] = STATE(1022), + [sym_call_expression] = STATE(1022), + [sym_field_expression] = STATE(1022), + [sym_compound_literal_expression] = STATE(1022), + [sym_parenthesized_expression] = STATE(1022), + [sym_concatenated_string] = STATE(1022), [sym_macro_type_specifier] = STATE(367), [sym_class_specifier] = STATE(367), [sym_dependent_type] = STATE(367), [sym_template_type] = STATE(369), - [sym_template_function] = STATE(1021), - [sym_new_expression] = STATE(1021), - [sym_delete_expression] = STATE(1021), - [sym_lambda_expression] = STATE(1021), + [sym_template_function] = STATE(1022), + [sym_new_expression] = STATE(1022), + [sym_delete_expression] = STATE(1022), + [sym_lambda_expression] = STATE(1022), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(372), [sym_scoped_namespace_identifier] = STATE(373), [aux_sym__declaration_specifiers_repeat1] = STATE(374), [aux_sym_sized_type_specifier_repeat1] = STATE(375), - [sym_raw_string_literal] = ACTIONS(1990), + [sym_raw_string_literal] = ACTIONS(1992), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(1992), + [anon_sym_RBRACK] = ACTIONS(1994), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), [anon_sym_inline] = ACTIONS(154), @@ -28331,12 +28387,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(1990), - [sym_char_literal] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1992), + [sym_char_literal] = ACTIONS(1992), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(1994), - [sym_false] = ACTIONS(1994), - [sym_null] = ACTIONS(1994), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), [sym_identifier] = ACTIONS(598), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(600), @@ -28345,70 +28401,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(606), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(1994), + [sym_nullptr] = ACTIONS(1996), }, [513] = { - [anon_sym_LPAREN] = ACTIONS(1996), - [anon_sym_RPAREN] = ACTIONS(1996), - [anon_sym_SEMI] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_RPAREN] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), [sym_comment] = ACTIONS(49), }, [514] = { - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1801), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, [515] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_SEMI] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, [516] = { - [sym__type_specifier] = STATE(1024), - [sym_sized_type_specifier] = STATE(1024), - [sym_enum_specifier] = STATE(1024), - [sym_struct_specifier] = STATE(1024), - [sym_union_specifier] = STATE(1024), - [sym_macro_type_specifier] = STATE(1024), - [sym_class_specifier] = STATE(1024), - [sym_dependent_type] = STATE(1024), + [sym__type_specifier] = STATE(1025), + [sym_sized_type_specifier] = STATE(1025), + [sym_enum_specifier] = STATE(1025), + [sym_struct_specifier] = STATE(1025), + [sym_union_specifier] = STATE(1025), + [sym_macro_type_specifier] = STATE(1025), + [sym_class_specifier] = STATE(1025), + [sym_dependent_type] = STATE(1025), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1025), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2002), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [anon_sym_unsigned] = ACTIONS(2002), + [anon_sym_long] = ACTIONS(2002), + [anon_sym_short] = ACTIONS(2002), + [sym_primitive_type] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(2002), - [anon_sym_typename] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(2004), + [anon_sym_typename] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [517] = { - [sym_type_qualifier] = STATE(1026), - [sym_trailing_return_type] = STATE(1026), - [aux_sym_function_declarator_repeat1] = STATE(1026), + [sym_type_qualifier] = STATE(1027), + [sym_trailing_return_type] = STATE(1027), + [aux_sym_function_declarator_repeat1] = STATE(1027), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_LBRACK] = ACTIONS(1596), [anon_sym_const] = ACTIONS(612), @@ -28420,66 +28476,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(979), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2006), + [sym_noexcept] = ACTIONS(2008), }, [518] = { - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_register] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2010), - [anon_sym_mutable] = ACTIONS(2010), - [anon_sym_explicit] = ACTIONS(2010), - [anon_sym_constexpr] = ACTIONS(2010), - [anon_sym_COLON] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [sym_operator_name] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_COMMA] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_COLON] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_GT] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [sym_operator_name] = ACTIONS(2010), }, [519] = { - [sym__expression] = STATE(1027), - [sym_conditional_expression] = STATE(1027), - [sym_assignment_expression] = STATE(1027), - [sym_pointer_expression] = STATE(1027), - [sym_logical_expression] = STATE(1027), - [sym_bitwise_expression] = STATE(1027), - [sym_equality_expression] = STATE(1027), - [sym_relational_expression] = STATE(1027), - [sym_shift_expression] = STATE(1027), - [sym_math_expression] = STATE(1027), - [sym_cast_expression] = STATE(1027), - [sym_sizeof_expression] = STATE(1027), - [sym_subscript_expression] = STATE(1027), - [sym_call_expression] = STATE(1027), - [sym_field_expression] = STATE(1027), - [sym_compound_literal_expression] = STATE(1027), - [sym_parenthesized_expression] = STATE(1027), - [sym_concatenated_string] = STATE(1027), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1027), - [sym_new_expression] = STATE(1027), - [sym_delete_expression] = STATE(1027), - [sym_lambda_expression] = STATE(1027), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2012), + [sym__expression] = STATE(1028), + [sym_conditional_expression] = STATE(1028), + [sym_assignment_expression] = STATE(1028), + [sym_pointer_expression] = STATE(1028), + [sym_logical_expression] = STATE(1028), + [sym_bitwise_expression] = STATE(1028), + [sym_equality_expression] = STATE(1028), + [sym_relational_expression] = STATE(1028), + [sym_shift_expression] = STATE(1028), + [sym_math_expression] = STATE(1028), + [sym_cast_expression] = STATE(1028), + [sym_sizeof_expression] = STATE(1028), + [sym_subscript_expression] = STATE(1028), + [sym_call_expression] = STATE(1028), + [sym_field_expression] = STATE(1028), + [sym_compound_literal_expression] = STATE(1028), + [sym_parenthesized_expression] = STATE(1028), + [sym_concatenated_string] = STATE(1028), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1028), + [sym_new_expression] = STATE(1028), + [sym_delete_expression] = STATE(1028), + [sym_lambda_expression] = STATE(1028), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2014), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -28491,37 +28547,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(2012), - [sym_char_literal] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2014), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(2014), - [sym_false] = ACTIONS(2014), - [sym_null] = ACTIONS(2014), + [sym_true] = ACTIONS(2016), + [sym_false] = ACTIONS(2016), + [sym_null] = ACTIONS(2016), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(2014), + [sym_nullptr] = ACTIONS(2016), }, [520] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(2016), + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(2018), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, [521] = { - [aux_sym_enumerator_list_repeat1] = STATE(1031), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_RBRACE] = ACTIONS(2016), + [aux_sym_enumerator_list_repeat1] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2018), [sym_comment] = ACTIONS(49), }, [522] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1035), - [sym_preproc_elif_in_field_declaration_list] = STATE(1036), - [sym_type_definition] = STATE(1037), + [sym_preproc_else_in_field_declaration_list] = STATE(1036), + [sym_preproc_elif_in_field_declaration_list] = STATE(1037), + [sym_type_definition] = STATE(1038), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -28534,36 +28590,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1037), - [sym_field_declaration] = STATE(1037), + [sym__field_declaration_list_item] = STATE(1038), + [sym_field_declaration] = STATE(1038), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1037), + [sym_template_declaration] = STATE(1038), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1037), - [sym_access_specifier] = STATE(1037), + [sym_friend_declaration] = STATE(1038), + [sym_access_specifier] = STATE(1038), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1037), - [sym_alias_declaration] = STATE(1037), + [sym_using_declaration] = STATE(1038), + [sym_alias_declaration] = STATE(1038), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1037), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1038), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2020), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2022), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -28604,9 +28660,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [523] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1039), - [sym_preproc_elif_in_field_declaration_list] = STATE(1040), - [sym_type_definition] = STATE(1041), + [sym_preproc_else_in_field_declaration_list] = STATE(1040), + [sym_preproc_elif_in_field_declaration_list] = STATE(1041), + [sym_type_definition] = STATE(1042), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -28619,36 +28675,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1041), - [sym_field_declaration] = STATE(1041), + [sym__field_declaration_list_item] = STATE(1042), + [sym_field_declaration] = STATE(1042), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1041), + [sym_template_declaration] = STATE(1042), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1041), - [sym_access_specifier] = STATE(1041), + [sym_friend_declaration] = STATE(1042), + [sym_access_specifier] = STATE(1042), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1041), - [sym_alias_declaration] = STATE(1041), + [sym_using_declaration] = STATE(1042), + [sym_alias_declaration] = STATE(1042), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1041), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1042), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2026), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2028), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -28689,9 +28745,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [524] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1043), - [sym_preproc_elif_in_field_declaration_list] = STATE(1044), - [sym_type_definition] = STATE(1045), + [sym_preproc_else_in_field_declaration_list] = STATE(1044), + [sym_preproc_elif_in_field_declaration_list] = STATE(1045), + [sym_type_definition] = STATE(1046), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -28704,36 +28760,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1045), - [sym_field_declaration] = STATE(1045), + [sym__field_declaration_list_item] = STATE(1046), + [sym_field_declaration] = STATE(1046), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1045), + [sym_template_declaration] = STATE(1046), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1045), - [sym_access_specifier] = STATE(1045), + [sym_friend_declaration] = STATE(1046), + [sym_access_specifier] = STATE(1046), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1045), - [sym_alias_declaration] = STATE(1045), + [sym_using_declaration] = STATE(1046), + [sym_alias_declaration] = STATE(1046), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1045), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1046), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2028), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2030), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -28772,7 +28828,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(392), }, [525] = { - [sym__type_declarator] = STATE(1046), + [sym__type_declarator] = STATE(1047), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -28783,14 +28839,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [526] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(1047), - [sym_sized_type_specifier] = STATE(1047), - [sym_enum_specifier] = STATE(1047), - [sym_struct_specifier] = STATE(1047), - [sym_union_specifier] = STATE(1047), - [sym_macro_type_specifier] = STATE(1047), - [sym_class_specifier] = STATE(1047), - [sym_dependent_type] = STATE(1047), + [sym__type_specifier] = STATE(1048), + [sym_sized_type_specifier] = STATE(1048), + [sym_enum_specifier] = STATE(1048), + [sym_struct_specifier] = STATE(1048), + [sym_union_specifier] = STATE(1048), + [sym_macro_type_specifier] = STATE(1048), + [sym_class_specifier] = STATE(1048), + [sym_dependent_type] = STATE(1048), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -28806,14 +28862,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(2030), + [sym_primitive_type] = ACTIONS(2032), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(2030), + [sym_auto] = ACTIONS(2032), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, @@ -28872,7 +28928,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [529] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(2032), + [sym_identifier] = ACTIONS(2034), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, @@ -28927,55 +28983,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(451), }, [532] = { - [anon_sym_LPAREN] = ACTIONS(2034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2036), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2034), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2034), - [anon_sym_typedef] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_register] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2036), - [anon_sym_const] = ACTIONS(2036), - [anon_sym_restrict] = ACTIONS(2036), - [anon_sym_volatile] = ACTIONS(2036), - [anon_sym__Atomic] = ACTIONS(2036), - [anon_sym_mutable] = ACTIONS(2036), - [anon_sym_explicit] = ACTIONS(2036), - [anon_sym_constexpr] = ACTIONS(2036), - [anon_sym_unsigned] = ACTIONS(2036), - [anon_sym_long] = ACTIONS(2036), - [anon_sym_short] = ACTIONS(2036), - [sym_primitive_type] = ACTIONS(2036), - [anon_sym_enum] = ACTIONS(2036), - [anon_sym_struct] = ACTIONS(2036), - [anon_sym_union] = ACTIONS(2036), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_TILDE] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2036), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2036), - [anon_sym_public] = ACTIONS(2036), - [sym_auto] = ACTIONS(2036), - [anon_sym_typename] = ACTIONS(2036), - [anon_sym_template] = ACTIONS(2036), - [anon_sym_friend] = ACTIONS(2036), - [anon_sym_private] = ACTIONS(2036), - [anon_sym_protected] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2036), - [anon_sym_COLON_COLON] = ACTIONS(2034), - [sym_operator_name] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2038), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2036), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2036), + [anon_sym_typedef] = ACTIONS(2038), + [anon_sym_extern] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_register] = ACTIONS(2038), + [anon_sym_inline] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_restrict] = ACTIONS(2038), + [anon_sym_volatile] = ACTIONS(2038), + [anon_sym__Atomic] = ACTIONS(2038), + [anon_sym_mutable] = ACTIONS(2038), + [anon_sym_explicit] = ACTIONS(2038), + [anon_sym_constexpr] = ACTIONS(2038), + [anon_sym_unsigned] = ACTIONS(2038), + [anon_sym_long] = ACTIONS(2038), + [anon_sym_short] = ACTIONS(2038), + [sym_primitive_type] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [anon_sym_struct] = ACTIONS(2038), + [anon_sym_union] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2036), + [anon_sym_TILDE] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [sym_auto] = ACTIONS(2038), + [anon_sym_typename] = ACTIONS(2038), + [anon_sym_template] = ACTIONS(2038), + [anon_sym_friend] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_protected] = ACTIONS(2038), + [anon_sym_using] = ACTIONS(2038), + [anon_sym_COLON_COLON] = ACTIONS(2036), + [sym_operator_name] = ACTIONS(2036), }, [533] = { - [sym_function_definition] = STATE(1049), - [sym_declaration] = STATE(1049), - [sym__declaration_specifiers] = STATE(1050), + [sym_function_definition] = STATE(1050), + [sym_declaration] = STATE(1050), + [sym__declaration_specifiers] = STATE(1051), [sym_storage_class_specifier] = STATE(305), [sym_type_qualifier] = STATE(305), [sym__type_specifier] = STATE(304), @@ -28983,7 +29039,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(304), [sym_struct_specifier] = STATE(304), [sym_union_specifier] = STATE(304), - [sym__empty_declaration] = STATE(1049), + [sym__empty_declaration] = STATE(1050), [sym_macro_type_specifier] = STATE(304), [sym_class_specifier] = STATE(304), [sym_dependent_type] = STATE(304), @@ -29018,61 +29074,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [534] = { - [anon_sym_LPAREN] = ACTIONS(2038), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2040), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2038), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2038), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2038), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2038), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2038), - [anon_sym_typedef] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_RBRACE] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_register] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_const] = ACTIONS(2040), - [anon_sym_restrict] = ACTIONS(2040), - [anon_sym_volatile] = ACTIONS(2040), - [anon_sym__Atomic] = ACTIONS(2040), - [anon_sym_mutable] = ACTIONS(2040), - [anon_sym_explicit] = ACTIONS(2040), - [anon_sym_constexpr] = ACTIONS(2040), - [anon_sym_unsigned] = ACTIONS(2040), - [anon_sym_long] = ACTIONS(2040), - [anon_sym_short] = ACTIONS(2040), - [sym_primitive_type] = ACTIONS(2040), - [anon_sym_enum] = ACTIONS(2040), - [anon_sym_struct] = ACTIONS(2040), - [anon_sym_union] = ACTIONS(2040), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_AMP_AMP] = ACTIONS(2038), - [anon_sym_TILDE] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2040), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [sym_auto] = ACTIONS(2040), - [anon_sym_typename] = ACTIONS(2040), - [anon_sym_template] = ACTIONS(2040), - [anon_sym_friend] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_protected] = ACTIONS(2040), - [anon_sym_using] = ACTIONS(2040), - [anon_sym_COLON_COLON] = ACTIONS(2038), - [sym_operator_name] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2042), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2040), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2040), + [anon_sym_typedef] = ACTIONS(2042), + [anon_sym_extern] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2040), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2042), + [anon_sym_register] = ACTIONS(2042), + [anon_sym_inline] = ACTIONS(2042), + [anon_sym_const] = ACTIONS(2042), + [anon_sym_restrict] = ACTIONS(2042), + [anon_sym_volatile] = ACTIONS(2042), + [anon_sym__Atomic] = ACTIONS(2042), + [anon_sym_mutable] = ACTIONS(2042), + [anon_sym_explicit] = ACTIONS(2042), + [anon_sym_constexpr] = ACTIONS(2042), + [anon_sym_unsigned] = ACTIONS(2042), + [anon_sym_long] = ACTIONS(2042), + [anon_sym_short] = ACTIONS(2042), + [sym_primitive_type] = ACTIONS(2042), + [anon_sym_enum] = ACTIONS(2042), + [anon_sym_struct] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_AMP_AMP] = ACTIONS(2040), + [anon_sym_TILDE] = ACTIONS(2040), + [sym_identifier] = ACTIONS(2042), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2042), + [anon_sym_public] = ACTIONS(2042), + [sym_auto] = ACTIONS(2042), + [anon_sym_typename] = ACTIONS(2042), + [anon_sym_template] = ACTIONS(2042), + [anon_sym_friend] = ACTIONS(2042), + [anon_sym_private] = ACTIONS(2042), + [anon_sym_protected] = ACTIONS(2042), + [anon_sym_using] = ACTIONS(2042), + [anon_sym_COLON_COLON] = ACTIONS(2040), + [sym_operator_name] = ACTIONS(2040), }, [535] = { - [sym__declarator] = STATE(1051), - [sym_pointer_declarator] = STATE(1051), - [sym_function_declarator] = STATE(1051), - [sym_array_declarator] = STATE(1051), - [sym_init_declarator] = STATE(1052), - [sym_reference_declarator] = STATE(1051), + [sym__declarator] = STATE(1052), + [sym_pointer_declarator] = STATE(1052), + [sym_function_declarator] = STATE(1052), + [sym_array_declarator] = STATE(1052), + [sym_init_declarator] = STATE(1053), + [sym_reference_declarator] = STATE(1052), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1051), - [sym_destructor_name] = STATE(1051), + [sym_template_function] = STATE(1052), + [sym_destructor_name] = STATE(1052), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -29084,11 +29140,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(2042), + [sym_operator_name] = ACTIONS(2044), }, [536] = { [anon_sym_LPAREN] = ACTIONS(228), - [anon_sym_SEMI] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2046), [anon_sym_extern] = ACTIONS(230), [anon_sym_STAR] = ACTIONS(228), [anon_sym_static] = ACTIONS(230), @@ -29111,23 +29167,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [537] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2048), + [anon_sym_EQ] = ACTIONS(2050), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, [538] = { [sym_template_type] = STATE(117), - [sym_scoped_identifier] = STATE(1057), + [sym_scoped_identifier] = STATE(1058), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(117), - [sym_identifier] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(186), }, [539] = { - [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_SEMI] = ACTIONS(2048), [sym_comment] = ACTIONS(49), }, [540] = { @@ -29156,79 +29212,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(512), }, [541] = { - [sym__field_declarator] = STATE(1060), + [sym__field_declarator] = STATE(1061), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1060), - [sym_scoped_field_identifier] = STATE(1061), + [sym_template_method] = STATE(1061), + [sym_scoped_field_identifier] = STATE(1062), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2058), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(2058), + [sym_operator_name] = ACTIONS(2060), }, [542] = { - [anon_sym_LPAREN] = ACTIONS(2060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2060), - [anon_sym_typedef] = ACTIONS(2062), - [anon_sym_extern] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2060), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_static] = ACTIONS(2062), - [anon_sym_register] = ACTIONS(2062), - [anon_sym_inline] = ACTIONS(2062), - [anon_sym_const] = ACTIONS(2062), - [anon_sym_restrict] = ACTIONS(2062), - [anon_sym_volatile] = ACTIONS(2062), - [anon_sym__Atomic] = ACTIONS(2062), - [anon_sym_mutable] = ACTIONS(2062), - [anon_sym_explicit] = ACTIONS(2062), - [anon_sym_constexpr] = ACTIONS(2062), - [anon_sym_unsigned] = ACTIONS(2062), - [anon_sym_long] = ACTIONS(2062), - [anon_sym_short] = ACTIONS(2062), - [sym_primitive_type] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_struct] = ACTIONS(2062), - [anon_sym_union] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_public] = ACTIONS(2062), - [sym_auto] = ACTIONS(2062), - [anon_sym_typename] = ACTIONS(2062), - [anon_sym_template] = ACTIONS(2062), - [anon_sym_friend] = ACTIONS(2062), - [anon_sym_private] = ACTIONS(2062), - [anon_sym_protected] = ACTIONS(2062), - [anon_sym_using] = ACTIONS(2062), - [anon_sym_COLON_COLON] = ACTIONS(2060), - [sym_operator_name] = ACTIONS(2060), + [anon_sym_LPAREN] = ACTIONS(2062), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2062), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2062), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2062), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2062), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2062), + [anon_sym_typedef] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_register] = ACTIONS(2064), + [anon_sym_inline] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_restrict] = ACTIONS(2064), + [anon_sym_volatile] = ACTIONS(2064), + [anon_sym__Atomic] = ACTIONS(2064), + [anon_sym_mutable] = ACTIONS(2064), + [anon_sym_explicit] = ACTIONS(2064), + [anon_sym_constexpr] = ACTIONS(2064), + [anon_sym_unsigned] = ACTIONS(2064), + [anon_sym_long] = ACTIONS(2064), + [anon_sym_short] = ACTIONS(2064), + [sym_primitive_type] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_AMP] = ACTIONS(2064), + [anon_sym_AMP_AMP] = ACTIONS(2062), + [anon_sym_TILDE] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2064), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2064), + [anon_sym_public] = ACTIONS(2064), + [sym_auto] = ACTIONS(2064), + [anon_sym_typename] = ACTIONS(2064), + [anon_sym_template] = ACTIONS(2064), + [anon_sym_friend] = ACTIONS(2064), + [anon_sym_private] = ACTIONS(2064), + [anon_sym_protected] = ACTIONS(2064), + [anon_sym_using] = ACTIONS(2064), + [anon_sym_COLON_COLON] = ACTIONS(2062), + [sym_operator_name] = ACTIONS(2062), }, [543] = { - [sym__field_declarator] = STATE(1062), + [sym__field_declarator] = STATE(1063), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1062), + [sym_template_method] = STATE(1063), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), @@ -29239,37 +29295,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(2064), + [sym_operator_name] = ACTIONS(2066), }, [544] = { - [sym__expression] = STATE(1063), - [sym_conditional_expression] = STATE(1063), - [sym_assignment_expression] = STATE(1063), - [sym_pointer_expression] = STATE(1063), - [sym_logical_expression] = STATE(1063), - [sym_bitwise_expression] = STATE(1063), - [sym_equality_expression] = STATE(1063), - [sym_relational_expression] = STATE(1063), - [sym_shift_expression] = STATE(1063), - [sym_math_expression] = STATE(1063), - [sym_cast_expression] = STATE(1063), - [sym_sizeof_expression] = STATE(1063), - [sym_subscript_expression] = STATE(1063), - [sym_call_expression] = STATE(1063), - [sym_field_expression] = STATE(1063), - [sym_compound_literal_expression] = STATE(1063), - [sym_parenthesized_expression] = STATE(1063), - [sym_concatenated_string] = STATE(1063), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1063), - [sym_new_expression] = STATE(1063), - [sym_delete_expression] = STATE(1063), - [sym_lambda_expression] = STATE(1063), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2066), + [sym__expression] = STATE(1064), + [sym_conditional_expression] = STATE(1064), + [sym_assignment_expression] = STATE(1064), + [sym_pointer_expression] = STATE(1064), + [sym_logical_expression] = STATE(1064), + [sym_bitwise_expression] = STATE(1064), + [sym_equality_expression] = STATE(1064), + [sym_relational_expression] = STATE(1064), + [sym_shift_expression] = STATE(1064), + [sym_math_expression] = STATE(1064), + [sym_cast_expression] = STATE(1064), + [sym_sizeof_expression] = STATE(1064), + [sym_subscript_expression] = STATE(1064), + [sym_call_expression] = STATE(1064), + [sym_field_expression] = STATE(1064), + [sym_compound_literal_expression] = STATE(1064), + [sym_parenthesized_expression] = STATE(1064), + [sym_concatenated_string] = STATE(1064), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1064), + [sym_new_expression] = STATE(1064), + [sym_delete_expression] = STATE(1064), + [sym_lambda_expression] = STATE(1064), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2068), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -29281,27 +29337,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(2066), - [sym_char_literal] = ACTIONS(2066), + [sym_number_literal] = ACTIONS(2068), + [sym_char_literal] = ACTIONS(2068), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(2068), - [sym_false] = ACTIONS(2068), - [sym_null] = ACTIONS(2068), + [sym_true] = ACTIONS(2070), + [sym_false] = ACTIONS(2070), + [sym_null] = ACTIONS(2070), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(2068), + [sym_nullptr] = ACTIONS(2070), }, [545] = { - [sym__field_declarator] = STATE(1064), + [sym__field_declarator] = STATE(1065), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1064), + [sym_template_method] = STATE(1065), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), @@ -29312,51 +29368,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(2070), + [sym_operator_name] = ACTIONS(2072), }, [546] = { - [sym_template_argument_list] = STATE(1066), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_COMMA] = ACTIONS(2072), - [anon_sym_RPAREN] = ACTIONS(2072), - [anon_sym_SEMI] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2072), - [anon_sym_COLON] = ACTIONS(2074), + [sym_template_argument_list] = STATE(1067), + [anon_sym_LPAREN] = ACTIONS(2074), + [anon_sym_COMMA] = ACTIONS(2074), + [anon_sym_RPAREN] = ACTIONS(2074), + [anon_sym_SEMI] = ACTIONS(2074), + [anon_sym_LBRACE] = ACTIONS(2074), + [anon_sym_LBRACK] = ACTIONS(2074), + [anon_sym_COLON] = ACTIONS(2076), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2076), + [anon_sym_COLON_COLON] = ACTIONS(2078), }, [547] = { - [sym_destructor_name] = STATE(916), + [sym_destructor_name] = STATE(917), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2080), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(1778), + [sym_operator_name] = ACTIONS(1780), }, [548] = { - [sym_compound_statement] = STATE(1072), - [sym_parameter_list] = STATE(1073), - [aux_sym_field_declaration_repeat1] = STATE(1074), + [sym_compound_statement] = STATE(1073), + [sym_parameter_list] = STATE(1074), + [aux_sym_field_declaration_repeat1] = STATE(1075), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(2082), + [anon_sym_COMMA] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(2084), [anon_sym_LBRACE] = ACTIONS(1049), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(2086), - [sym_comment] = ACTIONS(49), - }, - [549] = { - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_COMMA] = ACTIONS(2088), - [anon_sym_RPAREN] = ACTIONS(2088), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2088), + [anon_sym_LBRACK] = ACTIONS(2086), [anon_sym_COLON] = ACTIONS(2088), [sym_comment] = ACTIONS(49), }, - [550] = { + [549] = { [anon_sym_LPAREN] = ACTIONS(2090), [anon_sym_COMMA] = ACTIONS(2090), [anon_sym_RPAREN] = ACTIONS(2090), @@ -29366,7 +29412,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(2090), [sym_comment] = ACTIONS(49), }, - [551] = { + [550] = { [anon_sym_LPAREN] = ACTIONS(2092), [anon_sym_COMMA] = ACTIONS(2092), [anon_sym_RPAREN] = ACTIONS(2092), @@ -29376,7 +29422,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(2092), [sym_comment] = ACTIONS(49), }, - [552] = { + [551] = { [anon_sym_LPAREN] = ACTIONS(2094), [anon_sym_COMMA] = ACTIONS(2094), [anon_sym_RPAREN] = ACTIONS(2094), @@ -29386,19 +29432,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(2094), [sym_comment] = ACTIONS(49), }, + [552] = { + [anon_sym_LPAREN] = ACTIONS(2096), + [anon_sym_COMMA] = ACTIONS(2096), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_LBRACE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(2096), + [anon_sym_COLON] = ACTIONS(2096), + [sym_comment] = ACTIONS(49), + }, [553] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2096), + [anon_sym_COLON_COLON] = ACTIONS(2098), }, [554] = { - [sym_template_argument_list] = STATE(1077), - [anon_sym_LT] = ACTIONS(2098), + [sym_template_argument_list] = STATE(1078), + [anon_sym_LT] = ACTIONS(2100), [sym_comment] = ACTIONS(49), }, [555] = { - [sym_type_qualifier] = STATE(1079), - [sym_trailing_return_type] = STATE(1079), - [aux_sym_function_declarator_repeat1] = STATE(1079), + [sym_type_qualifier] = STATE(1080), + [sym_trailing_return_type] = STATE(1080), + [aux_sym_function_declarator_repeat1] = STATE(1080), [anon_sym_LPAREN] = ACTIONS(610), [anon_sym_SEMI] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(610), @@ -29411,67 +29467,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_COLON] = ACTIONS(610), - [anon_sym_DASH_GT] = ACTIONS(2100), + [anon_sym_DASH_GT] = ACTIONS(2102), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2102), + [sym_noexcept] = ACTIONS(2104), }, [556] = { - [anon_sym_LPAREN] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2104), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2106), - [anon_sym_extern] = ACTIONS(2106), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_STAR] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_register] = ACTIONS(2106), - [anon_sym_inline] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_restrict] = ACTIONS(2106), - [anon_sym_volatile] = ACTIONS(2106), - [anon_sym__Atomic] = ACTIONS(2106), - [anon_sym_mutable] = ACTIONS(2106), - [anon_sym_explicit] = ACTIONS(2106), - [anon_sym_constexpr] = ACTIONS(2106), - [anon_sym_unsigned] = ACTIONS(2106), - [anon_sym_long] = ACTIONS(2106), - [anon_sym_short] = ACTIONS(2106), - [sym_primitive_type] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2106), - [anon_sym_union] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2106), - [anon_sym_public] = ACTIONS(2106), - [sym_auto] = ACTIONS(2106), - [anon_sym_typename] = ACTIONS(2106), - [anon_sym_template] = ACTIONS(2106), - [anon_sym_friend] = ACTIONS(2106), - [anon_sym_private] = ACTIONS(2106), - [anon_sym_protected] = ACTIONS(2106), - [anon_sym_using] = ACTIONS(2106), - [anon_sym_COLON_COLON] = ACTIONS(2104), - [sym_operator_name] = ACTIONS(2104), + [anon_sym_LPAREN] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2108), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2106), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2106), + [anon_sym_typedef] = ACTIONS(2108), + [anon_sym_extern] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2106), + [anon_sym_STAR] = ACTIONS(2106), + [anon_sym_static] = ACTIONS(2108), + [anon_sym_register] = ACTIONS(2108), + [anon_sym_inline] = ACTIONS(2108), + [anon_sym_const] = ACTIONS(2108), + [anon_sym_restrict] = ACTIONS(2108), + [anon_sym_volatile] = ACTIONS(2108), + [anon_sym__Atomic] = ACTIONS(2108), + [anon_sym_mutable] = ACTIONS(2108), + [anon_sym_explicit] = ACTIONS(2108), + [anon_sym_constexpr] = ACTIONS(2108), + [anon_sym_unsigned] = ACTIONS(2108), + [anon_sym_long] = ACTIONS(2108), + [anon_sym_short] = ACTIONS(2108), + [sym_primitive_type] = ACTIONS(2108), + [anon_sym_enum] = ACTIONS(2108), + [anon_sym_struct] = ACTIONS(2108), + [anon_sym_union] = ACTIONS(2108), + [anon_sym_AMP] = ACTIONS(2108), + [anon_sym_AMP_AMP] = ACTIONS(2106), + [anon_sym_TILDE] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2108), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2108), + [anon_sym_public] = ACTIONS(2108), + [sym_auto] = ACTIONS(2108), + [anon_sym_typename] = ACTIONS(2108), + [anon_sym_template] = ACTIONS(2108), + [anon_sym_friend] = ACTIONS(2108), + [anon_sym_private] = ACTIONS(2108), + [anon_sym_protected] = ACTIONS(2108), + [anon_sym_using] = ACTIONS(2108), + [anon_sym_COLON_COLON] = ACTIONS(2106), + [sym_operator_name] = ACTIONS(2106), }, [557] = { - [sym_preproc_include] = STATE(1081), - [sym_preproc_def] = STATE(1081), - [sym_preproc_function_def] = STATE(1081), - [sym_preproc_call] = STATE(1081), + [sym_preproc_include] = STATE(1082), + [sym_preproc_def] = STATE(1082), + [sym_preproc_function_def] = STATE(1082), + [sym_preproc_call] = STATE(1082), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1081), - [sym_type_definition] = STATE(1081), + [sym_declaration] = STATE(1082), + [sym_type_definition] = STATE(1082), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1081), + [sym_compound_statement] = STATE(1082), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -29479,18 +29535,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1081), - [sym_expression_statement] = STATE(1081), - [sym_if_statement] = STATE(1081), - [sym_switch_statement] = STATE(1081), - [sym_case_statement] = STATE(1081), - [sym_while_statement] = STATE(1081), - [sym_do_statement] = STATE(1081), - [sym_for_statement] = STATE(1081), - [sym_return_statement] = STATE(1081), - [sym_break_statement] = STATE(1081), - [sym_continue_statement] = STATE(1081), - [sym_goto_statement] = STATE(1081), + [sym_labeled_statement] = STATE(1082), + [sym_expression_statement] = STATE(1082), + [sym_if_statement] = STATE(1082), + [sym_switch_statement] = STATE(1082), + [sym_case_statement] = STATE(1082), + [sym_while_statement] = STATE(1082), + [sym_do_statement] = STATE(1082), + [sym_for_statement] = STATE(1082), + [sym_return_statement] = STATE(1082), + [sym_break_statement] = STATE(1082), + [sym_continue_statement] = STATE(1082), + [sym_goto_statement] = STATE(1082), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -29510,14 +29566,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(1081), + [sym__empty_declaration] = STATE(1082), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1081), + [sym_structured_binding_declaration] = STATE(1082), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1081), + [sym_for_range_loop] = STATE(1082), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -29525,7 +29581,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1081), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1082), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -29540,7 +29596,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(2108), + [anon_sym_RBRACE] = ACTIONS(2110), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -29642,14 +29698,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(692), }, [559] = { - [sym_compound_statement] = STATE(1082), + [sym_compound_statement] = STATE(1083), [anon_sym_LBRACE] = ACTIONS(1049), [sym_comment] = ACTIONS(49), }, [560] = { - [sym_storage_class_specifier] = STATE(1083), - [sym_type_qualifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(1083), + [sym_storage_class_specifier] = STATE(1084), + [sym_type_qualifier] = STATE(1084), + [aux_sym__declaration_specifiers_repeat1] = STATE(1084), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_SEMI] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -29675,38 +29731,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [561] = { [sym_destructor_name] = STATE(428), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2112), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(702), }, [562] = { - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_mutable] = ACTIONS(2114), - [anon_sym_explicit] = ACTIONS(2114), - [anon_sym_constexpr] = ACTIONS(2114), - [anon_sym_COLON] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2114), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2112), - [sym_operator_name] = ACTIONS(2112), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_COMMA] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_COLON] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2116), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [sym_operator_name] = ACTIONS(2114), }, [563] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), @@ -29747,51 +29803,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(563), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), - [anon_sym_LPAREN] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_inline] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_restrict] = ACTIONS(2139), - [anon_sym_volatile] = ACTIONS(2139), - [anon_sym__Atomic] = ACTIONS(2139), - [anon_sym_mutable] = ACTIONS(2139), - [anon_sym_explicit] = ACTIONS(2139), - [anon_sym_constexpr] = ACTIONS(2139), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2166), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_public] = ACTIONS(2172), - [sym_auto] = ACTIONS(2145), - [anon_sym_typename] = ACTIONS(2175), - [anon_sym_template] = ACTIONS(2178), - [anon_sym_friend] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [sym_operator_name] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2118), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2127), + [anon_sym_typedef] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2136), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_restrict] = ACTIONS(2141), + [anon_sym_volatile] = ACTIONS(2141), + [anon_sym__Atomic] = ACTIONS(2141), + [anon_sym_mutable] = ACTIONS(2141), + [anon_sym_explicit] = ACTIONS(2141), + [anon_sym_constexpr] = ACTIONS(2141), + [anon_sym_unsigned] = ACTIONS(2144), + [anon_sym_long] = ACTIONS(2144), + [anon_sym_short] = ACTIONS(2144), + [sym_primitive_type] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2168), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2171), + [anon_sym_public] = ACTIONS(2174), + [sym_auto] = ACTIONS(2147), + [anon_sym_typename] = ACTIONS(2177), + [anon_sym_template] = ACTIONS(2180), + [anon_sym_friend] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [sym_operator_name] = ACTIONS(2192), }, [564] = { - [sym_compound_statement] = STATE(1082), - [sym_field_initializer_list] = STATE(1085), + [sym_compound_statement] = STATE(1083), + [sym_field_initializer_list] = STATE(1086), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_LBRACE] = ACTIONS(1049), [anon_sym_LBRACK] = ACTIONS(210), @@ -29799,9 +29855,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [565] = { - [sym_storage_class_specifier] = STATE(1086), - [sym_type_qualifier] = STATE(1086), - [aux_sym__declaration_specifiers_repeat1] = STATE(1086), + [sym_storage_class_specifier] = STATE(1087), + [sym_type_qualifier] = STATE(1087), + [aux_sym__declaration_specifiers_repeat1] = STATE(1087), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_SEMI] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -29840,9 +29896,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(2193), - [anon_sym_long] = ACTIONS(2193), - [anon_sym_short] = ACTIONS(2193), + [anon_sym_unsigned] = ACTIONS(2195), + [anon_sym_long] = ACTIONS(2195), + [anon_sym_short] = ACTIONS(2195), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), @@ -29853,25 +29909,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(816), }, [567] = { - [aux_sym_base_class_clause_repeat1] = STATE(1087), + [aux_sym_base_class_clause_repeat1] = STATE(1088), [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2198), [sym_comment] = ACTIONS(49), }, [568] = { - [sym__class_name] = STATE(1089), + [sym__class_name] = STATE(1090), [sym_template_type] = STATE(196), [sym_scoped_type_identifier] = STATE(80), [sym_scoped_namespace_identifier] = STATE(64), [sym_identifier] = ACTIONS(394), [sym_comment] = ACTIONS(49), - [anon_sym_public] = ACTIONS(2198), + [anon_sym_public] = ACTIONS(2200), [anon_sym_COLON_COLON] = ACTIONS(111), }, [569] = { - [aux_sym_base_class_clause_repeat1] = STATE(1090), + [aux_sym_base_class_clause_repeat1] = STATE(1091), [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2198), [sym_comment] = ACTIONS(49), }, [570] = { @@ -29905,92 +29961,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(1140), }, [571] = { - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2202), - [anon_sym_register] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2202), - [anon_sym_const] = ACTIONS(2202), - [anon_sym_restrict] = ACTIONS(2202), - [anon_sym_volatile] = ACTIONS(2202), - [anon_sym__Atomic] = ACTIONS(2202), - [anon_sym_mutable] = ACTIONS(2202), - [anon_sym_explicit] = ACTIONS(2202), - [anon_sym_constexpr] = ACTIONS(2202), - [anon_sym_COLON] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_register] = ACTIONS(2204), + [anon_sym_inline] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_restrict] = ACTIONS(2204), + [anon_sym_volatile] = ACTIONS(2204), + [anon_sym__Atomic] = ACTIONS(2204), + [anon_sym_mutable] = ACTIONS(2204), + [anon_sym_explicit] = ACTIONS(2204), + [anon_sym_constexpr] = ACTIONS(2204), + [anon_sym_COLON] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2202), + [anon_sym_TILDE] = ACTIONS(2202), + [anon_sym_GT] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2204), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2200), - [sym_operator_name] = ACTIONS(2200), + [anon_sym_COLON_COLON] = ACTIONS(2202), + [sym_operator_name] = ACTIONS(2202), }, [572] = { - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, [573] = { - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_inline] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [anon_sym_restrict] = ACTIONS(2206), - [anon_sym_volatile] = ACTIONS(2206), - [anon_sym__Atomic] = ACTIONS(2206), - [anon_sym_mutable] = ACTIONS(2206), - [anon_sym_explicit] = ACTIONS(2206), - [anon_sym_constexpr] = ACTIONS(2206), - [anon_sym_COLON] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2206), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2204), - [sym_operator_name] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2208), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_register] = ACTIONS(2208), + [anon_sym_inline] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_restrict] = ACTIONS(2208), + [anon_sym_volatile] = ACTIONS(2208), + [anon_sym__Atomic] = ACTIONS(2208), + [anon_sym_mutable] = ACTIONS(2208), + [anon_sym_explicit] = ACTIONS(2208), + [anon_sym_constexpr] = ACTIONS(2208), + [anon_sym_COLON] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2208), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2206), + [sym_operator_name] = ACTIONS(2206), }, [574] = { [sym_type_qualifier] = STATE(724), @@ -30011,7 +30067,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1091), + [sym_type_descriptor] = STATE(1092), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -30288,35 +30344,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1469), }, [579] = { - [sym__expression] = STATE(1093), - [sym_conditional_expression] = STATE(1093), - [sym_assignment_expression] = STATE(1093), - [sym_pointer_expression] = STATE(1093), - [sym_logical_expression] = STATE(1093), - [sym_bitwise_expression] = STATE(1093), - [sym_equality_expression] = STATE(1093), - [sym_relational_expression] = STATE(1093), - [sym_shift_expression] = STATE(1093), - [sym_math_expression] = STATE(1093), - [sym_cast_expression] = STATE(1093), - [sym_sizeof_expression] = STATE(1093), - [sym_subscript_expression] = STATE(1093), - [sym_call_expression] = STATE(1093), - [sym_field_expression] = STATE(1093), - [sym_compound_literal_expression] = STATE(1093), - [sym_parenthesized_expression] = STATE(1093), - [sym_concatenated_string] = STATE(1093), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1093), - [sym_new_expression] = STATE(1093), - [sym_delete_expression] = STATE(1093), - [sym_lambda_expression] = STATE(1093), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2210), + [sym__expression] = STATE(1094), + [sym_conditional_expression] = STATE(1094), + [sym_assignment_expression] = STATE(1094), + [sym_pointer_expression] = STATE(1094), + [sym_logical_expression] = STATE(1094), + [sym_bitwise_expression] = STATE(1094), + [sym_equality_expression] = STATE(1094), + [sym_relational_expression] = STATE(1094), + [sym_shift_expression] = STATE(1094), + [sym_math_expression] = STATE(1094), + [sym_cast_expression] = STATE(1094), + [sym_sizeof_expression] = STATE(1094), + [sym_subscript_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_field_expression] = STATE(1094), + [sym_compound_literal_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_concatenated_string] = STATE(1094), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1094), + [sym_new_expression] = STATE(1094), + [sym_delete_expression] = STATE(1094), + [sym_lambda_expression] = STATE(1094), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2210), + [anon_sym_LPAREN] = ACTIONS(2212), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -30327,21 +30383,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(2208), - [sym_char_literal] = ACTIONS(2208), + [sym_number_literal] = ACTIONS(2210), + [sym_char_literal] = ACTIONS(2210), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(2212), - [sym_false] = ACTIONS(2212), - [sym_null] = ACTIONS(2212), + [sym_true] = ACTIONS(2214), + [sym_false] = ACTIONS(2214), + [sym_null] = ACTIONS(2214), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(2212), + [sym_nullptr] = ACTIONS(2214), }, [580] = { - [aux_sym_concatenated_string_repeat1] = STATE(1094), + [aux_sym_concatenated_string_repeat1] = STATE(1095), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_RPAREN] = ACTIONS(1477), @@ -30380,12 +30436,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2214), + [sym_string_literal] = ACTIONS(2216), [sym_comment] = ACTIONS(49), }, [581] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_RPAREN] = ACTIONS(1477), @@ -30430,48 +30486,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, [582] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2222), [sym_operator_name] = ACTIONS(190), }, [583] = { - [sym__expression] = STATE(1100), - [sym_conditional_expression] = STATE(1100), - [sym_assignment_expression] = STATE(1100), - [sym_pointer_expression] = STATE(1100), - [sym_logical_expression] = STATE(1100), - [sym_bitwise_expression] = STATE(1100), - [sym_equality_expression] = STATE(1100), - [sym_relational_expression] = STATE(1100), - [sym_shift_expression] = STATE(1100), - [sym_math_expression] = STATE(1100), - [sym_cast_expression] = STATE(1100), - [sym_sizeof_expression] = STATE(1100), - [sym_subscript_expression] = STATE(1100), - [sym_call_expression] = STATE(1100), - [sym_field_expression] = STATE(1100), - [sym_compound_literal_expression] = STATE(1100), - [sym_parenthesized_expression] = STATE(1100), - [sym_concatenated_string] = STATE(1100), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1100), - [sym_new_expression] = STATE(1100), - [sym_delete_expression] = STATE(1100), - [sym_lambda_expression] = STATE(1100), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2222), + [sym__expression] = STATE(1101), + [sym_conditional_expression] = STATE(1101), + [sym_assignment_expression] = STATE(1101), + [sym_pointer_expression] = STATE(1101), + [sym_logical_expression] = STATE(1101), + [sym_bitwise_expression] = STATE(1101), + [sym_equality_expression] = STATE(1101), + [sym_relational_expression] = STATE(1101), + [sym_shift_expression] = STATE(1101), + [sym_math_expression] = STATE(1101), + [sym_cast_expression] = STATE(1101), + [sym_sizeof_expression] = STATE(1101), + [sym_subscript_expression] = STATE(1101), + [sym_call_expression] = STATE(1101), + [sym_field_expression] = STATE(1101), + [sym_compound_literal_expression] = STATE(1101), + [sym_parenthesized_expression] = STATE(1101), + [sym_concatenated_string] = STATE(1101), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1101), + [sym_new_expression] = STATE(1101), + [sym_delete_expression] = STATE(1101), + [sym_lambda_expression] = STATE(1101), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2224), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(2224), + [anon_sym_LBRACK] = ACTIONS(2226), [anon_sym_AMP] = ACTIONS(1089), [anon_sym_BANG] = ACTIONS(1091), [anon_sym_TILDE] = ACTIONS(1093), @@ -30480,55 +30536,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(2222), - [sym_char_literal] = ACTIONS(2222), + [sym_number_literal] = ACTIONS(2224), + [sym_char_literal] = ACTIONS(2224), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(2226), - [sym_false] = ACTIONS(2226), - [sym_null] = ACTIONS(2226), + [sym_true] = ACTIONS(2228), + [sym_false] = ACTIONS(2228), + [sym_null] = ACTIONS(2228), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(2226), + [sym_nullptr] = ACTIONS(2228), }, [584] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2232), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -30536,14 +30592,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [585] = { - [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2232), [sym_comment] = ACTIONS(49), }, [586] = { [sym_initializer_list] = STATE(804), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), }, [587] = { [sym_initializer_list] = STATE(804), @@ -30554,7 +30610,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [588] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2260), + [anon_sym_COLON_COLON] = ACTIONS(2262), }, [589] = { [sym_field_declaration_list] = STATE(265), @@ -30622,10 +30678,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [593] = { [sym__declaration_specifiers] = STATE(344), - [sym__abstract_declarator] = STATE(1118), - [sym_abstract_pointer_declarator] = STATE(1118), - [sym_abstract_function_declarator] = STATE(1118), - [sym_abstract_array_declarator] = STATE(1118), + [sym__abstract_declarator] = STATE(1119), + [sym_abstract_pointer_declarator] = STATE(1119), + [sym_abstract_function_declarator] = STATE(1119), + [sym_abstract_array_declarator] = STATE(1119), [sym_storage_class_specifier] = STATE(346), [sym_type_qualifier] = STATE(346), [sym__type_specifier] = STATE(345), @@ -30633,12 +30689,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(345), [sym_struct_specifier] = STATE(345), [sym_union_specifier] = STATE(345), - [sym_parameter_list] = STATE(1119), + [sym_parameter_list] = STATE(1120), [sym_parameter_declaration] = STATE(341), [sym_macro_type_specifier] = STATE(345), [sym_class_specifier] = STATE(345), [sym_dependent_type] = STATE(345), - [sym_abstract_reference_declarator] = STATE(1118), + [sym_abstract_reference_declarator] = STATE(1119), [sym_template_type] = STATE(94), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(81), @@ -30648,7 +30704,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(554), [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_extern] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), @@ -30667,8 +30723,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_identifier] = ACTIONS(152), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), @@ -30677,23 +30733,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [594] = { - [sym__abstract_declarator] = STATE(1120), - [sym_abstract_pointer_declarator] = STATE(1120), - [sym_abstract_function_declarator] = STATE(1120), - [sym_abstract_array_declarator] = STATE(1120), + [sym__abstract_declarator] = STATE(1121), + [sym_abstract_pointer_declarator] = STATE(1121), + [sym_abstract_function_declarator] = STATE(1121), + [sym_abstract_array_declarator] = STATE(1121), [sym_parameter_list] = STATE(598), - [sym_abstract_reference_declarator] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(1121), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), [anon_sym_STAR] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1123), [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), [sym_comment] = ACTIONS(49), }, [595] = { - [sym__declaration_specifiers] = STATE(1122), + [sym__declaration_specifiers] = STATE(1123), [sym_storage_class_specifier] = STATE(374), [sym_type_qualifier] = STATE(374), [sym__type_specifier] = STATE(367), @@ -30701,44 +30757,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(367), [sym_struct_specifier] = STATE(367), [sym_union_specifier] = STATE(367), - [sym__expression] = STATE(1123), - [sym_conditional_expression] = STATE(1123), - [sym_assignment_expression] = STATE(1123), - [sym_pointer_expression] = STATE(1123), - [sym_logical_expression] = STATE(1123), - [sym_bitwise_expression] = STATE(1123), - [sym_equality_expression] = STATE(1123), - [sym_relational_expression] = STATE(1123), - [sym_shift_expression] = STATE(1123), - [sym_math_expression] = STATE(1123), - [sym_cast_expression] = STATE(1123), - [sym_sizeof_expression] = STATE(1123), - [sym_subscript_expression] = STATE(1123), - [sym_call_expression] = STATE(1123), - [sym_field_expression] = STATE(1123), - [sym_compound_literal_expression] = STATE(1123), - [sym_parenthesized_expression] = STATE(1123), - [sym_concatenated_string] = STATE(1123), + [sym__expression] = STATE(1124), + [sym_conditional_expression] = STATE(1124), + [sym_assignment_expression] = STATE(1124), + [sym_pointer_expression] = STATE(1124), + [sym_logical_expression] = STATE(1124), + [sym_bitwise_expression] = STATE(1124), + [sym_equality_expression] = STATE(1124), + [sym_relational_expression] = STATE(1124), + [sym_shift_expression] = STATE(1124), + [sym_math_expression] = STATE(1124), + [sym_cast_expression] = STATE(1124), + [sym_sizeof_expression] = STATE(1124), + [sym_subscript_expression] = STATE(1124), + [sym_call_expression] = STATE(1124), + [sym_field_expression] = STATE(1124), + [sym_compound_literal_expression] = STATE(1124), + [sym_parenthesized_expression] = STATE(1124), + [sym_concatenated_string] = STATE(1124), [sym_macro_type_specifier] = STATE(367), [sym_class_specifier] = STATE(367), [sym_dependent_type] = STATE(367), [sym_template_type] = STATE(369), - [sym_template_function] = STATE(1123), - [sym_new_expression] = STATE(1123), - [sym_delete_expression] = STATE(1123), - [sym_lambda_expression] = STATE(1123), + [sym_template_function] = STATE(1124), + [sym_new_expression] = STATE(1124), + [sym_delete_expression] = STATE(1124), + [sym_lambda_expression] = STATE(1124), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(372), [sym_scoped_namespace_identifier] = STATE(373), [aux_sym__declaration_specifiers_repeat1] = STATE(374), [aux_sym_sized_type_specifier_repeat1] = STATE(375), - [sym_raw_string_literal] = ACTIONS(2270), + [sym_raw_string_literal] = ACTIONS(2272), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_RBRACK] = ACTIONS(2274), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), [anon_sym_inline] = ACTIONS(154), @@ -30764,12 +30820,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2270), - [sym_char_literal] = ACTIONS(2270), + [sym_number_literal] = ACTIONS(2272), + [sym_char_literal] = ACTIONS(2272), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), + [sym_true] = ACTIONS(2276), + [sym_false] = ACTIONS(2276), + [sym_null] = ACTIONS(2276), [sym_identifier] = ACTIONS(598), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(600), @@ -30778,39 +30834,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(606), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2274), + [sym_nullptr] = ACTIONS(2276), }, [596] = { - [sym__abstract_declarator] = STATE(1124), - [sym_abstract_pointer_declarator] = STATE(1124), - [sym_abstract_function_declarator] = STATE(1124), - [sym_abstract_array_declarator] = STATE(1124), + [sym__abstract_declarator] = STATE(1125), + [sym_abstract_pointer_declarator] = STATE(1125), + [sym_abstract_function_declarator] = STATE(1125), + [sym_abstract_array_declarator] = STATE(1125), [sym_parameter_list] = STATE(598), - [sym_abstract_reference_declarator] = STATE(1124), + [sym_abstract_reference_declarator] = STATE(1125), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), [anon_sym_STAR] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1123), [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), [sym_comment] = ACTIONS(49), }, [597] = { - [sym_parameter_list] = STATE(1126), + [sym_parameter_list] = STATE(1127), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2278), + [anon_sym_COMMA] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(2280), [sym_comment] = ACTIONS(49), }, [598] = { - [sym_type_qualifier] = STATE(1129), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1129), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), + [sym_type_qualifier] = STATE(1130), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1130), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -30818,10 +30874,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2286), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2286), + [sym_noexcept] = ACTIONS(2288), }, [599] = { [sym_type_qualifier] = STATE(279), @@ -30830,8 +30886,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1130), - [sym_parenthesized_expression] = STATE(1130), + [sym_type_descriptor] = STATE(1131), + [sym_parenthesized_expression] = STATE(1131), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -30863,55 +30919,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(111), }, [600] = { - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_inline] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_restrict] = ACTIONS(2290), - [anon_sym_volatile] = ACTIONS(2290), - [anon_sym__Atomic] = ACTIONS(2290), - [anon_sym_mutable] = ACTIONS(2290), - [anon_sym_explicit] = ACTIONS(2290), - [anon_sym_constexpr] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_inline] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_restrict] = ACTIONS(2292), + [anon_sym_volatile] = ACTIONS(2292), + [anon_sym__Atomic] = ACTIONS(2292), + [anon_sym_mutable] = ACTIONS(2292), + [anon_sym_explicit] = ACTIONS(2292), + [anon_sym_constexpr] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [sym_operator_name] = ACTIONS(2288), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [sym_operator_name] = ACTIONS(2290), }, [601] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2294), [sym_comment] = ACTIONS(49), }, [602] = { - [sym__abstract_declarator] = STATE(1133), - [sym_abstract_pointer_declarator] = STATE(1133), - [sym_abstract_function_declarator] = STATE(1133), - [sym_abstract_array_declarator] = STATE(1133), + [sym__abstract_declarator] = STATE(1134), + [sym_abstract_pointer_declarator] = STATE(1134), + [sym_abstract_function_declarator] = STATE(1134), + [sym_abstract_array_declarator] = STATE(1134), [sym_parameter_list] = STATE(598), - [sym_abstract_reference_declarator] = STATE(1133), + [sym_abstract_reference_declarator] = STATE(1134), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_COMMA] = ACTIONS(2280), [anon_sym_STAR] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1123), [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(2278), + [anon_sym_GT] = ACTIONS(2280), [sym_comment] = ACTIONS(49), }, [603] = { @@ -30920,9 +30976,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(2294), - [anon_sym_long] = ACTIONS(2294), - [anon_sym_short] = ACTIONS(2294), + [anon_sym_unsigned] = ACTIONS(2296), + [anon_sym_long] = ACTIONS(2296), + [anon_sym_short] = ACTIONS(2296), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -30931,42 +30987,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [604] = { - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_register] = ACTIONS(2299), - [anon_sym_inline] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_restrict] = ACTIONS(2299), - [anon_sym_volatile] = ACTIONS(2299), - [anon_sym__Atomic] = ACTIONS(2299), - [anon_sym_mutable] = ACTIONS(2299), - [anon_sym_explicit] = ACTIONS(2299), - [anon_sym_constexpr] = ACTIONS(2299), - [anon_sym_COLON] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2299), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2297), - [sym_operator_name] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2299), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_register] = ACTIONS(2301), + [anon_sym_inline] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_restrict] = ACTIONS(2301), + [anon_sym_volatile] = ACTIONS(2301), + [anon_sym__Atomic] = ACTIONS(2301), + [anon_sym_mutable] = ACTIONS(2301), + [anon_sym_explicit] = ACTIONS(2301), + [anon_sym_constexpr] = ACTIONS(2301), + [anon_sym_COLON] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2301), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [sym_operator_name] = ACTIONS(2299), }, [605] = { [sym_template_argument_list] = STATE(263), [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_COMMA] = ACTIONS(2303), [anon_sym_extern] = ACTIONS(144), [anon_sym_STAR] = ACTIONS(142), [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_EQ] = ACTIONS(2303), + [anon_sym_EQ] = ACTIONS(2305), [anon_sym_static] = ACTIONS(144), [anon_sym_register] = ACTIONS(144), [anon_sym_inline] = ACTIONS(144), @@ -30981,7 +31037,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(142), [anon_sym_TILDE] = ACTIONS(142), [anon_sym_LT] = ACTIONS(146), - [anon_sym_GT] = ACTIONS(2301), + [anon_sym_GT] = ACTIONS(2303), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(402), @@ -31017,13 +31073,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [607] = { [sym__declaration_specifiers] = STATE(344), [sym__declarator] = STATE(45), - [sym__abstract_declarator] = STATE(1118), + [sym__abstract_declarator] = STATE(1119), [sym_pointer_declarator] = STATE(45), - [sym_abstract_pointer_declarator] = STATE(1118), + [sym_abstract_pointer_declarator] = STATE(1119), [sym_function_declarator] = STATE(45), - [sym_abstract_function_declarator] = STATE(1118), + [sym_abstract_function_declarator] = STATE(1119), [sym_array_declarator] = STATE(45), - [sym_abstract_array_declarator] = STATE(1118), + [sym_abstract_array_declarator] = STATE(1119), [sym_storage_class_specifier] = STATE(346), [sym_type_qualifier] = STATE(346), [sym__type_specifier] = STATE(345), @@ -31031,13 +31087,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(345), [sym_struct_specifier] = STATE(345), [sym_union_specifier] = STATE(345), - [sym_parameter_list] = STATE(1119), + [sym_parameter_list] = STATE(1120), [sym_parameter_declaration] = STATE(341), [sym_macro_type_specifier] = STATE(345), [sym_class_specifier] = STATE(345), [sym_dependent_type] = STATE(345), [sym_reference_declarator] = STATE(45), - [sym_abstract_reference_declarator] = STATE(1118), + [sym_abstract_reference_declarator] = STATE(1119), [sym_template_type] = STATE(32), [sym_template_function] = STATE(45), [sym_destructor_name] = STATE(45), @@ -31050,7 +31106,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(554), [anon_sym_RPAREN] = ACTIONS(556), [anon_sym_extern] = ACTIONS(154), - [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2307), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), @@ -31069,8 +31125,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2311), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(47), [sym_comment] = ACTIONS(49), @@ -31081,66 +31137,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(79), }, [608] = { - [sym__declarator] = STATE(1137), - [sym__abstract_declarator] = STATE(1120), - [sym_pointer_declarator] = STATE(1137), - [sym_abstract_pointer_declarator] = STATE(1120), - [sym_function_declarator] = STATE(1137), - [sym_abstract_function_declarator] = STATE(1120), - [sym_array_declarator] = STATE(1137), - [sym_abstract_array_declarator] = STATE(1120), + [sym__declarator] = STATE(1138), + [sym__abstract_declarator] = STATE(1121), + [sym_pointer_declarator] = STATE(1138), + [sym_abstract_pointer_declarator] = STATE(1121), + [sym_function_declarator] = STATE(1138), + [sym_abstract_function_declarator] = STATE(1121), + [sym_array_declarator] = STATE(1138), + [sym_abstract_array_declarator] = STATE(1121), [sym_parameter_list] = STATE(598), - [sym_reference_declarator] = STATE(1137), - [sym_abstract_reference_declarator] = STATE(1120), + [sym_reference_declarator] = STATE(1138), + [sym_abstract_reference_declarator] = STATE(1121), [sym_template_type] = STATE(615), - [sym_template_function] = STATE(1137), - [sym_destructor_name] = STATE(1137), + [sym_template_function] = STATE(1138), + [sym_destructor_name] = STATE(1138), [sym_scoped_identifier] = STATE(616), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(615), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), [anon_sym_STAR] = ACTIONS(1166), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1168), [anon_sym_AMP_AMP] = ACTIONS(1170), [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(2268), + [anon_sym_GT] = ACTIONS(2270), [sym_identifier] = ACTIONS(1172), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1174), - [sym_operator_name] = ACTIONS(2311), + [sym_operator_name] = ACTIONS(2313), }, [609] = { - [sym__declarator] = STATE(1138), - [sym__abstract_declarator] = STATE(1124), - [sym_pointer_declarator] = STATE(1138), - [sym_abstract_pointer_declarator] = STATE(1124), - [sym_function_declarator] = STATE(1138), - [sym_abstract_function_declarator] = STATE(1124), - [sym_array_declarator] = STATE(1138), - [sym_abstract_array_declarator] = STATE(1124), + [sym__declarator] = STATE(1139), + [sym__abstract_declarator] = STATE(1125), + [sym_pointer_declarator] = STATE(1139), + [sym_abstract_pointer_declarator] = STATE(1125), + [sym_function_declarator] = STATE(1139), + [sym_abstract_function_declarator] = STATE(1125), + [sym_array_declarator] = STATE(1139), + [sym_abstract_array_declarator] = STATE(1125), [sym_parameter_list] = STATE(598), - [sym_reference_declarator] = STATE(1138), - [sym_abstract_reference_declarator] = STATE(1124), + [sym_reference_declarator] = STATE(1139), + [sym_abstract_reference_declarator] = STATE(1125), [sym_template_type] = STATE(615), - [sym_template_function] = STATE(1138), - [sym_destructor_name] = STATE(1138), + [sym_template_function] = STATE(1139), + [sym_destructor_name] = STATE(1139), [sym_scoped_identifier] = STATE(616), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(615), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), [anon_sym_STAR] = ACTIONS(1166), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1168), [anon_sym_AMP_AMP] = ACTIONS(1170), [anon_sym_TILDE] = ACTIONS(45), - [anon_sym_GT] = ACTIONS(2276), + [anon_sym_GT] = ACTIONS(2278), [sym_identifier] = ACTIONS(1172), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1174), - [sym_operator_name] = ACTIONS(2313), + [sym_operator_name] = ACTIONS(2315), }, [610] = { [sym_template_argument_list] = STATE(156), @@ -31152,47 +31208,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(146), [anon_sym_GT] = ACTIONS(210), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2315), + [anon_sym_COLON_COLON] = ACTIONS(2317), }, [611] = { - [sym_destructor_name] = STATE(1140), + [sym_destructor_name] = STATE(1141), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(267), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(2317), + [sym_operator_name] = ACTIONS(2319), }, [612] = { - [sym_parameter_list] = STATE(1144), + [sym_parameter_list] = STATE(1145), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [anon_sym_LPAREN] = ACTIONS(2319), - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2323), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_LBRACE] = ACTIONS(2325), [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_EQ] = ACTIONS(2325), - [anon_sym_GT] = ACTIONS(2321), + [anon_sym_EQ] = ACTIONS(2327), + [anon_sym_GT] = ACTIONS(2323), [sym_comment] = ACTIONS(49), }, [613] = { - [sym_parameter_list] = STATE(1126), + [sym_parameter_list] = STATE(1127), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(2323), [sym_comment] = ACTIONS(49), }, [614] = { - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_GT] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_GT] = ACTIONS(2323), [sym_comment] = ACTIONS(49), }, [615] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2327), + [anon_sym_COLON_COLON] = ACTIONS(2329), }, [616] = { - [sym_template_argument_list] = STATE(1146), + [sym_template_argument_list] = STATE(1147), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(210), [anon_sym_LBRACE] = ACTIONS(210), @@ -31203,9 +31259,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [617] = { - [sym_storage_class_specifier] = STATE(1147), - [sym_type_qualifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(1147), + [sym_storage_class_specifier] = STATE(1148), + [sym_type_qualifier] = STATE(1148), + [aux_sym__declaration_specifiers_repeat1] = STATE(1148), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_COMMA] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -31239,12 +31295,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(290), [sym_struct_specifier] = STATE(290), [sym_union_specifier] = STATE(290), - [sym_parameter_declaration] = STATE(1148), + [sym_parameter_declaration] = STATE(1149), [sym_macro_type_specifier] = STATE(290), [sym_class_specifier] = STATE(290), [sym_dependent_type] = STATE(290), - [sym_type_parameter_declaration] = STATE(1148), - [sym_optional_type_parameter_declaration] = STATE(1148), + [sym_type_parameter_declaration] = STATE(1149), + [sym_optional_type_parameter_declaration] = STATE(1149), [sym_template_type] = STATE(94), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(81), @@ -31276,41 +31332,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [619] = { - [anon_sym_extern] = ACTIONS(2329), - [anon_sym_static] = ACTIONS(2329), - [anon_sym_register] = ACTIONS(2329), - [anon_sym_inline] = ACTIONS(2329), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_restrict] = ACTIONS(2329), - [anon_sym_volatile] = ACTIONS(2329), - [anon_sym__Atomic] = ACTIONS(2329), - [anon_sym_mutable] = ACTIONS(2329), - [anon_sym_explicit] = ACTIONS(2329), - [anon_sym_constexpr] = ACTIONS(2329), - [anon_sym_unsigned] = ACTIONS(2329), - [anon_sym_long] = ACTIONS(2329), - [anon_sym_short] = ACTIONS(2329), - [sym_primitive_type] = ACTIONS(2329), - [anon_sym_enum] = ACTIONS(2329), - [anon_sym_struct] = ACTIONS(2329), - [anon_sym_union] = ACTIONS(2329), - [sym_identifier] = ACTIONS(2329), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2329), - [sym_auto] = ACTIONS(2329), - [anon_sym_typename] = ACTIONS(2329), - [anon_sym_COLON_COLON] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_register] = ACTIONS(2331), + [anon_sym_inline] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_restrict] = ACTIONS(2331), + [anon_sym_volatile] = ACTIONS(2331), + [anon_sym__Atomic] = ACTIONS(2331), + [anon_sym_mutable] = ACTIONS(2331), + [anon_sym_explicit] = ACTIONS(2331), + [anon_sym_constexpr] = ACTIONS(2331), + [anon_sym_unsigned] = ACTIONS(2331), + [anon_sym_long] = ACTIONS(2331), + [anon_sym_short] = ACTIONS(2331), + [sym_primitive_type] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [sym_identifier] = ACTIONS(2331), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2331), + [sym_auto] = ACTIONS(2331), + [anon_sym_typename] = ACTIONS(2331), + [anon_sym_COLON_COLON] = ACTIONS(2333), }, [620] = { - [aux_sym_template_parameter_list_repeat1] = STATE(1150), + [aux_sym_template_parameter_list_repeat1] = STATE(1151), [anon_sym_COMMA] = ACTIONS(1178), - [anon_sym_GT] = ACTIONS(2333), + [anon_sym_GT] = ACTIONS(2335), [sym_comment] = ACTIONS(49), }, [621] = { - [sym_storage_class_specifier] = STATE(1151), - [sym_type_qualifier] = STATE(1151), - [aux_sym__declaration_specifiers_repeat1] = STATE(1151), + [sym_storage_class_specifier] = STATE(1152), + [sym_type_qualifier] = STATE(1152), + [aux_sym__declaration_specifiers_repeat1] = STATE(1152), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_COMMA] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -31352,9 +31408,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(2335), - [anon_sym_long] = ACTIONS(2335), - [anon_sym_short] = ACTIONS(2335), + [anon_sym_unsigned] = ACTIONS(2337), + [anon_sym_long] = ACTIONS(2337), + [anon_sym_short] = ACTIONS(2337), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -31391,80 +31447,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(1140), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2340), - [sym_preproc_directive] = ACTIONS(2340), - [anon_sym_typedef] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_register] = ACTIONS(2340), - [anon_sym_inline] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_restrict] = ACTIONS(2340), - [anon_sym_volatile] = ACTIONS(2340), - [anon_sym__Atomic] = ACTIONS(2340), - [anon_sym_mutable] = ACTIONS(2340), - [anon_sym_explicit] = ACTIONS(2340), - [anon_sym_constexpr] = ACTIONS(2340), - [anon_sym_unsigned] = ACTIONS(2340), - [anon_sym_long] = ACTIONS(2340), - [anon_sym_short] = ACTIONS(2340), - [sym_primitive_type] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2340), - [sym_auto] = ACTIONS(2340), - [anon_sym_typename] = ACTIONS(2340), - [anon_sym_template] = ACTIONS(2340), - [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_using] = ACTIONS(2340), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [sym_operator_name] = ACTIONS(2338), + [ts_builtin_sym_end] = ACTIONS(2340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2342), + [sym_preproc_directive] = ACTIONS(2342), + [anon_sym_typedef] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_inline] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_restrict] = ACTIONS(2342), + [anon_sym_volatile] = ACTIONS(2342), + [anon_sym__Atomic] = ACTIONS(2342), + [anon_sym_mutable] = ACTIONS(2342), + [anon_sym_explicit] = ACTIONS(2342), + [anon_sym_constexpr] = ACTIONS(2342), + [anon_sym_unsigned] = ACTIONS(2342), + [anon_sym_long] = ACTIONS(2342), + [anon_sym_short] = ACTIONS(2342), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2342), + [sym_auto] = ACTIONS(2342), + [anon_sym_typename] = ACTIONS(2342), + [anon_sym_template] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2342), + [anon_sym_using] = ACTIONS(2342), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [sym_operator_name] = ACTIONS(2340), }, [625] = { - [sym__type_specifier] = STATE(1153), - [sym_sized_type_specifier] = STATE(1153), - [sym_enum_specifier] = STATE(1153), - [sym_struct_specifier] = STATE(1153), - [sym_union_specifier] = STATE(1153), - [sym_macro_type_specifier] = STATE(1153), - [sym_class_specifier] = STATE(1153), - [sym_dependent_type] = STATE(1153), + [sym__type_specifier] = STATE(1154), + [sym_sized_type_specifier] = STATE(1154), + [sym_enum_specifier] = STATE(1154), + [sym_struct_specifier] = STATE(1154), + [sym_union_specifier] = STATE(1154), + [sym_macro_type_specifier] = STATE(1154), + [sym_class_specifier] = STATE(1154), + [sym_dependent_type] = STATE(1154), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1154), - [anon_sym_unsigned] = ACTIONS(2342), - [anon_sym_long] = ACTIONS(2342), - [anon_sym_short] = ACTIONS(2342), - [sym_primitive_type] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1155), + [anon_sym_unsigned] = ACTIONS(2344), + [anon_sym_long] = ACTIONS(2344), + [anon_sym_short] = ACTIONS(2344), + [sym_primitive_type] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(2344), - [anon_sym_typename] = ACTIONS(2346), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(2346), + [anon_sym_typename] = ACTIONS(2348), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [626] = { - [sym_type_qualifier] = STATE(1155), - [sym_trailing_return_type] = STATE(1155), - [aux_sym_function_declarator_repeat1] = STATE(1155), + [sym_type_qualifier] = STATE(1156), + [sym_trailing_return_type] = STATE(1156), + [aux_sym_function_declarator_repeat1] = STATE(1156), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), [anon_sym_LBRACK] = ACTIONS(1596), @@ -31477,25 +31533,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1194), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2348), + [sym_noexcept] = ACTIONS(2350), }, [627] = { [sym_storage_class_specifier] = STATE(627), [sym_type_qualifier] = STATE(627), [aux_sym__declaration_specifiers_repeat1] = STATE(627), [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), [anon_sym_STAR] = ACTIONS(798), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -31505,9 +31561,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(798), }, [628] = { - [sym_storage_class_specifier] = STATE(1156), - [sym_type_qualifier] = STATE(1156), - [aux_sym__declaration_specifiers_repeat1] = STATE(1156), + [sym_storage_class_specifier] = STATE(1157), + [sym_type_qualifier] = STATE(1157), + [aux_sym__declaration_specifiers_repeat1] = STATE(1157), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_SEMI] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -31531,9 +31587,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(696), }, [629] = { - [sym_storage_class_specifier] = STATE(1157), - [sym_type_qualifier] = STATE(1157), - [aux_sym__declaration_specifiers_repeat1] = STATE(1157), + [sym_storage_class_specifier] = STATE(1158), + [sym_type_qualifier] = STATE(1158), + [aux_sym__declaration_specifiers_repeat1] = STATE(1158), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_SEMI] = ACTIONS(696), [anon_sym_extern] = ACTIONS(218), @@ -31572,9 +31628,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(2350), - [anon_sym_long] = ACTIONS(2350), - [anon_sym_short] = ACTIONS(2350), + [anon_sym_unsigned] = ACTIONS(2352), + [anon_sym_long] = ACTIONS(2352), + [anon_sym_short] = ACTIONS(2352), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -31585,37 +31641,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(816), }, [631] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, [632] = { [sym_storage_class_specifier] = STATE(627), [sym_type_qualifier] = STATE(627), [aux_sym__declaration_specifiers_repeat1] = STATE(627), - [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_LPAREN] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -31626,57 +31682,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(2353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2355), - [sym_auto] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2353), + [ts_builtin_sym_end] = ACTIONS(2355), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2355), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2355), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2357), + [sym_auto] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2355), }, [634] = { [sym_preproc_include] = STATE(634), @@ -31792,34 +31848,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(111), }, [636] = { - [sym__abstract_declarator] = STATE(1160), - [sym_abstract_pointer_declarator] = STATE(1160), - [sym_abstract_function_declarator] = STATE(1160), - [sym_abstract_array_declarator] = STATE(1160), - [sym_parameter_list] = STATE(1161), - [sym_abstract_reference_declarator] = STATE(1160), + [sym__abstract_declarator] = STATE(1161), + [sym_abstract_pointer_declarator] = STATE(1161), + [sym_abstract_function_declarator] = STATE(1161), + [sym_abstract_array_declarator] = STATE(1161), + [sym_parameter_list] = STATE(1162), + [sym_abstract_reference_declarator] = STATE(1161), [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_SEMI] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2363), [sym_comment] = ACTIONS(49), }, [637] = { - [anon_sym_SEMI] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2365), [sym_comment] = ACTIONS(49), }, [638] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(1163), - [sym_sized_type_specifier] = STATE(1163), - [sym_enum_specifier] = STATE(1163), - [sym_struct_specifier] = STATE(1163), - [sym_union_specifier] = STATE(1163), - [sym_macro_type_specifier] = STATE(1163), - [sym_class_specifier] = STATE(1163), - [sym_dependent_type] = STATE(1163), + [sym__type_specifier] = STATE(1164), + [sym_sized_type_specifier] = STATE(1164), + [sym_enum_specifier] = STATE(1164), + [sym_struct_specifier] = STATE(1164), + [sym_union_specifier] = STATE(1164), + [sym_macro_type_specifier] = STATE(1164), + [sym_class_specifier] = STATE(1164), + [sym_dependent_type] = STATE(1164), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), @@ -31835,26 +31891,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1231), [anon_sym_long] = ACTIONS(1231), [anon_sym_short] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(2365), + [sym_primitive_type] = ACTIONS(2367), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(2365), + [sym_auto] = ACTIONS(2367), [anon_sym_typename] = ACTIONS(1235), [anon_sym_COLON_COLON] = ACTIONS(111), }, [639] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1164), + [aux_sym_sized_type_specifier_repeat1] = STATE(1165), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(2367), - [anon_sym_long] = ACTIONS(2367), - [anon_sym_short] = ACTIONS(2367), + [anon_sym_unsigned] = ACTIONS(2369), + [anon_sym_long] = ACTIONS(2369), + [anon_sym_short] = ACTIONS(2369), [sym_primitive_type] = ACTIONS(244), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), @@ -31868,76 +31924,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2371), - [sym_auto] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [sym_operator_name] = ACTIONS(2369), + [ts_builtin_sym_end] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2373), + [sym_auto] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [sym_operator_name] = ACTIONS(2371), }, [642] = { - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1799), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1801), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, [643] = { - [sym_identifier] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), [sym_comment] = ACTIONS(49), }, [644] = { - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_LBRACE] = ACTIONS(2375), - [anon_sym_EQ] = ACTIONS(2375), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_EQ] = ACTIONS(2377), [sym_comment] = ACTIONS(49), }, [645] = { - [aux_sym_structured_binding_declarator_repeat1] = STATE(1167), + [aux_sym_structured_binding_declarator_repeat1] = STATE(1168), [anon_sym_COMMA] = ACTIONS(1243), - [anon_sym_RBRACK] = ACTIONS(2377), + [anon_sym_RBRACK] = ACTIONS(2379), [sym_comment] = ACTIONS(49), }, [646] = { [anon_sym_LPAREN] = ACTIONS(1381), - [anon_sym_COMMA] = ACTIONS(2379), - [anon_sym_RPAREN] = ACTIONS(2379), - [anon_sym_SEMI] = ACTIONS(2379), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_RPAREN] = ACTIONS(2381), + [anon_sym_SEMI] = ACTIONS(2381), [anon_sym_LBRACE] = ACTIONS(1381), [anon_sym_LBRACK] = ACTIONS(1381), [anon_sym_EQ] = ACTIONS(1381), @@ -31949,14 +32005,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(1381), [anon_sym_constexpr] = ACTIONS(1381), [anon_sym_COLON] = ACTIONS(1381), - [anon_sym_GT] = ACTIONS(2379), + [anon_sym_GT] = ACTIONS(2381), [anon_sym_DASH_GT] = ACTIONS(1381), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(1381), }, [647] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1169), + [sym_template_argument_list] = STATE(1170), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1483), [anon_sym_RPAREN] = ACTIONS(1483), @@ -32010,54 +32066,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2382), + [anon_sym_COLON_COLON] = ACTIONS(2384), [sym_operator_name] = ACTIONS(142), }, [648] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2384), + [sym_identifier] = ACTIONS(2386), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2222), [sym_operator_name] = ACTIONS(190), }, [649] = { [sym_argument_list] = STATE(802), - [aux_sym_argument_list_repeat1] = STATE(1173), + [aux_sym_argument_list_repeat1] = STATE(1174), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2388), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -32065,9 +32121,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [650] = { - [aux_sym_argument_list_repeat1] = STATE(1173), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(2388), + [aux_sym_argument_list_repeat1] = STATE(1174), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(2390), [sym_comment] = ACTIONS(49), }, [651] = { @@ -32094,28 +32150,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(228), [sym_identifier] = ACTIONS(230), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), [sym_operator_name] = ACTIONS(228), }, [652] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2390), + [anon_sym_COLON_COLON] = ACTIONS(2392), }, [653] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, [654] = { - [anon_sym_COMMA] = ACTIONS(2392), - [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2394), + [anon_sym_SEMI] = ACTIONS(2394), [sym_comment] = ACTIONS(49), }, [655] = { @@ -32137,7 +32193,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1175), + [sym_type_descriptor] = STATE(1176), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -32202,7 +32258,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1403), }, [656] = { - [anon_sym_RBRACE] = ACTIONS(2394), + [anon_sym_RBRACE] = ACTIONS(2396), [sym_comment] = ACTIONS(49), }, [657] = { @@ -32290,7 +32346,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_RBRACE] = ACTIONS(2398), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_static] = ACTIONS(154), @@ -32351,12 +32407,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2400), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1624), [sym_preproc_directive] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2400), [anon_sym_typedef] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_RBRACE] = ACTIONS(1622), @@ -32441,40 +32497,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1413), }, [660] = { - [sym__expression] = STATE(1179), - [sym_conditional_expression] = STATE(1179), - [sym_assignment_expression] = STATE(1179), - [sym_pointer_expression] = STATE(1179), - [sym_logical_expression] = STATE(1179), - [sym_bitwise_expression] = STATE(1179), - [sym_equality_expression] = STATE(1179), - [sym_relational_expression] = STATE(1179), - [sym_shift_expression] = STATE(1179), - [sym_math_expression] = STATE(1179), - [sym_cast_expression] = STATE(1179), - [sym_sizeof_expression] = STATE(1179), - [sym_subscript_expression] = STATE(1179), - [sym_call_expression] = STATE(1179), - [sym_field_expression] = STATE(1179), - [sym_compound_literal_expression] = STATE(1179), - [sym_parenthesized_expression] = STATE(1179), - [sym_concatenated_string] = STATE(1179), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1179), - [sym_new_expression] = STATE(1179), - [sym_delete_expression] = STATE(1179), - [sym_lambda_expression] = STATE(1179), + [sym__expression] = STATE(1180), + [sym_conditional_expression] = STATE(1180), + [sym_assignment_expression] = STATE(1180), + [sym_pointer_expression] = STATE(1180), + [sym_logical_expression] = STATE(1180), + [sym_bitwise_expression] = STATE(1180), + [sym_equality_expression] = STATE(1180), + [sym_relational_expression] = STATE(1180), + [sym_shift_expression] = STATE(1180), + [sym_math_expression] = STATE(1180), + [sym_cast_expression] = STATE(1180), + [sym_sizeof_expression] = STATE(1180), + [sym_subscript_expression] = STATE(1180), + [sym_call_expression] = STATE(1180), + [sym_field_expression] = STATE(1180), + [sym_compound_literal_expression] = STATE(1180), + [sym_parenthesized_expression] = STATE(1180), + [sym_concatenated_string] = STATE(1180), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1180), + [sym_new_expression] = STATE(1180), + [sym_delete_expression] = STATE(1180), + [sym_lambda_expression] = STATE(1180), [sym_lambda_capture_specifier] = STATE(370), [sym_lambda_default_capture] = STATE(741), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2402), + [sym_raw_string_literal] = ACTIONS(2404), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -32488,18 +32544,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(2402), - [sym_char_literal] = ACTIONS(2402), + [sym_number_literal] = ACTIONS(2404), + [sym_char_literal] = ACTIONS(2404), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(2404), - [sym_false] = ACTIONS(2404), - [sym_null] = ACTIONS(2404), + [sym_true] = ACTIONS(2406), + [sym_false] = ACTIONS(2406), + [sym_null] = ACTIONS(2406), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(2404), + [sym_nullptr] = ACTIONS(2406), }, [661] = { [sym__expression] = STATE(757), @@ -32550,7 +32606,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1461), }, @@ -32603,7 +32659,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1465), }, @@ -32656,40 +32712,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1469), }, [664] = { - [sym__expression] = STATE(1181), - [sym_conditional_expression] = STATE(1181), - [sym_assignment_expression] = STATE(1181), - [sym_pointer_expression] = STATE(1181), - [sym_logical_expression] = STATE(1181), - [sym_bitwise_expression] = STATE(1181), - [sym_equality_expression] = STATE(1181), - [sym_relational_expression] = STATE(1181), - [sym_shift_expression] = STATE(1181), - [sym_math_expression] = STATE(1181), - [sym_cast_expression] = STATE(1181), - [sym_sizeof_expression] = STATE(1181), - [sym_subscript_expression] = STATE(1181), - [sym_call_expression] = STATE(1181), - [sym_field_expression] = STATE(1181), - [sym_compound_literal_expression] = STATE(1181), - [sym_parenthesized_expression] = STATE(1181), - [sym_concatenated_string] = STATE(1181), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1181), - [sym_new_expression] = STATE(1181), - [sym_delete_expression] = STATE(1181), - [sym_lambda_expression] = STATE(1181), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2408), + [sym__expression] = STATE(1182), + [sym_conditional_expression] = STATE(1182), + [sym_assignment_expression] = STATE(1182), + [sym_pointer_expression] = STATE(1182), + [sym_logical_expression] = STATE(1182), + [sym_bitwise_expression] = STATE(1182), + [sym_equality_expression] = STATE(1182), + [sym_relational_expression] = STATE(1182), + [sym_shift_expression] = STATE(1182), + [sym_math_expression] = STATE(1182), + [sym_cast_expression] = STATE(1182), + [sym_sizeof_expression] = STATE(1182), + [sym_subscript_expression] = STATE(1182), + [sym_call_expression] = STATE(1182), + [sym_field_expression] = STATE(1182), + [sym_compound_literal_expression] = STATE(1182), + [sym_parenthesized_expression] = STATE(1182), + [sym_concatenated_string] = STATE(1182), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1182), + [sym_new_expression] = STATE(1182), + [sym_delete_expression] = STATE(1182), + [sym_lambda_expression] = STATE(1182), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2408), + [anon_sym_LPAREN] = ACTIONS(2410), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1275), @@ -32700,25 +32756,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(2406), - [sym_char_literal] = ACTIONS(2406), + [sym_number_literal] = ACTIONS(2408), + [sym_char_literal] = ACTIONS(2408), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(2410), - [sym_false] = ACTIONS(2410), - [sym_null] = ACTIONS(2410), + [sym_true] = ACTIONS(2412), + [sym_false] = ACTIONS(2412), + [sym_null] = ACTIONS(2412), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(2410), + [sym_nullptr] = ACTIONS(2412), }, [665] = { - [sym_identifier] = ACTIONS(2412), + [sym_identifier] = ACTIONS(2414), [sym_comment] = ACTIONS(49), }, [666] = { - [aux_sym_concatenated_string_repeat1] = STATE(1183), + [aux_sym_concatenated_string_repeat1] = STATE(1184), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -32758,49 +32814,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2414), + [sym_string_literal] = ACTIONS(2416), [sym_comment] = ACTIONS(49), }, [667] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2418), [sym_operator_name] = ACTIONS(190), }, [668] = { - [sym__expression] = STATE(1186), - [sym_conditional_expression] = STATE(1186), - [sym_assignment_expression] = STATE(1186), - [sym_pointer_expression] = STATE(1186), - [sym_logical_expression] = STATE(1186), - [sym_bitwise_expression] = STATE(1186), - [sym_equality_expression] = STATE(1186), - [sym_relational_expression] = STATE(1186), - [sym_shift_expression] = STATE(1186), - [sym_math_expression] = STATE(1186), - [sym_cast_expression] = STATE(1186), - [sym_sizeof_expression] = STATE(1186), - [sym_subscript_expression] = STATE(1186), - [sym_call_expression] = STATE(1186), - [sym_field_expression] = STATE(1186), - [sym_compound_literal_expression] = STATE(1186), - [sym_parenthesized_expression] = STATE(1186), - [sym_concatenated_string] = STATE(1186), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1186), - [sym_new_expression] = STATE(1186), - [sym_delete_expression] = STATE(1186), - [sym_lambda_expression] = STATE(1186), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2418), + [sym__expression] = STATE(1187), + [sym_conditional_expression] = STATE(1187), + [sym_assignment_expression] = STATE(1187), + [sym_pointer_expression] = STATE(1187), + [sym_logical_expression] = STATE(1187), + [sym_bitwise_expression] = STATE(1187), + [sym_equality_expression] = STATE(1187), + [sym_relational_expression] = STATE(1187), + [sym_shift_expression] = STATE(1187), + [sym_math_expression] = STATE(1187), + [sym_cast_expression] = STATE(1187), + [sym_sizeof_expression] = STATE(1187), + [sym_subscript_expression] = STATE(1187), + [sym_call_expression] = STATE(1187), + [sym_field_expression] = STATE(1187), + [sym_compound_literal_expression] = STATE(1187), + [sym_parenthesized_expression] = STATE(1187), + [sym_concatenated_string] = STATE(1187), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1187), + [sym_new_expression] = STATE(1187), + [sym_delete_expression] = STATE(1187), + [sym_lambda_expression] = STATE(1187), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2420), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(2420), + [anon_sym_LBRACK] = ACTIONS(2422), [anon_sym_AMP] = ACTIONS(1275), [anon_sym_BANG] = ACTIONS(1279), [anon_sym_TILDE] = ACTIONS(1281), @@ -32809,57 +32865,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(2418), - [sym_char_literal] = ACTIONS(2418), + [sym_number_literal] = ACTIONS(2420), + [sym_char_literal] = ACTIONS(2420), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(2422), - [sym_false] = ACTIONS(2422), - [sym_null] = ACTIONS(2422), + [sym_true] = ACTIONS(2424), + [sym_false] = ACTIONS(2424), + [sym_null] = ACTIONS(2424), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(2422), + [sym_nullptr] = ACTIONS(2424), }, [669] = { [sym_argument_list] = STATE(802), - [aux_sym_initializer_list_repeat1] = STATE(1200), + [aux_sym_initializer_list_repeat1] = STATE(1201), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2424), - [anon_sym_SEMI] = ACTIONS(1740), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2426), + [anon_sym_SEMI] = ACTIONS(1742), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_QMARK] = ACTIONS(2430), - [anon_sym_STAR_EQ] = ACTIONS(2432), - [anon_sym_SLASH_EQ] = ACTIONS(2432), - [anon_sym_PERCENT_EQ] = ACTIONS(2432), - [anon_sym_PLUS_EQ] = ACTIONS(2432), - [anon_sym_DASH_EQ] = ACTIONS(2432), - [anon_sym_LT_LT_EQ] = ACTIONS(2432), - [anon_sym_GT_GT_EQ] = ACTIONS(2432), - [anon_sym_AMP_EQ] = ACTIONS(2432), - [anon_sym_CARET_EQ] = ACTIONS(2432), - [anon_sym_PIPE_EQ] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2432), + [anon_sym_STAR_EQ] = ACTIONS(2434), + [anon_sym_SLASH_EQ] = ACTIONS(2434), + [anon_sym_PERCENT_EQ] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(2434), + [anon_sym_DASH_EQ] = ACTIONS(2434), + [anon_sym_LT_LT_EQ] = ACTIONS(2434), + [anon_sym_GT_GT_EQ] = ACTIONS(2434), + [anon_sym_AMP_EQ] = ACTIONS(2434), + [anon_sym_CARET_EQ] = ACTIONS(2434), + [anon_sym_PIPE_EQ] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -32867,64 +32923,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [670] = { - [aux_sym_initializer_list_repeat1] = STATE(1200), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2394), + [aux_sym_initializer_list_repeat1] = STATE(1201), + [anon_sym_COMMA] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2396), [sym_comment] = ACTIONS(49), }, [671] = { - [sym_subscript_designator] = STATE(1204), - [sym_field_designator] = STATE(1204), - [aux_sym_initializer_pair_repeat1] = STATE(1204), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_EQ] = ACTIONS(2458), + [sym_subscript_designator] = STATE(1205), + [sym_field_designator] = STATE(1205), + [aux_sym_initializer_pair_repeat1] = STATE(1205), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_EQ] = ACTIONS(2460), [anon_sym_DOT] = ACTIONS(1289), [sym_comment] = ACTIONS(49), }, [672] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1720), [sym_operator_name] = ACTIONS(190), }, [673] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -32932,43 +32988,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [674] = { - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_GT] = ACTIONS(2460), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_GT] = ACTIONS(2462), [sym_comment] = ACTIONS(49), }, [675] = { - [sym__type_specifier] = STATE(1209), - [sym_sized_type_specifier] = STATE(1209), - [sym_enum_specifier] = STATE(1209), - [sym_struct_specifier] = STATE(1209), - [sym_union_specifier] = STATE(1209), - [sym_macro_type_specifier] = STATE(1209), - [sym_class_specifier] = STATE(1209), - [sym_dependent_type] = STATE(1209), + [sym__type_specifier] = STATE(1210), + [sym_sized_type_specifier] = STATE(1210), + [sym_enum_specifier] = STATE(1210), + [sym_struct_specifier] = STATE(1210), + [sym_union_specifier] = STATE(1210), + [sym_macro_type_specifier] = STATE(1210), + [sym_class_specifier] = STATE(1210), + [sym_dependent_type] = STATE(1210), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1210), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2464), + [aux_sym_sized_type_specifier_repeat1] = STATE(1211), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2466), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(2464), - [anon_sym_typename] = ACTIONS(2472), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(2466), + [anon_sym_typename] = ACTIONS(2474), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [676] = { - [sym_type_qualifier] = STATE(1211), - [sym_trailing_return_type] = STATE(1211), - [aux_sym_function_declarator_repeat1] = STATE(1211), + [sym_type_qualifier] = STATE(1212), + [sym_trailing_return_type] = STATE(1212), + [aux_sym_function_declarator_repeat1] = STATE(1212), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_COMMA] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), @@ -32984,102 +33040,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1309), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2474), + [sym_noexcept] = ACTIONS(2476), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [sym_operator_name] = ACTIONS(2476), + [ts_builtin_sym_end] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_template] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [sym_operator_name] = ACTIONS(2478), }, [678] = { [aux_sym_declaration_repeat1] = STATE(678), - [anon_sym_COMMA] = ACTIONS(2480), - [anon_sym_SEMI] = ACTIONS(2392), + [anon_sym_COMMA] = ACTIONS(2482), + [anon_sym_SEMI] = ACTIONS(2394), [sym_comment] = ACTIONS(49), }, [679] = { - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_COMMA] = ACTIONS(2483), - [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_SEMI] = ACTIONS(2483), - [anon_sym_LBRACE] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_STAR] = ACTIONS(2485), - [anon_sym_LBRACK] = ACTIONS(2483), - [anon_sym_RBRACK] = ACTIONS(2483), - [anon_sym_EQ] = ACTIONS(2485), - [anon_sym_COLON] = ACTIONS(2483), - [anon_sym_QMARK] = ACTIONS(2483), - [anon_sym_STAR_EQ] = ACTIONS(2483), - [anon_sym_SLASH_EQ] = ACTIONS(2483), - [anon_sym_PERCENT_EQ] = ACTIONS(2483), - [anon_sym_PLUS_EQ] = ACTIONS(2483), - [anon_sym_DASH_EQ] = ACTIONS(2483), - [anon_sym_LT_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_GT_EQ] = ACTIONS(2483), - [anon_sym_AMP_EQ] = ACTIONS(2483), - [anon_sym_CARET_EQ] = ACTIONS(2483), - [anon_sym_PIPE_EQ] = ACTIONS(2483), - [anon_sym_AMP] = ACTIONS(2485), - [anon_sym_PIPE_PIPE] = ACTIONS(2483), - [anon_sym_AMP_AMP] = ACTIONS(2483), - [anon_sym_PIPE] = ACTIONS(2485), - [anon_sym_CARET] = ACTIONS(2485), - [anon_sym_EQ_EQ] = ACTIONS(2483), - [anon_sym_BANG_EQ] = ACTIONS(2483), - [anon_sym_LT] = ACTIONS(2485), - [anon_sym_GT] = ACTIONS(2485), - [anon_sym_LT_EQ] = ACTIONS(2483), - [anon_sym_GT_EQ] = ACTIONS(2483), - [anon_sym_LT_LT] = ACTIONS(2485), - [anon_sym_GT_GT] = ACTIONS(2485), - [anon_sym_PLUS] = ACTIONS(2485), - [anon_sym_DASH] = ACTIONS(2485), - [anon_sym_SLASH] = ACTIONS(2485), - [anon_sym_PERCENT] = ACTIONS(2485), - [anon_sym_DASH_DASH] = ACTIONS(2483), - [anon_sym_PLUS_PLUS] = ACTIONS(2483), - [anon_sym_DOT] = ACTIONS(2483), - [anon_sym_DASH_GT] = ACTIONS(2483), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2485), + [anon_sym_RPAREN] = ACTIONS(2485), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2487), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_RBRACK] = ACTIONS(2485), + [anon_sym_EQ] = ACTIONS(2487), + [anon_sym_COLON] = ACTIONS(2485), + [anon_sym_QMARK] = ACTIONS(2485), + [anon_sym_STAR_EQ] = ACTIONS(2485), + [anon_sym_SLASH_EQ] = ACTIONS(2485), + [anon_sym_PERCENT_EQ] = ACTIONS(2485), + [anon_sym_PLUS_EQ] = ACTIONS(2485), + [anon_sym_DASH_EQ] = ACTIONS(2485), + [anon_sym_LT_LT_EQ] = ACTIONS(2485), + [anon_sym_GT_GT_EQ] = ACTIONS(2485), + [anon_sym_AMP_EQ] = ACTIONS(2485), + [anon_sym_CARET_EQ] = ACTIONS(2485), + [anon_sym_PIPE_EQ] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2487), + [anon_sym_PIPE_PIPE] = ACTIONS(2485), + [anon_sym_AMP_AMP] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2487), + [anon_sym_CARET] = ACTIONS(2487), + [anon_sym_EQ_EQ] = ACTIONS(2485), + [anon_sym_BANG_EQ] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2487), + [anon_sym_GT] = ACTIONS(2487), + [anon_sym_LT_EQ] = ACTIONS(2485), + [anon_sym_GT_EQ] = ACTIONS(2485), + [anon_sym_LT_LT] = ACTIONS(2487), + [anon_sym_GT_GT] = ACTIONS(2487), + [anon_sym_PLUS] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2487), + [anon_sym_SLASH] = ACTIONS(2487), + [anon_sym_PERCENT] = ACTIONS(2487), + [anon_sym_DASH_DASH] = ACTIONS(2485), + [anon_sym_PLUS_PLUS] = ACTIONS(2485), + [anon_sym_DOT] = ACTIONS(2485), + [anon_sym_DASH_GT] = ACTIONS(2485), [sym_comment] = ACTIONS(49), }, [680] = { @@ -33101,7 +33157,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1212), + [sym_type_descriptor] = STATE(1213), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -33166,49 +33222,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1403), }, [681] = { - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_RPAREN] = ACTIONS(2398), - [anon_sym_SEMI] = ACTIONS(2398), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_RBRACE] = ACTIONS(2398), - [anon_sym_STAR] = ACTIONS(2487), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_RBRACK] = ACTIONS(2398), - [anon_sym_EQ] = ACTIONS(2487), - [anon_sym_COLON] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_STAR_EQ] = ACTIONS(2398), - [anon_sym_SLASH_EQ] = ACTIONS(2398), - [anon_sym_PERCENT_EQ] = ACTIONS(2398), - [anon_sym_PLUS_EQ] = ACTIONS(2398), - [anon_sym_DASH_EQ] = ACTIONS(2398), - [anon_sym_LT_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_GT_EQ] = ACTIONS(2398), - [anon_sym_AMP_EQ] = ACTIONS(2398), - [anon_sym_CARET_EQ] = ACTIONS(2398), - [anon_sym_PIPE_EQ] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2487), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2487), - [anon_sym_CARET] = ACTIONS(2487), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2487), - [anon_sym_GT] = ACTIONS(2487), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2487), - [anon_sym_GT_GT] = ACTIONS(2487), - [anon_sym_PLUS] = ACTIONS(2487), - [anon_sym_DASH] = ACTIONS(2487), - [anon_sym_SLASH] = ACTIONS(2487), - [anon_sym_PERCENT] = ACTIONS(2487), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DOT] = ACTIONS(2398), - [anon_sym_DASH_GT] = ACTIONS(2398), + [anon_sym_LPAREN] = ACTIONS(2400), + [anon_sym_COMMA] = ACTIONS(2400), + [anon_sym_RPAREN] = ACTIONS(2400), + [anon_sym_SEMI] = ACTIONS(2400), + [anon_sym_LBRACE] = ACTIONS(2400), + [anon_sym_RBRACE] = ACTIONS(2400), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2400), + [anon_sym_RBRACK] = ACTIONS(2400), + [anon_sym_EQ] = ACTIONS(2489), + [anon_sym_COLON] = ACTIONS(2400), + [anon_sym_QMARK] = ACTIONS(2400), + [anon_sym_STAR_EQ] = ACTIONS(2400), + [anon_sym_SLASH_EQ] = ACTIONS(2400), + [anon_sym_PERCENT_EQ] = ACTIONS(2400), + [anon_sym_PLUS_EQ] = ACTIONS(2400), + [anon_sym_DASH_EQ] = ACTIONS(2400), + [anon_sym_LT_LT_EQ] = ACTIONS(2400), + [anon_sym_GT_GT_EQ] = ACTIONS(2400), + [anon_sym_AMP_EQ] = ACTIONS(2400), + [anon_sym_CARET_EQ] = ACTIONS(2400), + [anon_sym_PIPE_EQ] = ACTIONS(2400), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_PIPE_PIPE] = ACTIONS(2400), + [anon_sym_AMP_AMP] = ACTIONS(2400), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_CARET] = ACTIONS(2489), + [anon_sym_EQ_EQ] = ACTIONS(2400), + [anon_sym_BANG_EQ] = ACTIONS(2400), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_GT] = ACTIONS(2489), + [anon_sym_LT_EQ] = ACTIONS(2400), + [anon_sym_GT_EQ] = ACTIONS(2400), + [anon_sym_LT_LT] = ACTIONS(2489), + [anon_sym_GT_GT] = ACTIONS(2489), + [anon_sym_PLUS] = ACTIONS(2489), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_SLASH] = ACTIONS(2489), + [anon_sym_PERCENT] = ACTIONS(2489), + [anon_sym_DASH_DASH] = ACTIONS(2400), + [anon_sym_PLUS_PLUS] = ACTIONS(2400), + [anon_sym_DOT] = ACTIONS(2400), + [anon_sym_DASH_GT] = ACTIONS(2400), [sym_comment] = ACTIONS(49), }, [682] = { @@ -33424,35 +33480,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1469), }, [686] = { - [sym__expression] = STATE(1214), - [sym_conditional_expression] = STATE(1214), - [sym_assignment_expression] = STATE(1214), - [sym_pointer_expression] = STATE(1214), - [sym_logical_expression] = STATE(1214), - [sym_bitwise_expression] = STATE(1214), - [sym_equality_expression] = STATE(1214), - [sym_relational_expression] = STATE(1214), - [sym_shift_expression] = STATE(1214), - [sym_math_expression] = STATE(1214), - [sym_cast_expression] = STATE(1214), - [sym_sizeof_expression] = STATE(1214), - [sym_subscript_expression] = STATE(1214), - [sym_call_expression] = STATE(1214), - [sym_field_expression] = STATE(1214), - [sym_compound_literal_expression] = STATE(1214), - [sym_parenthesized_expression] = STATE(1214), - [sym_concatenated_string] = STATE(1214), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1214), - [sym_new_expression] = STATE(1214), - [sym_delete_expression] = STATE(1214), - [sym_lambda_expression] = STATE(1214), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2489), - [anon_sym_LPAREN] = ACTIONS(2491), + [sym__expression] = STATE(1215), + [sym_conditional_expression] = STATE(1215), + [sym_assignment_expression] = STATE(1215), + [sym_pointer_expression] = STATE(1215), + [sym_logical_expression] = STATE(1215), + [sym_bitwise_expression] = STATE(1215), + [sym_equality_expression] = STATE(1215), + [sym_relational_expression] = STATE(1215), + [sym_shift_expression] = STATE(1215), + [sym_math_expression] = STATE(1215), + [sym_cast_expression] = STATE(1215), + [sym_sizeof_expression] = STATE(1215), + [sym_subscript_expression] = STATE(1215), + [sym_call_expression] = STATE(1215), + [sym_field_expression] = STATE(1215), + [sym_compound_literal_expression] = STATE(1215), + [sym_parenthesized_expression] = STATE(1215), + [sym_concatenated_string] = STATE(1215), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1215), + [sym_new_expression] = STATE(1215), + [sym_delete_expression] = STATE(1215), + [sym_lambda_expression] = STATE(1215), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(2493), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1325), @@ -33463,21 +33519,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(2489), - [sym_char_literal] = ACTIONS(2489), + [sym_number_literal] = ACTIONS(2491), + [sym_char_literal] = ACTIONS(2491), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(2493), - [sym_false] = ACTIONS(2493), - [sym_null] = ACTIONS(2493), + [sym_true] = ACTIONS(2495), + [sym_false] = ACTIONS(2495), + [sym_null] = ACTIONS(2495), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(2493), + [sym_nullptr] = ACTIONS(2495), }, [687] = { - [aux_sym_concatenated_string_repeat1] = STATE(1215), + [aux_sym_concatenated_string_repeat1] = STATE(1216), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_RBRACE] = ACTIONS(1477), @@ -33516,49 +33572,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2495), + [sym_string_literal] = ACTIONS(2497), [sym_comment] = ACTIONS(49), }, [688] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2497), + [anon_sym_delete] = ACTIONS(2499), [sym_operator_name] = ACTIONS(190), }, [689] = { - [sym__expression] = STATE(1218), - [sym_conditional_expression] = STATE(1218), - [sym_assignment_expression] = STATE(1218), - [sym_pointer_expression] = STATE(1218), - [sym_logical_expression] = STATE(1218), - [sym_bitwise_expression] = STATE(1218), - [sym_equality_expression] = STATE(1218), - [sym_relational_expression] = STATE(1218), - [sym_shift_expression] = STATE(1218), - [sym_math_expression] = STATE(1218), - [sym_cast_expression] = STATE(1218), - [sym_sizeof_expression] = STATE(1218), - [sym_subscript_expression] = STATE(1218), - [sym_call_expression] = STATE(1218), - [sym_field_expression] = STATE(1218), - [sym_compound_literal_expression] = STATE(1218), - [sym_parenthesized_expression] = STATE(1218), - [sym_concatenated_string] = STATE(1218), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1218), - [sym_new_expression] = STATE(1218), - [sym_delete_expression] = STATE(1218), - [sym_lambda_expression] = STATE(1218), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2499), + [sym__expression] = STATE(1219), + [sym_conditional_expression] = STATE(1219), + [sym_assignment_expression] = STATE(1219), + [sym_pointer_expression] = STATE(1219), + [sym_logical_expression] = STATE(1219), + [sym_bitwise_expression] = STATE(1219), + [sym_equality_expression] = STATE(1219), + [sym_relational_expression] = STATE(1219), + [sym_shift_expression] = STATE(1219), + [sym_math_expression] = STATE(1219), + [sym_cast_expression] = STATE(1219), + [sym_sizeof_expression] = STATE(1219), + [sym_subscript_expression] = STATE(1219), + [sym_call_expression] = STATE(1219), + [sym_field_expression] = STATE(1219), + [sym_compound_literal_expression] = STATE(1219), + [sym_parenthesized_expression] = STATE(1219), + [sym_concatenated_string] = STATE(1219), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1219), + [sym_new_expression] = STATE(1219), + [sym_delete_expression] = STATE(1219), + [sym_lambda_expression] = STATE(1219), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2501), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2503), [anon_sym_AMP] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(1327), [anon_sym_TILDE] = ACTIONS(1329), @@ -33567,56 +33623,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(2499), - [sym_char_literal] = ACTIONS(2499), + [sym_number_literal] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(2503), - [sym_false] = ACTIONS(2503), - [sym_null] = ACTIONS(2503), + [sym_true] = ACTIONS(2505), + [sym_false] = ACTIONS(2505), + [sym_null] = ACTIONS(2505), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(2503), + [sym_nullptr] = ACTIONS(2505), }, [690] = { [sym_argument_list] = STATE(802), - [aux_sym_initializer_list_repeat1] = STATE(1200), + [aux_sym_initializer_list_repeat1] = STATE(1201), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2454), - [anon_sym_RBRACE] = ACTIONS(2394), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2456), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -33642,7 +33698,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1231), + [sym_type_descriptor] = STATE(1232), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -33919,35 +33975,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1469), }, [696] = { - [sym__expression] = STATE(1233), - [sym_conditional_expression] = STATE(1233), - [sym_assignment_expression] = STATE(1233), - [sym_pointer_expression] = STATE(1233), - [sym_logical_expression] = STATE(1233), - [sym_bitwise_expression] = STATE(1233), - [sym_equality_expression] = STATE(1233), - [sym_relational_expression] = STATE(1233), - [sym_shift_expression] = STATE(1233), - [sym_math_expression] = STATE(1233), - [sym_cast_expression] = STATE(1233), - [sym_sizeof_expression] = STATE(1233), - [sym_subscript_expression] = STATE(1233), - [sym_call_expression] = STATE(1233), - [sym_field_expression] = STATE(1233), - [sym_compound_literal_expression] = STATE(1233), - [sym_parenthesized_expression] = STATE(1233), - [sym_concatenated_string] = STATE(1233), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1233), - [sym_new_expression] = STATE(1233), - [sym_delete_expression] = STATE(1233), - [sym_lambda_expression] = STATE(1233), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2533), - [anon_sym_LPAREN] = ACTIONS(2535), + [sym__expression] = STATE(1234), + [sym_conditional_expression] = STATE(1234), + [sym_assignment_expression] = STATE(1234), + [sym_pointer_expression] = STATE(1234), + [sym_logical_expression] = STATE(1234), + [sym_bitwise_expression] = STATE(1234), + [sym_equality_expression] = STATE(1234), + [sym_relational_expression] = STATE(1234), + [sym_shift_expression] = STATE(1234), + [sym_math_expression] = STATE(1234), + [sym_cast_expression] = STATE(1234), + [sym_sizeof_expression] = STATE(1234), + [sym_subscript_expression] = STATE(1234), + [sym_call_expression] = STATE(1234), + [sym_field_expression] = STATE(1234), + [sym_compound_literal_expression] = STATE(1234), + [sym_parenthesized_expression] = STATE(1234), + [sym_concatenated_string] = STATE(1234), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1234), + [sym_new_expression] = STATE(1234), + [sym_delete_expression] = STATE(1234), + [sym_lambda_expression] = STATE(1234), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2535), + [anon_sym_LPAREN] = ACTIONS(2537), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -33958,21 +34014,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(2533), - [sym_char_literal] = ACTIONS(2533), + [sym_number_literal] = ACTIONS(2535), + [sym_char_literal] = ACTIONS(2535), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(2537), - [sym_false] = ACTIONS(2537), - [sym_null] = ACTIONS(2537), + [sym_true] = ACTIONS(2539), + [sym_false] = ACTIONS(2539), + [sym_null] = ACTIONS(2539), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(2537), + [sym_nullptr] = ACTIONS(2539), }, [697] = { - [aux_sym_concatenated_string_repeat1] = STATE(1234), + [aux_sym_concatenated_string_repeat1] = STATE(1235), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), [anon_sym_STAR] = ACTIONS(1479), @@ -34010,49 +34066,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2539), + [sym_string_literal] = ACTIONS(2541), [sym_comment] = ACTIONS(49), }, [698] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2543), [sym_operator_name] = ACTIONS(190), }, [699] = { - [sym__expression] = STATE(1237), - [sym_conditional_expression] = STATE(1237), - [sym_assignment_expression] = STATE(1237), - [sym_pointer_expression] = STATE(1237), - [sym_logical_expression] = STATE(1237), - [sym_bitwise_expression] = STATE(1237), - [sym_equality_expression] = STATE(1237), - [sym_relational_expression] = STATE(1237), - [sym_shift_expression] = STATE(1237), - [sym_math_expression] = STATE(1237), - [sym_cast_expression] = STATE(1237), - [sym_sizeof_expression] = STATE(1237), - [sym_subscript_expression] = STATE(1237), - [sym_call_expression] = STATE(1237), - [sym_field_expression] = STATE(1237), - [sym_compound_literal_expression] = STATE(1237), - [sym_parenthesized_expression] = STATE(1237), - [sym_concatenated_string] = STATE(1237), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1237), - [sym_new_expression] = STATE(1237), - [sym_delete_expression] = STATE(1237), - [sym_lambda_expression] = STATE(1237), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2543), + [sym__expression] = STATE(1238), + [sym_conditional_expression] = STATE(1238), + [sym_assignment_expression] = STATE(1238), + [sym_pointer_expression] = STATE(1238), + [sym_logical_expression] = STATE(1238), + [sym_bitwise_expression] = STATE(1238), + [sym_equality_expression] = STATE(1238), + [sym_relational_expression] = STATE(1238), + [sym_shift_expression] = STATE(1238), + [sym_math_expression] = STATE(1238), + [sym_cast_expression] = STATE(1238), + [sym_sizeof_expression] = STATE(1238), + [sym_subscript_expression] = STATE(1238), + [sym_call_expression] = STATE(1238), + [sym_field_expression] = STATE(1238), + [sym_compound_literal_expression] = STATE(1238), + [sym_parenthesized_expression] = STATE(1238), + [sym_concatenated_string] = STATE(1238), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1238), + [sym_new_expression] = STATE(1238), + [sym_delete_expression] = STATE(1238), + [sym_lambda_expression] = STATE(1238), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2545), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2547), [anon_sym_AMP] = ACTIONS(1349), [anon_sym_BANG] = ACTIONS(1351), [anon_sym_TILDE] = ACTIONS(1353), @@ -34061,54 +34117,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(2543), - [sym_char_literal] = ACTIONS(2543), + [sym_number_literal] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(2547), - [sym_false] = ACTIONS(2547), - [sym_null] = ACTIONS(2547), + [sym_true] = ACTIONS(2549), + [sym_false] = ACTIONS(2549), + [sym_null] = ACTIONS(2549), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(2547), + [sym_nullptr] = ACTIONS(2549), }, [700] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(2549), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -34116,88 +34172,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [701] = { - [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), [sym_comment] = ACTIONS(49), }, [702] = { - [ts_builtin_sym_end] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_template] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [sym_operator_name] = ACTIONS(2579), + [ts_builtin_sym_end] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [sym_operator_name] = ACTIONS(2581), }, [703] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(2583), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2585), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -34205,52 +34261,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [704] = { - [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2585), [sym_comment] = ACTIONS(49), }, [705] = { - [ts_builtin_sym_end] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [sym_operator_name] = ACTIONS(2585), + [ts_builtin_sym_end] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [sym_operator_name] = ACTIONS(2587), }, [706] = { [sym__declaration_specifiers] = STATE(344), @@ -34261,7 +34317,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(345), [sym_struct_specifier] = STATE(345), [sym_union_specifier] = STATE(345), - [sym_parameter_declaration] = STATE(1252), + [sym_parameter_declaration] = STATE(1253), [sym_macro_type_specifier] = STATE(345), [sym_class_specifier] = STATE(345), [sym_dependent_type] = STATE(345), @@ -34270,7 +34326,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_namespace_identifier] = STATE(81), [aux_sym__declaration_specifiers_repeat1] = STATE(346), [aux_sym_sized_type_specifier_repeat1] = STATE(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2591), [anon_sym_extern] = ACTIONS(154), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), @@ -34297,53 +34353,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(135), }, [707] = { - [anon_sym_LPAREN] = ACTIONS(2591), - [anon_sym_COMMA] = ACTIONS(2591), - [anon_sym_RPAREN] = ACTIONS(2591), - [anon_sym_SEMI] = ACTIONS(2591), - [anon_sym_LBRACE] = ACTIONS(2591), - [anon_sym_LBRACK] = ACTIONS(2591), - [anon_sym_EQ] = ACTIONS(2591), - [anon_sym_const] = ACTIONS(2593), - [anon_sym_restrict] = ACTIONS(2591), - [anon_sym_volatile] = ACTIONS(2591), - [anon_sym__Atomic] = ACTIONS(2591), - [anon_sym_mutable] = ACTIONS(2591), - [anon_sym_explicit] = ACTIONS(2591), - [anon_sym_constexpr] = ACTIONS(2591), - [anon_sym_COLON] = ACTIONS(2591), - [anon_sym_GT] = ACTIONS(2591), - [anon_sym_DASH_GT] = ACTIONS(2591), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2591), + [anon_sym_LPAREN] = ACTIONS(2593), + [anon_sym_COMMA] = ACTIONS(2593), + [anon_sym_RPAREN] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2593), + [anon_sym_LBRACE] = ACTIONS(2593), + [anon_sym_LBRACK] = ACTIONS(2593), + [anon_sym_EQ] = ACTIONS(2593), + [anon_sym_const] = ACTIONS(2595), + [anon_sym_restrict] = ACTIONS(2593), + [anon_sym_volatile] = ACTIONS(2593), + [anon_sym__Atomic] = ACTIONS(2593), + [anon_sym_mutable] = ACTIONS(2593), + [anon_sym_explicit] = ACTIONS(2593), + [anon_sym_constexpr] = ACTIONS(2593), + [anon_sym_COLON] = ACTIONS(2593), + [anon_sym_GT] = ACTIONS(2593), + [anon_sym_DASH_GT] = ACTIONS(2593), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2593), }, [708] = { - [aux_sym_parameter_list_repeat1] = STATE(1254), + [aux_sym_parameter_list_repeat1] = STATE(1255), [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_RPAREN] = ACTIONS(2595), + [anon_sym_RPAREN] = ACTIONS(2597), [sym_comment] = ACTIONS(49), }, [709] = { - [sym__declarator] = STATE(1255), - [sym__abstract_declarator] = STATE(1256), - [sym_pointer_declarator] = STATE(1255), - [sym_abstract_pointer_declarator] = STATE(1256), - [sym_function_declarator] = STATE(1255), - [sym_abstract_function_declarator] = STATE(1256), - [sym_array_declarator] = STATE(1255), - [sym_abstract_array_declarator] = STATE(1256), + [sym__declarator] = STATE(1256), + [sym__abstract_declarator] = STATE(1257), + [sym_pointer_declarator] = STATE(1256), + [sym_abstract_pointer_declarator] = STATE(1257), + [sym_function_declarator] = STATE(1256), + [sym_abstract_function_declarator] = STATE(1257), + [sym_array_declarator] = STATE(1256), + [sym_abstract_array_declarator] = STATE(1257), [sym_parameter_list] = STATE(713), - [sym_reference_declarator] = STATE(1255), - [sym_abstract_reference_declarator] = STATE(1256), + [sym_reference_declarator] = STATE(1256), + [sym_abstract_reference_declarator] = STATE(1257), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1255), - [sym_destructor_name] = STATE(1255), + [sym_template_function] = STATE(1256), + [sym_destructor_name] = STATE(1256), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), [anon_sym_STAR] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1387), @@ -34352,29 +34408,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(2597), + [sym_operator_name] = ACTIONS(2599), }, [710] = { - [sym__declarator] = STATE(1257), - [sym__abstract_declarator] = STATE(1258), - [sym_pointer_declarator] = STATE(1257), - [sym_abstract_pointer_declarator] = STATE(1258), - [sym_function_declarator] = STATE(1257), - [sym_abstract_function_declarator] = STATE(1258), - [sym_array_declarator] = STATE(1257), - [sym_abstract_array_declarator] = STATE(1258), + [sym__declarator] = STATE(1258), + [sym__abstract_declarator] = STATE(1259), + [sym_pointer_declarator] = STATE(1258), + [sym_abstract_pointer_declarator] = STATE(1259), + [sym_function_declarator] = STATE(1258), + [sym_abstract_function_declarator] = STATE(1259), + [sym_array_declarator] = STATE(1258), + [sym_abstract_array_declarator] = STATE(1259), [sym_parameter_list] = STATE(713), - [sym_reference_declarator] = STATE(1257), - [sym_abstract_reference_declarator] = STATE(1258), + [sym_reference_declarator] = STATE(1258), + [sym_abstract_reference_declarator] = STATE(1259), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1257), - [sym_destructor_name] = STATE(1257), + [sym_template_function] = STATE(1258), + [sym_destructor_name] = STATE(1258), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), [anon_sym_STAR] = ACTIONS(1385), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1387), @@ -34383,36 +34439,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(2599), + [sym_operator_name] = ACTIONS(2601), }, [711] = { - [sym_parameter_list] = STATE(1260), + [sym_parameter_list] = STATE(1261), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), [anon_sym_LPAREN] = ACTIONS(536), - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2323), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), - [anon_sym_EQ] = ACTIONS(2601), + [anon_sym_EQ] = ACTIONS(2603), [sym_comment] = ACTIONS(49), }, [712] = { - [sym_parameter_list] = STATE(1261), + [sym_parameter_list] = STATE(1262), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(2321), - [anon_sym_RPAREN] = ACTIONS(2321), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(2323), + [anon_sym_RPAREN] = ACTIONS(2323), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, [713] = { - [sym_type_qualifier] = STATE(1263), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1263), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), + [sym_type_qualifier] = STATE(1264), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1264), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -34420,14 +34476,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2605), + [sym_noexcept] = ACTIONS(2607), }, [714] = { - [sym_storage_class_specifier] = STATE(1264), - [sym_type_qualifier] = STATE(1264), - [aux_sym__declaration_specifiers_repeat1] = STATE(1264), + [sym_storage_class_specifier] = STATE(1265), + [sym_type_qualifier] = STATE(1265), + [aux_sym__declaration_specifiers_repeat1] = STATE(1265), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_COMMA] = ACTIONS(696), [anon_sym_RPAREN] = ACTIONS(696), @@ -34453,9 +34509,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(696), }, [715] = { - [sym_storage_class_specifier] = STATE(1265), - [sym_type_qualifier] = STATE(1265), - [aux_sym__declaration_specifiers_repeat1] = STATE(1265), + [sym_storage_class_specifier] = STATE(1266), + [sym_type_qualifier] = STATE(1266), + [aux_sym__declaration_specifiers_repeat1] = STATE(1266), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_COMMA] = ACTIONS(696), [anon_sym_RPAREN] = ACTIONS(696), @@ -34498,9 +34554,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(2607), - [anon_sym_long] = ACTIONS(2607), - [anon_sym_short] = ACTIONS(2607), + [anon_sym_unsigned] = ACTIONS(2609), + [anon_sym_long] = ACTIONS(2609), + [anon_sym_short] = ACTIONS(2609), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -34512,7 +34568,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [717] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(886), + [sym_template_argument_list] = STATE(887), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_RPAREN] = ACTIONS(1483), @@ -34553,7 +34609,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1716), }, [718] = { [sym__type_specifier] = STATE(93), @@ -34585,62 +34641,62 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [719] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(1716), + [sym_identifier] = ACTIONS(1718), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2220), + [anon_sym_delete] = ACTIONS(2222), [sym_operator_name] = ACTIONS(190), }, [720] = { - [sym__abstract_declarator] = STATE(1266), - [sym_abstract_pointer_declarator] = STATE(1266), - [sym_abstract_function_declarator] = STATE(1266), - [sym_abstract_array_declarator] = STATE(1266), - [sym_parameter_list] = STATE(1119), - [sym_abstract_reference_declarator] = STATE(1266), + [sym__abstract_declarator] = STATE(1267), + [sym_abstract_pointer_declarator] = STATE(1267), + [sym_abstract_function_declarator] = STATE(1267), + [sym_abstract_array_declarator] = STATE(1267), + [sym_parameter_list] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(1267), [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_RPAREN] = ACTIONS(1117), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_comment] = ACTIONS(49), }, [721] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -34648,23 +34704,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [722] = { - [anon_sym_RPAREN] = ACTIONS(2610), + [anon_sym_RPAREN] = ACTIONS(2612), [sym_comment] = ACTIONS(49), }, [723] = { - [anon_sym_RPAREN] = ACTIONS(2612), + [anon_sym_RPAREN] = ACTIONS(2614), [sym_comment] = ACTIONS(49), }, [724] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(1269), - [sym_sized_type_specifier] = STATE(1269), - [sym_enum_specifier] = STATE(1269), - [sym_struct_specifier] = STATE(1269), - [sym_union_specifier] = STATE(1269), - [sym_macro_type_specifier] = STATE(1269), - [sym_class_specifier] = STATE(1269), - [sym_dependent_type] = STATE(1269), + [sym__type_specifier] = STATE(1270), + [sym_sized_type_specifier] = STATE(1270), + [sym_enum_specifier] = STATE(1270), + [sym_struct_specifier] = STATE(1270), + [sym_union_specifier] = STATE(1270), + [sym_macro_type_specifier] = STATE(1270), + [sym_class_specifier] = STATE(1270), + [sym_dependent_type] = STATE(1270), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), @@ -34680,26 +34736,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1399), [anon_sym_long] = ACTIONS(1399), [anon_sym_short] = ACTIONS(1399), - [sym_primitive_type] = ACTIONS(2614), + [sym_primitive_type] = ACTIONS(2616), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(2614), + [sym_auto] = ACTIONS(2616), [anon_sym_typename] = ACTIONS(1407), [anon_sym_COLON_COLON] = ACTIONS(111), }, [725] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1270), + [aux_sym_sized_type_specifier_repeat1] = STATE(1271), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_RPAREN] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(2616), - [anon_sym_long] = ACTIONS(2616), - [anon_sym_short] = ACTIONS(2616), + [anon_sym_unsigned] = ACTIONS(2618), + [anon_sym_long] = ACTIONS(2618), + [anon_sym_short] = ACTIONS(2618), [sym_primitive_type] = ACTIONS(244), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), @@ -34709,7 +34765,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [726] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), [anon_sym_delete] = ACTIONS(1504), [sym_operator_name] = ACTIONS(190), @@ -34717,44 +34773,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [727] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2618), - [anon_sym_RPAREN] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_COMMA] = ACTIONS(2620), + [anon_sym_RPAREN] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2620), + [anon_sym_RBRACE] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2618), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), + [anon_sym_RBRACK] = ACTIONS(2620), + [anon_sym_EQ] = ACTIONS(2622), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_STAR_EQ] = ACTIONS(2620), + [anon_sym_SLASH_EQ] = ACTIONS(2620), + [anon_sym_PERCENT_EQ] = ACTIONS(2620), + [anon_sym_PLUS_EQ] = ACTIONS(2620), + [anon_sym_DASH_EQ] = ACTIONS(2620), + [anon_sym_LT_LT_EQ] = ACTIONS(2620), + [anon_sym_GT_GT_EQ] = ACTIONS(2620), + [anon_sym_AMP_EQ] = ACTIONS(2620), + [anon_sym_CARET_EQ] = ACTIONS(2620), + [anon_sym_PIPE_EQ] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_EQ_EQ] = ACTIONS(2620), + [anon_sym_BANG_EQ] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_LT_EQ] = ACTIONS(2620), + [anon_sym_GT_EQ] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2622), + [anon_sym_PERCENT] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2620), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), @@ -34778,7 +34834,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1271), + [sym_type_descriptor] = STATE(1272), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -34896,15 +34952,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1413), }, [730] = { - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [sym_comment] = ACTIONS(49), }, [731] = { - [anon_sym_RBRACK] = ACTIONS(2626), + [anon_sym_RBRACK] = ACTIONS(2628), [sym_comment] = ACTIONS(49), }, [732] = { @@ -34939,7 +34995,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(2626), + [anon_sym_RBRACK] = ACTIONS(2628), [anon_sym_AMP] = ACTIONS(1421), [anon_sym_BANG] = ACTIONS(1429), [anon_sym_TILDE] = ACTIONS(1431), @@ -35121,35 +35177,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1469), }, [736] = { - [sym__expression] = STATE(1273), - [sym_conditional_expression] = STATE(1273), - [sym_assignment_expression] = STATE(1273), - [sym_pointer_expression] = STATE(1273), - [sym_logical_expression] = STATE(1273), - [sym_bitwise_expression] = STATE(1273), - [sym_equality_expression] = STATE(1273), - [sym_relational_expression] = STATE(1273), - [sym_shift_expression] = STATE(1273), - [sym_math_expression] = STATE(1273), - [sym_cast_expression] = STATE(1273), - [sym_sizeof_expression] = STATE(1273), - [sym_subscript_expression] = STATE(1273), - [sym_call_expression] = STATE(1273), - [sym_field_expression] = STATE(1273), - [sym_compound_literal_expression] = STATE(1273), - [sym_parenthesized_expression] = STATE(1273), - [sym_concatenated_string] = STATE(1273), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1273), - [sym_new_expression] = STATE(1273), - [sym_delete_expression] = STATE(1273), - [sym_lambda_expression] = STATE(1273), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2628), - [anon_sym_LPAREN] = ACTIONS(2630), + [sym__expression] = STATE(1274), + [sym_conditional_expression] = STATE(1274), + [sym_assignment_expression] = STATE(1274), + [sym_pointer_expression] = STATE(1274), + [sym_logical_expression] = STATE(1274), + [sym_bitwise_expression] = STATE(1274), + [sym_equality_expression] = STATE(1274), + [sym_relational_expression] = STATE(1274), + [sym_shift_expression] = STATE(1274), + [sym_math_expression] = STATE(1274), + [sym_cast_expression] = STATE(1274), + [sym_sizeof_expression] = STATE(1274), + [sym_subscript_expression] = STATE(1274), + [sym_call_expression] = STATE(1274), + [sym_field_expression] = STATE(1274), + [sym_compound_literal_expression] = STATE(1274), + [sym_parenthesized_expression] = STATE(1274), + [sym_concatenated_string] = STATE(1274), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1274), + [sym_new_expression] = STATE(1274), + [sym_delete_expression] = STATE(1274), + [sym_lambda_expression] = STATE(1274), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2630), + [anon_sym_LPAREN] = ACTIONS(2632), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1421), @@ -35160,21 +35216,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(2628), - [sym_char_literal] = ACTIONS(2628), + [sym_number_literal] = ACTIONS(2630), + [sym_char_literal] = ACTIONS(2630), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(2632), - [sym_false] = ACTIONS(2632), - [sym_null] = ACTIONS(2632), + [sym_true] = ACTIONS(2634), + [sym_false] = ACTIONS(2634), + [sym_null] = ACTIONS(2634), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(2632), + [sym_nullptr] = ACTIONS(2634), }, [737] = { - [aux_sym_concatenated_string_repeat1] = STATE(1274), + [aux_sym_concatenated_string_repeat1] = STATE(1275), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_STAR] = ACTIONS(1479), @@ -35213,49 +35269,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2634), + [sym_string_literal] = ACTIONS(2636), [sym_comment] = ACTIONS(49), }, [738] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2636), + [anon_sym_delete] = ACTIONS(2638), [sym_operator_name] = ACTIONS(190), }, [739] = { - [sym__expression] = STATE(1277), - [sym_conditional_expression] = STATE(1277), - [sym_assignment_expression] = STATE(1277), - [sym_pointer_expression] = STATE(1277), - [sym_logical_expression] = STATE(1277), - [sym_bitwise_expression] = STATE(1277), - [sym_equality_expression] = STATE(1277), - [sym_relational_expression] = STATE(1277), - [sym_shift_expression] = STATE(1277), - [sym_math_expression] = STATE(1277), - [sym_cast_expression] = STATE(1277), - [sym_sizeof_expression] = STATE(1277), - [sym_subscript_expression] = STATE(1277), - [sym_call_expression] = STATE(1277), - [sym_field_expression] = STATE(1277), - [sym_compound_literal_expression] = STATE(1277), - [sym_parenthesized_expression] = STATE(1277), - [sym_concatenated_string] = STATE(1277), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1277), - [sym_new_expression] = STATE(1277), - [sym_delete_expression] = STATE(1277), - [sym_lambda_expression] = STATE(1277), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2638), + [sym__expression] = STATE(1278), + [sym_conditional_expression] = STATE(1278), + [sym_assignment_expression] = STATE(1278), + [sym_pointer_expression] = STATE(1278), + [sym_logical_expression] = STATE(1278), + [sym_bitwise_expression] = STATE(1278), + [sym_equality_expression] = STATE(1278), + [sym_relational_expression] = STATE(1278), + [sym_shift_expression] = STATE(1278), + [sym_math_expression] = STATE(1278), + [sym_cast_expression] = STATE(1278), + [sym_sizeof_expression] = STATE(1278), + [sym_subscript_expression] = STATE(1278), + [sym_call_expression] = STATE(1278), + [sym_field_expression] = STATE(1278), + [sym_compound_literal_expression] = STATE(1278), + [sym_parenthesized_expression] = STATE(1278), + [sym_concatenated_string] = STATE(1278), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1278), + [sym_new_expression] = STATE(1278), + [sym_delete_expression] = STATE(1278), + [sym_lambda_expression] = STATE(1278), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2640), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(2640), + [anon_sym_LBRACK] = ACTIONS(2642), [anon_sym_AMP] = ACTIONS(1421), [anon_sym_BANG] = ACTIONS(1429), [anon_sym_TILDE] = ACTIONS(1431), @@ -35264,56 +35320,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(2638), - [sym_char_literal] = ACTIONS(2638), + [sym_number_literal] = ACTIONS(2640), + [sym_char_literal] = ACTIONS(2640), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(2642), - [sym_false] = ACTIONS(2642), - [sym_null] = ACTIONS(2642), + [sym_true] = ACTIONS(2644), + [sym_false] = ACTIONS(2644), + [sym_null] = ACTIONS(2644), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(2642), + [sym_nullptr] = ACTIONS(2644), }, [740] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(1292), + [aux_sym_for_statement_repeat1] = STATE(1293), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2648), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2652), - [anon_sym_STAR_EQ] = ACTIONS(2654), - [anon_sym_SLASH_EQ] = ACTIONS(2654), - [anon_sym_PERCENT_EQ] = ACTIONS(2654), - [anon_sym_PLUS_EQ] = ACTIONS(2654), - [anon_sym_DASH_EQ] = ACTIONS(2654), - [anon_sym_LT_LT_EQ] = ACTIONS(2654), - [anon_sym_GT_GT_EQ] = ACTIONS(2654), - [anon_sym_AMP_EQ] = ACTIONS(2654), - [anon_sym_CARET_EQ] = ACTIONS(2654), - [anon_sym_PIPE_EQ] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2650), + [anon_sym_EQ] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2654), + [anon_sym_STAR_EQ] = ACTIONS(2656), + [anon_sym_SLASH_EQ] = ACTIONS(2656), + [anon_sym_PERCENT_EQ] = ACTIONS(2656), + [anon_sym_PLUS_EQ] = ACTIONS(2656), + [anon_sym_DASH_EQ] = ACTIONS(2656), + [anon_sym_LT_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_GT_EQ] = ACTIONS(2656), + [anon_sym_AMP_EQ] = ACTIONS(2656), + [anon_sym_CARET_EQ] = ACTIONS(2656), + [anon_sym_PIPE_EQ] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -35321,18 +35377,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [741] = { - [anon_sym_RBRACK] = ACTIONS(2648), + [anon_sym_RBRACK] = ACTIONS(2650), [sym_comment] = ACTIONS(49), }, [742] = { - [sym_enumerator] = STATE(1295), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2678), + [sym_enumerator] = STATE(1296), + [anon_sym_COMMA] = ACTIONS(2678), + [anon_sym_RBRACE] = ACTIONS(2680), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, [743] = { - [sym_enumerator_list] = STATE(1296), + [sym_enumerator_list] = STATE(1297), [sym_raw_string_literal] = ACTIONS(350), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_extern] = ACTIONS(352), @@ -35412,7 +35468,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [745] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(1298), + [sym_type_definition] = STATE(1299), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -35425,27 +35481,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1298), - [sym_field_declaration] = STATE(1298), + [sym__field_declaration_list_item] = STATE(1299), + [sym_field_declaration] = STATE(1299), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1298), + [sym_template_declaration] = STATE(1299), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1298), - [sym_access_specifier] = STATE(1298), + [sym_friend_declaration] = STATE(1299), + [sym_access_specifier] = STATE(1299), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1298), - [sym_alias_declaration] = STATE(1298), + [sym_using_declaration] = STATE(1299), + [sym_alias_declaration] = STATE(1299), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1298), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1299), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), @@ -35454,7 +35510,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(2680), + [anon_sym_RBRACE] = ACTIONS(2682), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -35491,7 +35547,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_name] = ACTIONS(392), }, [746] = { - [sym_template_argument_list] = STATE(1300), + [sym_template_argument_list] = STATE(1301), [sym_raw_string_literal] = ACTIONS(398), [anon_sym_LPAREN] = ACTIONS(398), [anon_sym_extern] = ACTIONS(400), @@ -35528,12 +35584,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(400), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(400), - [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2684), [anon_sym_delete] = ACTIONS(400), [sym_nullptr] = ACTIONS(400), }, [747] = { - [sym_identifier] = ACTIONS(2684), + [sym_identifier] = ACTIONS(2686), [sym_comment] = ACTIONS(49), }, [748] = { @@ -35575,8 +35631,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(408), }, [749] = { - [sym_field_declaration_list] = STATE(1302), - [sym_base_class_clause] = STATE(1303), + [sym_field_declaration_list] = STATE(1303), + [sym_base_class_clause] = STATE(1304), [sym_raw_string_literal] = ACTIONS(406), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_extern] = ACTIONS(408), @@ -35617,7 +35673,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(408), }, [750] = { - [sym_field_declaration_list] = STATE(1302), + [sym_field_declaration_list] = STATE(1303), [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, @@ -35657,7 +35713,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(412), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(412), - [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2688), [anon_sym_delete] = ACTIONS(412), [sym_nullptr] = ACTIONS(412), }, @@ -35705,7 +35761,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [753] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2688), }, [754] = { [sym_raw_string_literal] = ACTIONS(416), @@ -35746,8 +35802,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(418), }, [755] = { - [sym_field_declaration_list] = STATE(1305), - [sym_base_class_clause] = STATE(1306), + [sym_field_declaration_list] = STATE(1306), + [sym_base_class_clause] = STATE(1307), [sym_raw_string_literal] = ACTIONS(416), [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_extern] = ACTIONS(418), @@ -35788,51 +35844,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(418), }, [756] = { - [sym_field_declaration_list] = STATE(1305), + [sym_field_declaration_list] = STATE(1306), [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, [757] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2688), - [anon_sym_RPAREN] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_RBRACE] = ACTIONS(2688), - [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_COMMA] = ACTIONS(2690), + [anon_sym_RPAREN] = ACTIONS(2690), + [anon_sym_SEMI] = ACTIONS(2690), + [anon_sym_RBRACE] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2692), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2688), - [anon_sym_EQ] = ACTIONS(2690), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_LT_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_GT_EQ] = ACTIONS(2688), - [anon_sym_AMP_EQ] = ACTIONS(2688), - [anon_sym_CARET_EQ] = ACTIONS(2688), - [anon_sym_PIPE_EQ] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_EQ_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_GT] = ACTIONS(2690), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2690), - [anon_sym_GT_GT] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_PERCENT] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), + [anon_sym_RBRACK] = ACTIONS(2690), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_QMARK] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_PERCENT_EQ] = ACTIONS(2690), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_CARET_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2690), + [anon_sym_BANG_EQ] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), @@ -35840,44 +35896,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [758] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2692), - [anon_sym_RPAREN] = ACTIONS(2692), - [anon_sym_SEMI] = ACTIONS(2692), - [anon_sym_RBRACE] = ACTIONS(2692), - [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_COMMA] = ACTIONS(2694), + [anon_sym_RPAREN] = ACTIONS(2694), + [anon_sym_SEMI] = ACTIONS(2694), + [anon_sym_RBRACE] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2692), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_STAR_EQ] = ACTIONS(2692), - [anon_sym_SLASH_EQ] = ACTIONS(2692), - [anon_sym_PERCENT_EQ] = ACTIONS(2692), - [anon_sym_PLUS_EQ] = ACTIONS(2692), - [anon_sym_DASH_EQ] = ACTIONS(2692), - [anon_sym_LT_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_GT_EQ] = ACTIONS(2692), - [anon_sym_AMP_EQ] = ACTIONS(2692), - [anon_sym_CARET_EQ] = ACTIONS(2692), - [anon_sym_PIPE_EQ] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), + [anon_sym_RBRACK] = ACTIONS(2694), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_PERCENT_EQ] = ACTIONS(2694), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_CARET_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), @@ -35885,42 +35941,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [759] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_COMMA] = ACTIONS(2698), + [anon_sym_RPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2700), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2696), - [anon_sym_EQ] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_STAR_EQ] = ACTIONS(2696), - [anon_sym_SLASH_EQ] = ACTIONS(2696), - [anon_sym_PERCENT_EQ] = ACTIONS(2696), - [anon_sym_PLUS_EQ] = ACTIONS(2696), - [anon_sym_DASH_EQ] = ACTIONS(2696), - [anon_sym_LT_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_GT_EQ] = ACTIONS(2696), - [anon_sym_AMP_EQ] = ACTIONS(2696), - [anon_sym_CARET_EQ] = ACTIONS(2696), - [anon_sym_PIPE_EQ] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_GT] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(2698), + [anon_sym_RBRACK] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym_QMARK] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), @@ -35946,7 +36002,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1307), + [sym_type_descriptor] = STATE(1308), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -36015,30 +36071,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), [anon_sym_LT_LT] = ACTIONS(1548), [anon_sym_GT_GT] = ACTIONS(1548), [anon_sym_PLUS] = ACTIONS(1550), @@ -36052,45 +36108,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [762] = { - [aux_sym_concatenated_string_repeat1] = STATE(1308), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_RBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(2708), + [aux_sym_concatenated_string_repeat1] = STATE(1309), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(2710), [sym_comment] = ACTIONS(49), }, [763] = { @@ -36100,8 +36156,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1310), - [sym_parenthesized_expression] = STATE(1310), + [sym_type_descriptor] = STATE(1311), + [sym_parenthesized_expression] = STATE(1311), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -36125,7 +36181,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(2710), + [anon_sym_GT] = ACTIONS(2712), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), @@ -36136,53 +36192,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [764] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2712), + [sym_identifier] = ACTIONS(2714), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, [765] = { - [anon_sym_LPAREN] = ACTIONS(2714), - [anon_sym_COMMA] = ACTIONS(2714), - [anon_sym_RPAREN] = ACTIONS(2714), - [anon_sym_SEMI] = ACTIONS(2714), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_STAR] = ACTIONS(2716), - [anon_sym_LBRACK] = ACTIONS(2714), - [anon_sym_RBRACK] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [anon_sym_COLON] = ACTIONS(2714), - [anon_sym_QMARK] = ACTIONS(2714), - [anon_sym_STAR_EQ] = ACTIONS(2714), - [anon_sym_SLASH_EQ] = ACTIONS(2714), - [anon_sym_PERCENT_EQ] = ACTIONS(2714), - [anon_sym_PLUS_EQ] = ACTIONS(2714), - [anon_sym_DASH_EQ] = ACTIONS(2714), - [anon_sym_LT_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_GT_EQ] = ACTIONS(2714), - [anon_sym_AMP_EQ] = ACTIONS(2714), - [anon_sym_CARET_EQ] = ACTIONS(2714), - [anon_sym_PIPE_EQ] = ACTIONS(2714), - [anon_sym_AMP] = ACTIONS(2716), - [anon_sym_PIPE_PIPE] = ACTIONS(2714), - [anon_sym_AMP_AMP] = ACTIONS(2714), - [anon_sym_PIPE] = ACTIONS(2716), - [anon_sym_CARET] = ACTIONS(2716), - [anon_sym_EQ_EQ] = ACTIONS(2714), - [anon_sym_BANG_EQ] = ACTIONS(2714), - [anon_sym_LT] = ACTIONS(2716), - [anon_sym_GT] = ACTIONS(2716), - [anon_sym_LT_EQ] = ACTIONS(2714), - [anon_sym_GT_EQ] = ACTIONS(2714), - [anon_sym_LT_LT] = ACTIONS(2716), - [anon_sym_GT_GT] = ACTIONS(2716), - [anon_sym_PLUS] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_SLASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_DASH_DASH] = ACTIONS(2714), - [anon_sym_PLUS_PLUS] = ACTIONS(2714), - [anon_sym_DOT] = ACTIONS(2714), - [anon_sym_DASH_GT] = ACTIONS(2714), + [anon_sym_LPAREN] = ACTIONS(2716), + [anon_sym_COMMA] = ACTIONS(2716), + [anon_sym_RPAREN] = ACTIONS(2716), + [anon_sym_SEMI] = ACTIONS(2716), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_LBRACK] = ACTIONS(2716), + [anon_sym_RBRACK] = ACTIONS(2716), + [anon_sym_EQ] = ACTIONS(2718), + [anon_sym_COLON] = ACTIONS(2716), + [anon_sym_QMARK] = ACTIONS(2716), + [anon_sym_STAR_EQ] = ACTIONS(2716), + [anon_sym_SLASH_EQ] = ACTIONS(2716), + [anon_sym_PERCENT_EQ] = ACTIONS(2716), + [anon_sym_PLUS_EQ] = ACTIONS(2716), + [anon_sym_DASH_EQ] = ACTIONS(2716), + [anon_sym_LT_LT_EQ] = ACTIONS(2716), + [anon_sym_GT_GT_EQ] = ACTIONS(2716), + [anon_sym_AMP_EQ] = ACTIONS(2716), + [anon_sym_CARET_EQ] = ACTIONS(2716), + [anon_sym_PIPE_EQ] = ACTIONS(2716), + [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_PIPE_PIPE] = ACTIONS(2716), + [anon_sym_AMP_AMP] = ACTIONS(2716), + [anon_sym_PIPE] = ACTIONS(2718), + [anon_sym_CARET] = ACTIONS(2718), + [anon_sym_EQ_EQ] = ACTIONS(2716), + [anon_sym_BANG_EQ] = ACTIONS(2716), + [anon_sym_LT] = ACTIONS(2718), + [anon_sym_GT] = ACTIONS(2718), + [anon_sym_LT_EQ] = ACTIONS(2716), + [anon_sym_GT_EQ] = ACTIONS(2716), + [anon_sym_LT_LT] = ACTIONS(2718), + [anon_sym_GT_GT] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2718), + [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_SLASH] = ACTIONS(2718), + [anon_sym_PERCENT] = ACTIONS(2718), + [anon_sym_DASH_DASH] = ACTIONS(2716), + [anon_sym_PLUS_PLUS] = ACTIONS(2716), + [anon_sym_DOT] = ACTIONS(2716), + [anon_sym_DASH_GT] = ACTIONS(2716), [sym_comment] = ACTIONS(49), }, [766] = { @@ -36190,7 +36246,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(444), [anon_sym_extern] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2720), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_RBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(706), @@ -36215,7 +36271,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(704), [anon_sym_CARET_EQ] = ACTIONS(704), [anon_sym_PIPE_EQ] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), [anon_sym_PIPE_PIPE] = ACTIONS(704), [anon_sym_AMP_AMP] = ACTIONS(704), [anon_sym_BANG] = ACTIONS(449), @@ -36230,8 +36286,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(704), [anon_sym_LT_LT] = ACTIONS(706), [anon_sym_GT_GT] = ACTIONS(706), - [anon_sym_PLUS] = ACTIONS(2718), - [anon_sym_DASH] = ACTIONS(2718), + [anon_sym_PLUS] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), [anon_sym_SLASH] = ACTIONS(706), [anon_sym_PERCENT] = ACTIONS(706), [anon_sym_DASH_DASH] = ACTIONS(444), @@ -36291,8 +36347,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(453), }, [768] = { - [sym_field_declaration_list] = STATE(1312), - [sym_base_class_clause] = STATE(1313), + [sym_field_declaration_list] = STATE(1313), + [sym_base_class_clause] = STATE(1314), [sym_raw_string_literal] = ACTIONS(451), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_extern] = ACTIONS(453), @@ -36333,12 +36389,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(453), }, [769] = { - [sym_field_declaration_list] = STATE(1312), + [sym_field_declaration_list] = STATE(1313), [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, [770] = { - [sym_template_argument_list] = STATE(1300), + [sym_template_argument_list] = STATE(1301), [sym_raw_string_literal] = ACTIONS(142), [anon_sym_LPAREN] = ACTIONS(142), [anon_sym_extern] = ACTIONS(144), @@ -36373,7 +36429,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(144), - [anon_sym_COLON_COLON] = ACTIONS(2682), + [anon_sym_COLON_COLON] = ACTIONS(2684), [anon_sym_delete] = ACTIONS(144), [sym_nullptr] = ACTIONS(144), }, @@ -36449,7 +36505,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(230), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(230), - [anon_sym_COLON_COLON] = ACTIONS(2686), + [anon_sym_COLON_COLON] = ACTIONS(2688), [anon_sym_delete] = ACTIONS(230), [sym_nullptr] = ACTIONS(230), }, @@ -36494,38 +36550,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(230), }, [774] = { - [sym_argument_list] = STATE(1315), - [sym_initializer_list] = STATE(1315), + [sym_argument_list] = STATE(1316), + [sym_initializer_list] = STATE(1316), [sym_template_argument_list] = STATE(203), - [sym_new_declarator] = STATE(1316), + [sym_new_declarator] = STATE(1317), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(321), }, [775] = { [sym_template_type] = STATE(64), - [sym_scoped_type_identifier] = STATE(1318), + [sym_scoped_type_identifier] = STATE(1319), [sym_scoped_namespace_identifier] = STATE(64), - [sym_identifier] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2725), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(111), }, [776] = { - [sym_argument_list] = STATE(1319), - [sym_initializer_list] = STATE(1319), + [sym_argument_list] = STATE(1320), + [sym_initializer_list] = STATE(1320), [sym_template_argument_list] = STATE(141), - [sym_new_declarator] = STATE(1320), + [sym_new_declarator] = STATE(1321), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), }, [777] = { - [sym_identifier] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), [sym_comment] = ACTIONS(49), }, [778] = { @@ -36533,7 +36589,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_extern] = ACTIONS(514), [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2729), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_RBRACK] = ACTIONS(509), [anon_sym_EQ] = ACTIONS(520), @@ -36558,7 +36614,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(518), [anon_sym_CARET_EQ] = ACTIONS(518), [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), [anon_sym_PIPE_PIPE] = ACTIONS(518), [anon_sym_AMP_AMP] = ACTIONS(518), [anon_sym_BANG] = ACTIONS(514), @@ -36567,14 +36623,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(512), [anon_sym_EQ_EQ] = ACTIONS(518), [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), [anon_sym_GT] = ACTIONS(520), [anon_sym_LT_EQ] = ACTIONS(518), [anon_sym_GT_EQ] = ACTIONS(518), [anon_sym_LT_LT] = ACTIONS(520), [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), [anon_sym_SLASH] = ACTIONS(520), [anon_sym_PERCENT] = ACTIONS(520), [anon_sym_DASH_DASH] = ACTIONS(509), @@ -36596,37 +36652,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(514), }, [779] = { - [sym__expression] = STATE(1323), - [sym_conditional_expression] = STATE(1323), - [sym_assignment_expression] = STATE(1323), - [sym_pointer_expression] = STATE(1323), - [sym_logical_expression] = STATE(1323), - [sym_bitwise_expression] = STATE(1323), - [sym_equality_expression] = STATE(1323), - [sym_relational_expression] = STATE(1323), - [sym_shift_expression] = STATE(1323), - [sym_math_expression] = STATE(1323), - [sym_cast_expression] = STATE(1323), - [sym_sizeof_expression] = STATE(1323), - [sym_subscript_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_field_expression] = STATE(1323), - [sym_compound_literal_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_concatenated_string] = STATE(1323), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1323), - [sym_new_expression] = STATE(1323), - [sym_delete_expression] = STATE(1323), - [sym_lambda_expression] = STATE(1323), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2730), + [sym__expression] = STATE(1324), + [sym_conditional_expression] = STATE(1324), + [sym_assignment_expression] = STATE(1324), + [sym_pointer_expression] = STATE(1324), + [sym_logical_expression] = STATE(1324), + [sym_bitwise_expression] = STATE(1324), + [sym_equality_expression] = STATE(1324), + [sym_relational_expression] = STATE(1324), + [sym_shift_expression] = STATE(1324), + [sym_math_expression] = STATE(1324), + [sym_cast_expression] = STATE(1324), + [sym_sizeof_expression] = STATE(1324), + [sym_subscript_expression] = STATE(1324), + [sym_call_expression] = STATE(1324), + [sym_field_expression] = STATE(1324), + [sym_compound_literal_expression] = STATE(1324), + [sym_parenthesized_expression] = STATE(1324), + [sym_concatenated_string] = STATE(1324), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1324), + [sym_new_expression] = STATE(1324), + [sym_delete_expression] = STATE(1324), + [sym_lambda_expression] = STATE(1324), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2732), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_LBRACK] = ACTIONS(2734), [anon_sym_AMP] = ACTIONS(568), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), @@ -36635,18 +36691,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2730), - [sym_char_literal] = ACTIONS(2730), + [sym_number_literal] = ACTIONS(2732), + [sym_char_literal] = ACTIONS(2732), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_null] = ACTIONS(2734), + [sym_true] = ACTIONS(2736), + [sym_false] = ACTIONS(2736), + [sym_null] = ACTIONS(2736), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2734), + [sym_nullptr] = ACTIONS(2736), }, [780] = { [sym__expression] = STATE(740), @@ -36681,7 +36737,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(2736), + [anon_sym_RBRACK] = ACTIONS(2738), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -36709,19 +36765,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), + [anon_sym_RBRACK] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), [anon_sym_AMP] = ACTIONS(1532), [anon_sym_PIPE_PIPE] = ACTIONS(1534), [anon_sym_AMP_AMP] = ACTIONS(1536), @@ -36746,15 +36802,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [782] = { - [anon_sym_LPAREN] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2742), - [anon_sym_RPAREN] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_EQ] = ACTIONS(2742), - [anon_sym_COLON] = ACTIONS(2742), - [anon_sym_GT] = ACTIONS(2742), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_COMMA] = ACTIONS(2744), + [anon_sym_RPAREN] = ACTIONS(2744), + [anon_sym_SEMI] = ACTIONS(2744), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_LBRACK] = ACTIONS(2744), + [anon_sym_EQ] = ACTIONS(2744), + [anon_sym_COLON] = ACTIONS(2744), + [anon_sym_GT] = ACTIONS(2744), [sym_comment] = ACTIONS(49), }, [783] = { @@ -36762,7 +36818,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2744), + [anon_sym_RBRACK] = ACTIONS(2746), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -36875,9 +36931,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(123), }, [786] = { - [sym_storage_class_specifier] = STATE(1326), - [sym_type_qualifier] = STATE(1326), - [aux_sym__declaration_specifiers_repeat1] = STATE(1326), + [sym_storage_class_specifier] = STATE(1327), + [sym_type_qualifier] = STATE(1327), + [aux_sym__declaration_specifiers_repeat1] = STATE(1327), [sym_raw_string_literal] = ACTIONS(696), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_extern] = ACTIONS(1518), @@ -36916,59 +36972,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(698), }, [787] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(590), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2748), - }, - [788] = { [sym__expression] = STATE(1328), [sym_conditional_expression] = STATE(1328), [sym_assignment_expression] = STATE(1328), @@ -36996,7 +36999,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2750), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37008,20 +37011,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2750), - [sym_char_literal] = ACTIONS(2750), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2752), - [sym_false] = ACTIONS(2752), - [sym_null] = ACTIONS(2752), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2752), + [sym_nullptr] = ACTIONS(2750), }, - [789] = { + [788] = { [sym__expression] = STATE(1329), [sym_conditional_expression] = STATE(1329), [sym_assignment_expression] = STATE(1329), @@ -37049,7 +37052,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2754), + [sym_raw_string_literal] = ACTIONS(2752), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37061,20 +37064,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2754), - [sym_char_literal] = ACTIONS(2754), + [sym_number_literal] = ACTIONS(2752), + [sym_char_literal] = ACTIONS(2752), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2756), - [sym_false] = ACTIONS(2756), - [sym_null] = ACTIONS(2756), + [sym_true] = ACTIONS(2754), + [sym_false] = ACTIONS(2754), + [sym_null] = ACTIONS(2754), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2756), + [sym_nullptr] = ACTIONS(2754), }, - [790] = { + [789] = { [sym__expression] = STATE(1330), [sym_conditional_expression] = STATE(1330), [sym_assignment_expression] = STATE(1330), @@ -37099,35 +37102,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1330), [sym_lambda_expression] = STATE(1330), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2758), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(2758), - [sym_char_literal] = ACTIONS(2758), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2760), - [sym_false] = ACTIONS(2760), - [sym_null] = ACTIONS(2760), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(592), + [sym_number_literal] = ACTIONS(2756), + [sym_char_literal] = ACTIONS(2756), + [sym_string_literal] = ACTIONS(594), + [sym_true] = ACTIONS(2758), + [sym_false] = ACTIONS(2758), + [sym_null] = ACTIONS(2758), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2760), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_delete] = ACTIONS(608), + [sym_nullptr] = ACTIONS(2758), }, - [791] = { + [790] = { [sym__expression] = STATE(1331), [sym_conditional_expression] = STATE(1331), [sym_assignment_expression] = STATE(1331), @@ -37152,35 +37155,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1331), [sym_lambda_expression] = STATE(1331), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2762), - [anon_sym_LPAREN] = ACTIONS(566), - [anon_sym_STAR] = ACTIONS(568), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(568), - [anon_sym_BANG] = ACTIONS(584), - [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(588), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(590), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2762), - [sym_char_literal] = ACTIONS(2762), - [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2764), - [sym_false] = ACTIONS(2764), - [sym_null] = ACTIONS(2764), + [sym_raw_string_literal] = ACTIONS(2760), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(2760), + [sym_char_literal] = ACTIONS(2760), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(2762), + [sym_false] = ACTIONS(2762), + [sym_null] = ACTIONS(2762), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1415), - [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2764), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(2762), }, - [792] = { + [791] = { [sym__expression] = STATE(1332), [sym_conditional_expression] = STATE(1332), [sym_assignment_expression] = STATE(1332), @@ -37208,7 +37211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2766), + [sym_raw_string_literal] = ACTIONS(2764), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37220,20 +37223,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2766), - [sym_char_literal] = ACTIONS(2766), + [sym_number_literal] = ACTIONS(2764), + [sym_char_literal] = ACTIONS(2764), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2768), - [sym_false] = ACTIONS(2768), - [sym_null] = ACTIONS(2768), + [sym_true] = ACTIONS(2766), + [sym_false] = ACTIONS(2766), + [sym_null] = ACTIONS(2766), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2768), + [sym_nullptr] = ACTIONS(2766), }, - [793] = { + [792] = { [sym__expression] = STATE(1333), [sym_conditional_expression] = STATE(1333), [sym_assignment_expression] = STATE(1333), @@ -37261,7 +37264,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2770), + [sym_raw_string_literal] = ACTIONS(2768), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37273,20 +37276,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2770), - [sym_char_literal] = ACTIONS(2770), + [sym_number_literal] = ACTIONS(2768), + [sym_char_literal] = ACTIONS(2768), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_null] = ACTIONS(2772), + [sym_true] = ACTIONS(2770), + [sym_false] = ACTIONS(2770), + [sym_null] = ACTIONS(2770), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2772), + [sym_nullptr] = ACTIONS(2770), }, - [794] = { + [793] = { [sym__expression] = STATE(1334), [sym_conditional_expression] = STATE(1334), [sym_assignment_expression] = STATE(1334), @@ -37314,7 +37317,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2774), + [sym_raw_string_literal] = ACTIONS(2772), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37326,20 +37329,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2774), - [sym_char_literal] = ACTIONS(2774), + [sym_number_literal] = ACTIONS(2772), + [sym_char_literal] = ACTIONS(2772), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2776), - [sym_false] = ACTIONS(2776), - [sym_null] = ACTIONS(2776), + [sym_true] = ACTIONS(2774), + [sym_false] = ACTIONS(2774), + [sym_null] = ACTIONS(2774), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2776), + [sym_nullptr] = ACTIONS(2774), }, - [795] = { + [794] = { [sym__expression] = STATE(1335), [sym_conditional_expression] = STATE(1335), [sym_assignment_expression] = STATE(1335), @@ -37367,7 +37370,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2778), + [sym_raw_string_literal] = ACTIONS(2776), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37379,20 +37382,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2778), - [sym_char_literal] = ACTIONS(2778), + [sym_number_literal] = ACTIONS(2776), + [sym_char_literal] = ACTIONS(2776), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2780), - [sym_false] = ACTIONS(2780), - [sym_null] = ACTIONS(2780), + [sym_true] = ACTIONS(2778), + [sym_false] = ACTIONS(2778), + [sym_null] = ACTIONS(2778), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2780), + [sym_nullptr] = ACTIONS(2778), }, - [796] = { + [795] = { [sym__expression] = STATE(1336), [sym_conditional_expression] = STATE(1336), [sym_assignment_expression] = STATE(1336), @@ -37420,7 +37423,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2782), + [sym_raw_string_literal] = ACTIONS(2780), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37432,20 +37435,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2782), - [sym_char_literal] = ACTIONS(2782), + [sym_number_literal] = ACTIONS(2780), + [sym_char_literal] = ACTIONS(2780), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_null] = ACTIONS(2784), + [sym_true] = ACTIONS(2782), + [sym_false] = ACTIONS(2782), + [sym_null] = ACTIONS(2782), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2784), + [sym_nullptr] = ACTIONS(2782), }, - [797] = { + [796] = { [sym__expression] = STATE(1337), [sym_conditional_expression] = STATE(1337), [sym_assignment_expression] = STATE(1337), @@ -37473,7 +37476,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2786), + [sym_raw_string_literal] = ACTIONS(2784), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37485,20 +37488,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2786), - [sym_char_literal] = ACTIONS(2786), + [sym_number_literal] = ACTIONS(2784), + [sym_char_literal] = ACTIONS(2784), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_null] = ACTIONS(2788), + [sym_true] = ACTIONS(2786), + [sym_false] = ACTIONS(2786), + [sym_null] = ACTIONS(2786), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2788), + [sym_nullptr] = ACTIONS(2786), }, - [798] = { + [797] = { [sym__expression] = STATE(1338), [sym_conditional_expression] = STATE(1338), [sym_assignment_expression] = STATE(1338), @@ -37526,7 +37529,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2790), + [sym_raw_string_literal] = ACTIONS(2788), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37538,20 +37541,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2790), - [sym_char_literal] = ACTIONS(2790), + [sym_number_literal] = ACTIONS(2788), + [sym_char_literal] = ACTIONS(2788), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_null] = ACTIONS(2792), + [sym_true] = ACTIONS(2790), + [sym_false] = ACTIONS(2790), + [sym_null] = ACTIONS(2790), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2792), + [sym_nullptr] = ACTIONS(2790), }, - [799] = { + [798] = { [sym__expression] = STATE(1339), [sym_conditional_expression] = STATE(1339), [sym_assignment_expression] = STATE(1339), @@ -37579,7 +37582,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2794), + [sym_raw_string_literal] = ACTIONS(2792), + [anon_sym_LPAREN] = ACTIONS(566), + [anon_sym_STAR] = ACTIONS(568), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(568), + [anon_sym_BANG] = ACTIONS(584), + [anon_sym_TILDE] = ACTIONS(586), + [anon_sym_PLUS] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(590), + [anon_sym_PLUS_PLUS] = ACTIONS(590), + [anon_sym_sizeof] = ACTIONS(592), + [sym_number_literal] = ACTIONS(2792), + [sym_char_literal] = ACTIONS(2792), + [sym_string_literal] = ACTIONS(594), + [sym_true] = ACTIONS(2794), + [sym_false] = ACTIONS(2794), + [sym_null] = ACTIONS(2794), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_delete] = ACTIONS(608), + [sym_nullptr] = ACTIONS(2794), + }, + [799] = { + [sym__expression] = STATE(1340), + [sym_conditional_expression] = STATE(1340), + [sym_assignment_expression] = STATE(1340), + [sym_pointer_expression] = STATE(1340), + [sym_logical_expression] = STATE(1340), + [sym_bitwise_expression] = STATE(1340), + [sym_equality_expression] = STATE(1340), + [sym_relational_expression] = STATE(1340), + [sym_shift_expression] = STATE(1340), + [sym_math_expression] = STATE(1340), + [sym_cast_expression] = STATE(1340), + [sym_sizeof_expression] = STATE(1340), + [sym_subscript_expression] = STATE(1340), + [sym_call_expression] = STATE(1340), + [sym_field_expression] = STATE(1340), + [sym_compound_literal_expression] = STATE(1340), + [sym_parenthesized_expression] = STATE(1340), + [sym_concatenated_string] = STATE(1340), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1340), + [sym_new_expression] = STATE(1340), + [sym_delete_expression] = STATE(1340), + [sym_lambda_expression] = STATE(1340), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2796), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -37591,180 +37647,180 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(2794), - [sym_char_literal] = ACTIONS(2794), + [sym_number_literal] = ACTIONS(2796), + [sym_char_literal] = ACTIONS(2796), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_null] = ACTIONS(2796), + [sym_true] = ACTIONS(2798), + [sym_false] = ACTIONS(2798), + [sym_null] = ACTIONS(2798), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(2796), + [sym_nullptr] = ACTIONS(2798), }, [800] = { - [anon_sym_LPAREN] = ACTIONS(2696), - [anon_sym_COMMA] = ACTIONS(2696), - [anon_sym_RPAREN] = ACTIONS(2696), - [anon_sym_SEMI] = ACTIONS(2696), - [anon_sym_RBRACE] = ACTIONS(2696), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2696), - [anon_sym_RBRACK] = ACTIONS(2696), - [anon_sym_EQ] = ACTIONS(2698), - [anon_sym_COLON] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_STAR_EQ] = ACTIONS(2696), - [anon_sym_SLASH_EQ] = ACTIONS(2696), - [anon_sym_PERCENT_EQ] = ACTIONS(2696), - [anon_sym_PLUS_EQ] = ACTIONS(2696), - [anon_sym_DASH_EQ] = ACTIONS(2696), - [anon_sym_LT_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_GT_EQ] = ACTIONS(2696), - [anon_sym_AMP_EQ] = ACTIONS(2696), - [anon_sym_CARET_EQ] = ACTIONS(2696), - [anon_sym_PIPE_EQ] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_GT] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2696), - [anon_sym_PLUS_PLUS] = ACTIONS(2696), - [anon_sym_DOT] = ACTIONS(2696), - [anon_sym_DASH_GT] = ACTIONS(2696), + [anon_sym_LPAREN] = ACTIONS(2698), + [anon_sym_COMMA] = ACTIONS(2698), + [anon_sym_RPAREN] = ACTIONS(2698), + [anon_sym_SEMI] = ACTIONS(2698), + [anon_sym_RBRACE] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2700), + [anon_sym_LBRACK] = ACTIONS(2698), + [anon_sym_RBRACK] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym_COLON] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), + [anon_sym_DASH_DASH] = ACTIONS(2698), + [anon_sym_PLUS_PLUS] = ACTIONS(2698), + [anon_sym_DOT] = ACTIONS(2698), + [anon_sym_DASH_GT] = ACTIONS(2698), [sym_comment] = ACTIONS(49), }, [801] = { [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1341), - [sym_destructor_name] = STATE(1341), - [sym_scoped_field_identifier] = STATE(1342), + [sym_template_method] = STATE(1342), + [sym_destructor_name] = STATE(1342), + [sym_scoped_field_identifier] = STATE(1343), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), }, [802] = { - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_RPAREN] = ACTIONS(2800), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2800), - [anon_sym_RBRACK] = ACTIONS(2800), - [anon_sym_EQ] = ACTIONS(2802), - [anon_sym_COLON] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_STAR_EQ] = ACTIONS(2800), - [anon_sym_SLASH_EQ] = ACTIONS(2800), - [anon_sym_PERCENT_EQ] = ACTIONS(2800), - [anon_sym_PLUS_EQ] = ACTIONS(2800), - [anon_sym_DASH_EQ] = ACTIONS(2800), - [anon_sym_LT_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_GT_EQ] = ACTIONS(2800), - [anon_sym_AMP_EQ] = ACTIONS(2800), - [anon_sym_CARET_EQ] = ACTIONS(2800), - [anon_sym_PIPE_EQ] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2802), - [anon_sym_GT] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2802), - [anon_sym_PLUS] = ACTIONS(2802), - [anon_sym_DASH] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2802), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_DASH_GT] = ACTIONS(2800), + [anon_sym_LPAREN] = ACTIONS(2802), + [anon_sym_COMMA] = ACTIONS(2802), + [anon_sym_RPAREN] = ACTIONS(2802), + [anon_sym_SEMI] = ACTIONS(2802), + [anon_sym_RBRACE] = ACTIONS(2802), + [anon_sym_STAR] = ACTIONS(2804), + [anon_sym_LBRACK] = ACTIONS(2802), + [anon_sym_RBRACK] = ACTIONS(2802), + [anon_sym_EQ] = ACTIONS(2804), + [anon_sym_COLON] = ACTIONS(2802), + [anon_sym_QMARK] = ACTIONS(2802), + [anon_sym_STAR_EQ] = ACTIONS(2802), + [anon_sym_SLASH_EQ] = ACTIONS(2802), + [anon_sym_PERCENT_EQ] = ACTIONS(2802), + [anon_sym_PLUS_EQ] = ACTIONS(2802), + [anon_sym_DASH_EQ] = ACTIONS(2802), + [anon_sym_LT_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_GT_EQ] = ACTIONS(2802), + [anon_sym_AMP_EQ] = ACTIONS(2802), + [anon_sym_CARET_EQ] = ACTIONS(2802), + [anon_sym_PIPE_EQ] = ACTIONS(2802), + [anon_sym_AMP] = ACTIONS(2804), + [anon_sym_PIPE_PIPE] = ACTIONS(2802), + [anon_sym_AMP_AMP] = ACTIONS(2802), + [anon_sym_PIPE] = ACTIONS(2804), + [anon_sym_CARET] = ACTIONS(2804), + [anon_sym_EQ_EQ] = ACTIONS(2802), + [anon_sym_BANG_EQ] = ACTIONS(2802), + [anon_sym_LT] = ACTIONS(2804), + [anon_sym_GT] = ACTIONS(2804), + [anon_sym_LT_EQ] = ACTIONS(2802), + [anon_sym_GT_EQ] = ACTIONS(2802), + [anon_sym_LT_LT] = ACTIONS(2804), + [anon_sym_GT_GT] = ACTIONS(2804), + [anon_sym_PLUS] = ACTIONS(2804), + [anon_sym_DASH] = ACTIONS(2804), + [anon_sym_SLASH] = ACTIONS(2804), + [anon_sym_PERCENT] = ACTIONS(2804), + [anon_sym_DASH_DASH] = ACTIONS(2802), + [anon_sym_PLUS_PLUS] = ACTIONS(2802), + [anon_sym_DOT] = ACTIONS(2802), + [anon_sym_DASH_GT] = ACTIONS(2802), [sym_comment] = ACTIONS(49), }, [803] = { [sym_destructor_name] = STATE(428), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2804), + [sym_identifier] = ACTIONS(2806), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(702), }, [804] = { - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_RPAREN] = ACTIONS(2806), - [anon_sym_SEMI] = ACTIONS(2806), - [anon_sym_RBRACE] = ACTIONS(2806), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2806), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym_COLON] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2806), - [anon_sym_STAR_EQ] = ACTIONS(2806), - [anon_sym_SLASH_EQ] = ACTIONS(2806), - [anon_sym_PERCENT_EQ] = ACTIONS(2806), - [anon_sym_PLUS_EQ] = ACTIONS(2806), - [anon_sym_DASH_EQ] = ACTIONS(2806), - [anon_sym_LT_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_GT_EQ] = ACTIONS(2806), - [anon_sym_AMP_EQ] = ACTIONS(2806), - [anon_sym_CARET_EQ] = ACTIONS(2806), - [anon_sym_PIPE_EQ] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DOT] = ACTIONS(2806), - [anon_sym_DASH_GT] = ACTIONS(2806), + [anon_sym_LPAREN] = ACTIONS(2808), + [anon_sym_COMMA] = ACTIONS(2808), + [anon_sym_RPAREN] = ACTIONS(2808), + [anon_sym_SEMI] = ACTIONS(2808), + [anon_sym_RBRACE] = ACTIONS(2808), + [anon_sym_STAR] = ACTIONS(2810), + [anon_sym_LBRACK] = ACTIONS(2808), + [anon_sym_RBRACK] = ACTIONS(2808), + [anon_sym_EQ] = ACTIONS(2810), + [anon_sym_COLON] = ACTIONS(2808), + [anon_sym_QMARK] = ACTIONS(2808), + [anon_sym_STAR_EQ] = ACTIONS(2808), + [anon_sym_SLASH_EQ] = ACTIONS(2808), + [anon_sym_PERCENT_EQ] = ACTIONS(2808), + [anon_sym_PLUS_EQ] = ACTIONS(2808), + [anon_sym_DASH_EQ] = ACTIONS(2808), + [anon_sym_LT_LT_EQ] = ACTIONS(2808), + [anon_sym_GT_GT_EQ] = ACTIONS(2808), + [anon_sym_AMP_EQ] = ACTIONS(2808), + [anon_sym_CARET_EQ] = ACTIONS(2808), + [anon_sym_PIPE_EQ] = ACTIONS(2808), + [anon_sym_AMP] = ACTIONS(2810), + [anon_sym_PIPE_PIPE] = ACTIONS(2808), + [anon_sym_AMP_AMP] = ACTIONS(2808), + [anon_sym_PIPE] = ACTIONS(2810), + [anon_sym_CARET] = ACTIONS(2810), + [anon_sym_EQ_EQ] = ACTIONS(2808), + [anon_sym_BANG_EQ] = ACTIONS(2808), + [anon_sym_LT] = ACTIONS(2810), + [anon_sym_GT] = ACTIONS(2810), + [anon_sym_LT_EQ] = ACTIONS(2808), + [anon_sym_GT_EQ] = ACTIONS(2808), + [anon_sym_LT_LT] = ACTIONS(2810), + [anon_sym_GT_GT] = ACTIONS(2810), + [anon_sym_PLUS] = ACTIONS(2810), + [anon_sym_DASH] = ACTIONS(2810), + [anon_sym_SLASH] = ACTIONS(2810), + [anon_sym_PERCENT] = ACTIONS(2810), + [anon_sym_DASH_DASH] = ACTIONS(2808), + [anon_sym_PLUS_PLUS] = ACTIONS(2808), + [anon_sym_DOT] = ACTIONS(2808), + [anon_sym_DASH_GT] = ACTIONS(2808), [sym_comment] = ACTIONS(49), }, [805] = { - [sym__abstract_declarator] = STATE(1344), - [sym_abstract_pointer_declarator] = STATE(1344), - [sym_abstract_function_declarator] = STATE(1344), - [sym_abstract_array_declarator] = STATE(1344), - [sym_parameter_list] = STATE(1345), - [sym_abstract_reference_declarator] = STATE(1344), + [sym__abstract_declarator] = STATE(1345), + [sym_abstract_pointer_declarator] = STATE(1345), + [sym_abstract_function_declarator] = STATE(1345), + [sym_abstract_array_declarator] = STATE(1345), + [sym_parameter_list] = STATE(1346), + [sym_abstract_reference_declarator] = STATE(1345), [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_STAR] = ACTIONS(1558), [anon_sym_LBRACK] = ACTIONS(1121), @@ -37773,12 +37829,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [806] = { - [sym__abstract_declarator] = STATE(1344), - [sym_abstract_pointer_declarator] = STATE(1344), - [sym_abstract_function_declarator] = STATE(1344), - [sym_abstract_array_declarator] = STATE(1344), - [sym_parameter_list] = STATE(1345), - [sym_abstract_reference_declarator] = STATE(1344), + [sym__abstract_declarator] = STATE(1345), + [sym_abstract_pointer_declarator] = STATE(1345), + [sym_abstract_function_declarator] = STATE(1345), + [sym_abstract_array_declarator] = STATE(1345), + [sym_parameter_list] = STATE(1346), + [sym_abstract_reference_declarator] = STATE(1345), [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_STAR] = ACTIONS(1558), [anon_sym_LBRACK] = ACTIONS(1121), @@ -37787,25 +37843,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), }, [807] = { - [sym_parameter_list] = STATE(1346), + [sym_parameter_list] = STATE(1347), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, [808] = { - [sym_compound_statement] = STATE(1347), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_LBRACK] = ACTIONS(2810), + [sym_compound_statement] = STATE(1348), + [anon_sym_LPAREN] = ACTIONS(2812), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(2812), [sym_comment] = ACTIONS(49), }, [809] = { - [sym_type_qualifier] = STATE(1349), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1349), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), + [sym_type_qualifier] = STATE(1350), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1350), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -37813,9 +37869,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2812), + [anon_sym_DASH_GT] = ACTIONS(2814), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2814), + [sym_noexcept] = ACTIONS(2816), }, [810] = { [sym_type_qualifier] = STATE(279), @@ -37824,8 +37880,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1351), - [sym_parenthesized_expression] = STATE(1351), + [sym_type_descriptor] = STATE(1352), + [sym_parenthesized_expression] = STATE(1352), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -37849,7 +37905,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(2816), + [anon_sym_GT] = ACTIONS(2818), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), @@ -37864,8 +37920,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1353), - [sym_parenthesized_expression] = STATE(1353), + [sym_type_descriptor] = STATE(1354), + [sym_parenthesized_expression] = STATE(1354), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -37889,7 +37945,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(2818), + [anon_sym_GT] = ACTIONS(2820), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), @@ -37938,9 +37994,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(710), }, [813] = { - [sym_storage_class_specifier] = STATE(1354), - [sym_type_qualifier] = STATE(1354), - [aux_sym__declaration_specifiers_repeat1] = STATE(1354), + [sym_storage_class_specifier] = STATE(1355), + [sym_type_qualifier] = STATE(1355), + [aux_sym__declaration_specifiers_repeat1] = STATE(1355), [sym_raw_string_literal] = ACTIONS(696), [anon_sym_LPAREN] = ACTIONS(696), [anon_sym_extern] = ACTIONS(1518), @@ -38072,9 +38128,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(2820), - [anon_sym_long] = ACTIONS(2820), - [anon_sym_short] = ACTIONS(2820), + [anon_sym_unsigned] = ACTIONS(2822), + [anon_sym_long] = ACTIONS(2822), + [anon_sym_short] = ACTIONS(2822), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(816), [anon_sym_BANG] = ACTIONS(816), @@ -38098,39 +38154,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(818), }, [817] = { - [sym_enumerator_list] = STATE(1357), - [anon_sym_LBRACE] = ACTIONS(2823), - [sym_identifier] = ACTIONS(2825), + [sym_enumerator_list] = STATE(1358), + [anon_sym_LBRACE] = ACTIONS(2825), + [sym_identifier] = ACTIONS(2827), [sym_comment] = ACTIONS(49), }, [818] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1361), - [sym_base_class_clause] = STATE(1362), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [sym_field_declaration_list] = STATE(1361), + [sym__class_name] = STATE(1362), + [sym_base_class_clause] = STATE(1363), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [819] = { - [sym_field_declaration_list] = STATE(1365), - [sym__class_name] = STATE(1366), - [sym_base_class_clause] = STATE(1367), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [sym_field_declaration_list] = STATE(1366), + [sym__class_name] = STATE(1367), + [sym_base_class_clause] = STATE(1368), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [820] = { - [sym_template_argument_list] = STATE(1370), + [sym_template_argument_list] = STATE(1371), [anon_sym_LPAREN] = ACTIONS(142), [anon_sym_COMMA] = ACTIONS(142), [anon_sym_RPAREN] = ACTIONS(142), @@ -38149,35 +38205,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(144), [anon_sym_AMP] = ACTIONS(144), [anon_sym_AMP_AMP] = ACTIONS(142), - [anon_sym_LT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), [anon_sym_GT] = ACTIONS(142), [anon_sym_DASH_GT] = ACTIONS(142), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(142), - [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), }, [821] = { - [sym_field_declaration_list] = STATE(1371), - [sym__class_name] = STATE(1372), - [sym_base_class_clause] = STATE(1373), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [sym_field_declaration_list] = STATE(1372), + [sym__class_name] = STATE(1373), + [sym_base_class_clause] = STATE(1374), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [822] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), @@ -38185,45 +38241,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1578), [anon_sym_long] = ACTIONS(1578), [anon_sym_short] = ACTIONS(1578), - [sym_primitive_type] = ACTIONS(2835), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(2835), + [sym_auto] = ACTIONS(2837), [anon_sym_typename] = ACTIONS(1592), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [823] = { - [sym_identifier] = ACTIONS(2837), + [sym_identifier] = ACTIONS(2839), [sym_comment] = ACTIONS(49), }, [824] = { - [sym__abstract_declarator] = STATE(1378), - [sym_abstract_pointer_declarator] = STATE(1378), - [sym_abstract_function_declarator] = STATE(1378), - [sym_abstract_array_declarator] = STATE(1378), - [sym_parameter_list] = STATE(1379), - [sym_abstract_reference_declarator] = STATE(1378), + [sym__abstract_declarator] = STATE(1379), + [sym_abstract_pointer_declarator] = STATE(1379), + [sym_abstract_function_declarator] = STATE(1379), + [sym_abstract_array_declarator] = STATE(1379), + [sym_parameter_list] = STATE(1380), + [sym_abstract_reference_declarator] = STATE(1379), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, [825] = { [anon_sym_LPAREN] = ACTIONS(228), @@ -38248,10 +38304,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(228), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(228), - [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), }, [826] = { - [sym_template_argument_list] = STATE(1381), + [sym_template_argument_list] = STATE(1382), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_COMMA] = ACTIONS(228), [anon_sym_RPAREN] = ACTIONS(228), @@ -38270,7 +38326,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(228), [anon_sym_AMP] = ACTIONS(230), [anon_sym_AMP_AMP] = ACTIONS(228), - [anon_sym_LT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), [anon_sym_GT] = ACTIONS(228), [anon_sym_DASH_GT] = ACTIONS(228), [sym_comment] = ACTIONS(49), @@ -38278,10 +38334,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [827] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), }, [828] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1384), + [aux_sym_sized_type_specifier_repeat1] = STATE(1385), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_LBRACE] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), @@ -38293,15 +38349,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(2851), - [anon_sym_long] = ACTIONS(2851), - [anon_sym_short] = ACTIONS(2851), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(2853), + [anon_sym_long] = ACTIONS(2853), + [anon_sym_short] = ACTIONS(2853), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_COLON] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, @@ -38309,20 +38365,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_type_qualifier] = STATE(829), [sym_trailing_return_type] = STATE(829), [aux_sym_function_declarator_repeat1] = STATE(829), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(2865), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2868), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(2867), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2870), }, [830] = { [sym_raw_string_literal] = ACTIONS(249), @@ -38393,29 +38449,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(251), }, [831] = { - [sym_preproc_params] = STATE(1387), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2871), - [anon_sym_LF] = ACTIONS(2873), + [sym_preproc_params] = STATE(1388), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2875), [anon_sym_LPAREN] = ACTIONS(257), [sym_comment] = ACTIONS(83), }, [832] = { - [anon_sym_RPAREN] = ACTIONS(2875), + [anon_sym_RPAREN] = ACTIONS(2877), [sym_comment] = ACTIONS(49), }, [833] = { - [sym_preproc_include] = STATE(1420), - [sym_preproc_def] = STATE(1420), - [sym_preproc_function_def] = STATE(1420), - [sym_preproc_call] = STATE(1420), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1415), - [sym_preproc_elif_in_compound_statement] = STATE(1416), - [sym_declaration] = STATE(1420), - [sym_type_definition] = STATE(1420), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1420), + [sym_preproc_include] = STATE(1421), + [sym_preproc_def] = STATE(1421), + [sym_preproc_function_def] = STATE(1421), + [sym_preproc_call] = STATE(1421), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1416), + [sym_preproc_elif_in_compound_statement] = STATE(1417), + [sym_declaration] = STATE(1421), + [sym_type_definition] = STATE(1421), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1421), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -38423,70 +38479,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1420), - [sym_expression_statement] = STATE(1420), - [sym_if_statement] = STATE(1420), - [sym_switch_statement] = STATE(1420), - [sym_case_statement] = STATE(1420), - [sym_while_statement] = STATE(1420), - [sym_do_statement] = STATE(1420), - [sym_for_statement] = STATE(1420), - [sym_return_statement] = STATE(1420), - [sym_break_statement] = STATE(1420), - [sym_continue_statement] = STATE(1420), - [sym_goto_statement] = STATE(1420), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1420), + [sym_labeled_statement] = STATE(1421), + [sym_expression_statement] = STATE(1421), + [sym_if_statement] = STATE(1421), + [sym_switch_statement] = STATE(1421), + [sym_case_statement] = STATE(1421), + [sym_while_statement] = STATE(1421), + [sym_do_statement] = STATE(1421), + [sym_for_statement] = STATE(1421), + [sym_return_statement] = STATE(1421), + [sym_break_statement] = STATE(1421), + [sym_continue_statement] = STATE(1421), + [sym_goto_statement] = STATE(1421), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1421), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1420), + [sym_structured_binding_declaration] = STATE(1421), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1420), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1421), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1420), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1421), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2885), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2887), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -38506,17 +38562,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -38525,13 +38581,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -38539,21 +38595,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, [834] = { - [sym_preproc_include] = STATE(1424), - [sym_preproc_def] = STATE(1424), - [sym_preproc_function_def] = STATE(1424), - [sym_preproc_call] = STATE(1424), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1422), - [sym_preproc_elif_in_compound_statement] = STATE(1423), - [sym_declaration] = STATE(1424), - [sym_type_definition] = STATE(1424), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1424), + [sym_preproc_include] = STATE(1425), + [sym_preproc_def] = STATE(1425), + [sym_preproc_function_def] = STATE(1425), + [sym_preproc_call] = STATE(1425), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1423), + [sym_preproc_elif_in_compound_statement] = STATE(1424), + [sym_declaration] = STATE(1425), + [sym_type_definition] = STATE(1425), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1425), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -38561,70 +38617,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1424), - [sym_expression_statement] = STATE(1424), - [sym_if_statement] = STATE(1424), - [sym_switch_statement] = STATE(1424), - [sym_case_statement] = STATE(1424), - [sym_while_statement] = STATE(1424), - [sym_do_statement] = STATE(1424), - [sym_for_statement] = STATE(1424), - [sym_return_statement] = STATE(1424), - [sym_break_statement] = STATE(1424), - [sym_continue_statement] = STATE(1424), - [sym_goto_statement] = STATE(1424), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1424), + [sym_labeled_statement] = STATE(1425), + [sym_expression_statement] = STATE(1425), + [sym_if_statement] = STATE(1425), + [sym_switch_statement] = STATE(1425), + [sym_case_statement] = STATE(1425), + [sym_while_statement] = STATE(1425), + [sym_do_statement] = STATE(1425), + [sym_for_statement] = STATE(1425), + [sym_return_statement] = STATE(1425), + [sym_break_statement] = STATE(1425), + [sym_continue_statement] = STATE(1425), + [sym_goto_statement] = STATE(1425), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1425), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1424), + [sym_structured_binding_declaration] = STATE(1425), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1424), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1425), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1424), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1425), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2929), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2931), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -38644,17 +38700,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -38663,13 +38719,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -38677,21 +38733,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, [835] = { - [sym_preproc_include] = STATE(1428), - [sym_preproc_def] = STATE(1428), - [sym_preproc_function_def] = STATE(1428), - [sym_preproc_call] = STATE(1428), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1426), - [sym_preproc_elif_in_compound_statement] = STATE(1427), - [sym_declaration] = STATE(1428), - [sym_type_definition] = STATE(1428), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1428), + [sym_preproc_include] = STATE(1429), + [sym_preproc_def] = STATE(1429), + [sym_preproc_function_def] = STATE(1429), + [sym_preproc_call] = STATE(1429), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1427), + [sym_preproc_elif_in_compound_statement] = STATE(1428), + [sym_declaration] = STATE(1429), + [sym_type_definition] = STATE(1429), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1429), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -38699,70 +38755,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1428), - [sym_expression_statement] = STATE(1428), - [sym_if_statement] = STATE(1428), - [sym_switch_statement] = STATE(1428), - [sym_case_statement] = STATE(1428), - [sym_while_statement] = STATE(1428), - [sym_do_statement] = STATE(1428), - [sym_for_statement] = STATE(1428), - [sym_return_statement] = STATE(1428), - [sym_break_statement] = STATE(1428), - [sym_continue_statement] = STATE(1428), - [sym_goto_statement] = STATE(1428), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1428), + [sym_labeled_statement] = STATE(1429), + [sym_expression_statement] = STATE(1429), + [sym_if_statement] = STATE(1429), + [sym_switch_statement] = STATE(1429), + [sym_case_statement] = STATE(1429), + [sym_while_statement] = STATE(1429), + [sym_do_statement] = STATE(1429), + [sym_for_statement] = STATE(1429), + [sym_return_statement] = STATE(1429), + [sym_break_statement] = STATE(1429), + [sym_continue_statement] = STATE(1429), + [sym_goto_statement] = STATE(1429), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1429), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1428), + [sym_structured_binding_declaration] = STATE(1429), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1428), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1429), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1428), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1429), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2931), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2933), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -38782,17 +38838,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -38801,13 +38857,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -38815,10 +38871,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, [836] = { - [sym_preproc_arg] = ACTIONS(2933), + [sym_preproc_arg] = ACTIONS(2935), [sym_comment] = ACTIONS(83), }, [837] = { @@ -38890,7 +38946,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(309), }, [838] = { - [sym__type_declarator] = STATE(1430), + [sym__type_declarator] = STATE(1431), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -38901,14 +38957,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [839] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(1431), - [sym_sized_type_specifier] = STATE(1431), - [sym_enum_specifier] = STATE(1431), - [sym_struct_specifier] = STATE(1431), - [sym_union_specifier] = STATE(1431), - [sym_macro_type_specifier] = STATE(1431), - [sym_class_specifier] = STATE(1431), - [sym_dependent_type] = STATE(1431), + [sym__type_specifier] = STATE(1432), + [sym_sized_type_specifier] = STATE(1432), + [sym_enum_specifier] = STATE(1432), + [sym_struct_specifier] = STATE(1432), + [sym_union_specifier] = STATE(1432), + [sym_macro_type_specifier] = STATE(1432), + [sym_class_specifier] = STATE(1432), + [sym_dependent_type] = STATE(1432), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -38924,14 +38980,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(2935), + [sym_primitive_type] = ACTIONS(2937), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(2935), + [sym_auto] = ACTIONS(2937), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, @@ -39004,16 +39060,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(1624), }, [841] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -39021,18 +39077,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -39052,14 +39108,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -39067,7 +39123,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -39082,7 +39138,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(2937), + [anon_sym_RBRACE] = ACTIONS(2939), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -39138,59 +39194,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_nullptr] = ACTIONS(680), }, [842] = { - [sym__expression] = STATE(1442), - [sym_conditional_expression] = STATE(1442), - [sym_assignment_expression] = STATE(1442), - [sym_pointer_expression] = STATE(1442), - [sym_logical_expression] = STATE(1442), - [sym_bitwise_expression] = STATE(1442), - [sym_equality_expression] = STATE(1442), - [sym_relational_expression] = STATE(1442), - [sym_shift_expression] = STATE(1442), - [sym_math_expression] = STATE(1442), - [sym_cast_expression] = STATE(1442), - [sym_sizeof_expression] = STATE(1442), - [sym_subscript_expression] = STATE(1442), - [sym_call_expression] = STATE(1442), - [sym_field_expression] = STATE(1442), - [sym_compound_literal_expression] = STATE(1442), - [sym_parenthesized_expression] = STATE(1442), - [sym_concatenated_string] = STATE(1442), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1442), - [sym_new_expression] = STATE(1442), - [sym_delete_expression] = STATE(1442), - [sym_lambda_expression] = STATE(1442), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2939), - [sym_char_literal] = ACTIONS(2939), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(2957), - [sym_false] = ACTIONS(2957), - [sym_null] = ACTIONS(2957), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(2957), - }, - [843] = { [sym__expression] = STATE(1443), [sym_conditional_expression] = STATE(1443), [sym_assignment_expression] = STATE(1443), @@ -39218,32 +39221,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2963), - [sym_char_literal] = ACTIONS(2963), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(2965), - [sym_false] = ACTIONS(2965), - [sym_null] = ACTIONS(2965), + [sym_raw_string_literal] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2941), + [sym_char_literal] = ACTIONS(2941), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(2959), + [sym_false] = ACTIONS(2959), + [sym_null] = ACTIONS(2959), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(2959), + }, + [843] = { + [anon_sym_LPAREN] = ACTIONS(2965), + [sym_comment] = ACTIONS(49), }, [844] = { + [sym__expression] = STATE(1445), + [sym_conditional_expression] = STATE(1445), + [sym_assignment_expression] = STATE(1445), + [sym_pointer_expression] = STATE(1445), + [sym_logical_expression] = STATE(1445), + [sym_bitwise_expression] = STATE(1445), + [sym_equality_expression] = STATE(1445), + [sym_relational_expression] = STATE(1445), + [sym_shift_expression] = STATE(1445), + [sym_math_expression] = STATE(1445), + [sym_cast_expression] = STATE(1445), + [sym_sizeof_expression] = STATE(1445), + [sym_subscript_expression] = STATE(1445), + [sym_call_expression] = STATE(1445), + [sym_field_expression] = STATE(1445), + [sym_compound_literal_expression] = STATE(1445), + [sym_parenthesized_expression] = STATE(1445), + [sym_concatenated_string] = STATE(1445), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1445), + [sym_new_expression] = STATE(1445), + [sym_delete_expression] = STATE(1445), + [sym_lambda_expression] = STATE(1445), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2967), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2967), + [sym_char_literal] = ACTIONS(2967), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(2969), + [sym_false] = ACTIONS(2969), + [sym_null] = ACTIONS(2969), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(2969), + }, + [845] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -39262,7 +39322,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1444), + [sym_type_descriptor] = STATE(1446), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -39326,113 +39386,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [845] = { - [sym__expression] = STATE(1445), - [sym_conditional_expression] = STATE(1445), - [sym_assignment_expression] = STATE(1445), - [sym_pointer_expression] = STATE(1445), - [sym_logical_expression] = STATE(1445), - [sym_bitwise_expression] = STATE(1445), - [sym_equality_expression] = STATE(1445), - [sym_relational_expression] = STATE(1445), - [sym_shift_expression] = STATE(1445), - [sym_math_expression] = STATE(1445), - [sym_cast_expression] = STATE(1445), - [sym_sizeof_expression] = STATE(1445), - [sym_subscript_expression] = STATE(1445), - [sym_call_expression] = STATE(1445), - [sym_field_expression] = STATE(1445), - [sym_compound_literal_expression] = STATE(1445), - [sym_parenthesized_expression] = STATE(1445), - [sym_concatenated_string] = STATE(1445), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1445), - [sym_new_expression] = STATE(1445), - [sym_delete_expression] = STATE(1445), - [sym_lambda_expression] = STATE(1445), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(2967), - [sym_char_literal] = ACTIONS(2967), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2969), - [sym_false] = ACTIONS(2969), - [sym_null] = ACTIONS(2969), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2969), - }, [846] = { - [sym__expression] = STATE(1446), - [sym_conditional_expression] = STATE(1446), - [sym_assignment_expression] = STATE(1446), - [sym_pointer_expression] = STATE(1446), - [sym_logical_expression] = STATE(1446), - [sym_bitwise_expression] = STATE(1446), - [sym_equality_expression] = STATE(1446), - [sym_relational_expression] = STATE(1446), - [sym_shift_expression] = STATE(1446), - [sym_math_expression] = STATE(1446), - [sym_cast_expression] = STATE(1446), - [sym_sizeof_expression] = STATE(1446), - [sym_subscript_expression] = STATE(1446), - [sym_call_expression] = STATE(1446), - [sym_field_expression] = STATE(1446), - [sym_compound_literal_expression] = STATE(1446), - [sym_parenthesized_expression] = STATE(1446), - [sym_concatenated_string] = STATE(1446), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1446), - [sym_new_expression] = STATE(1446), - [sym_delete_expression] = STATE(1446), - [sym_lambda_expression] = STATE(1446), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(2971), - [sym_char_literal] = ACTIONS(2971), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_null] = ACTIONS(2973), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2973), - }, - [847] = { [sym__expression] = STATE(1447), [sym_conditional_expression] = STATE(1447), [sym_assignment_expression] = STATE(1447), @@ -39457,35 +39411,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1447), [sym_lambda_expression] = STATE(1447), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(2975), - [sym_char_literal] = ACTIONS(2975), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_null] = ACTIONS(2977), + [sym_raw_string_literal] = ACTIONS(2971), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(2971), + [sym_char_literal] = ACTIONS(2971), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(2973), + [sym_false] = ACTIONS(2973), + [sym_null] = ACTIONS(2973), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(2973), }, - [848] = { + [847] = { [sym__expression] = STATE(1448), [sym_conditional_expression] = STATE(1448), [sym_assignment_expression] = STATE(1448), @@ -39510,32 +39464,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1448), [sym_lambda_expression] = STATE(1448), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2975), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(2975), + [sym_char_literal] = ACTIONS(2975), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(2977), + [sym_false] = ACTIONS(2977), + [sym_null] = ACTIONS(2977), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(2977), + }, + [848] = { + [sym__expression] = STATE(1449), + [sym_conditional_expression] = STATE(1449), + [sym_assignment_expression] = STATE(1449), + [sym_pointer_expression] = STATE(1449), + [sym_logical_expression] = STATE(1449), + [sym_bitwise_expression] = STATE(1449), + [sym_equality_expression] = STATE(1449), + [sym_relational_expression] = STATE(1449), + [sym_shift_expression] = STATE(1449), + [sym_math_expression] = STATE(1449), + [sym_cast_expression] = STATE(1449), + [sym_sizeof_expression] = STATE(1449), + [sym_subscript_expression] = STATE(1449), + [sym_call_expression] = STATE(1449), + [sym_field_expression] = STATE(1449), + [sym_compound_literal_expression] = STATE(1449), + [sym_parenthesized_expression] = STATE(1449), + [sym_concatenated_string] = STATE(1449), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1449), + [sym_new_expression] = STATE(1449), + [sym_delete_expression] = STATE(1449), + [sym_lambda_expression] = STATE(1449), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), [sym_number_literal] = ACTIONS(2979), [sym_char_literal] = ACTIONS(2979), - [sym_string_literal] = ACTIONS(1646), + [sym_string_literal] = ACTIONS(1648), [sym_true] = ACTIONS(2981), [sym_false] = ACTIONS(2981), [sym_null] = ACTIONS(2981), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), [sym_nullptr] = ACTIONS(2981), }, [849] = { @@ -39563,36 +39570,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1450), [sym_lambda_expression] = STATE(1450), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), [sym_number_literal] = ACTIONS(2983), [sym_char_literal] = ACTIONS(2983), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2987), - [sym_false] = ACTIONS(2987), - [sym_null] = ACTIONS(2987), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_null] = ACTIONS(2985), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2987), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(2985), }, [850] = { - [aux_sym_concatenated_string_repeat1] = STATE(1451), + [sym__expression] = STATE(1452), + [sym_conditional_expression] = STATE(1452), + [sym_assignment_expression] = STATE(1452), + [sym_pointer_expression] = STATE(1452), + [sym_logical_expression] = STATE(1452), + [sym_bitwise_expression] = STATE(1452), + [sym_equality_expression] = STATE(1452), + [sym_relational_expression] = STATE(1452), + [sym_shift_expression] = STATE(1452), + [sym_math_expression] = STATE(1452), + [sym_cast_expression] = STATE(1452), + [sym_sizeof_expression] = STATE(1452), + [sym_subscript_expression] = STATE(1452), + [sym_call_expression] = STATE(1452), + [sym_field_expression] = STATE(1452), + [sym_compound_literal_expression] = STATE(1452), + [sym_parenthesized_expression] = STATE(1452), + [sym_concatenated_string] = STATE(1452), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1452), + [sym_new_expression] = STATE(1452), + [sym_delete_expression] = STATE(1452), + [sym_lambda_expression] = STATE(1452), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(2987), + [sym_char_literal] = ACTIONS(2987), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(2991), + [sym_false] = ACTIONS(2991), + [sym_null] = ACTIONS(2991), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(2991), + }, + [851] = { + [aux_sym_concatenated_string_repeat1] = STATE(1453), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), @@ -39630,112 +39690,112 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(2989), + [sym_string_literal] = ACTIONS(2993), [sym_comment] = ACTIONS(49), }, - [851] = { + [852] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2991), + [anon_sym_delete] = ACTIONS(2995), [sym_operator_name] = ACTIONS(190), }, - [852] = { - [sym__expression] = STATE(1454), - [sym_conditional_expression] = STATE(1454), - [sym_assignment_expression] = STATE(1454), - [sym_pointer_expression] = STATE(1454), - [sym_logical_expression] = STATE(1454), - [sym_bitwise_expression] = STATE(1454), - [sym_equality_expression] = STATE(1454), - [sym_relational_expression] = STATE(1454), - [sym_shift_expression] = STATE(1454), - [sym_math_expression] = STATE(1454), - [sym_cast_expression] = STATE(1454), - [sym_sizeof_expression] = STATE(1454), - [sym_subscript_expression] = STATE(1454), - [sym_call_expression] = STATE(1454), - [sym_field_expression] = STATE(1454), - [sym_compound_literal_expression] = STATE(1454), - [sym_parenthesized_expression] = STATE(1454), - [sym_concatenated_string] = STATE(1454), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1454), - [sym_new_expression] = STATE(1454), - [sym_delete_expression] = STATE(1454), - [sym_lambda_expression] = STATE(1454), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(2993), - [sym_char_literal] = ACTIONS(2993), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_null] = ACTIONS(2997), + [853] = { + [sym__expression] = STATE(1456), + [sym_conditional_expression] = STATE(1456), + [sym_assignment_expression] = STATE(1456), + [sym_pointer_expression] = STATE(1456), + [sym_logical_expression] = STATE(1456), + [sym_bitwise_expression] = STATE(1456), + [sym_equality_expression] = STATE(1456), + [sym_relational_expression] = STATE(1456), + [sym_shift_expression] = STATE(1456), + [sym_math_expression] = STATE(1456), + [sym_cast_expression] = STATE(1456), + [sym_sizeof_expression] = STATE(1456), + [sym_subscript_expression] = STATE(1456), + [sym_call_expression] = STATE(1456), + [sym_field_expression] = STATE(1456), + [sym_compound_literal_expression] = STATE(1456), + [sym_parenthesized_expression] = STATE(1456), + [sym_concatenated_string] = STATE(1456), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1456), + [sym_new_expression] = STATE(1456), + [sym_delete_expression] = STATE(1456), + [sym_lambda_expression] = STATE(1456), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(2997), + [sym_char_literal] = ACTIONS(2997), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_null] = ACTIONS(3001), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(3001), }, - [853] = { + [854] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [854] = { + [855] = { [sym_template_argument_list] = STATE(140), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_STAR] = ACTIONS(1479), @@ -39760,7 +39820,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1479), [anon_sym_EQ_EQ] = ACTIONS(1477), [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3035), [anon_sym_GT] = ACTIONS(1479), [anon_sym_LT_EQ] = ACTIONS(1477), [anon_sym_GT_EQ] = ACTIONS(1477), @@ -39776,11 +39836,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), }, - [855] = { - [sym_declaration] = STATE(1471), - [sym_type_definition] = STATE(1471), - [sym__declaration_specifiers] = STATE(1472), - [sym_compound_statement] = STATE(1471), + [856] = { + [sym_declaration] = STATE(1473), + [sym_type_definition] = STATE(1473), + [sym__declaration_specifiers] = STATE(1474), + [sym_compound_statement] = STATE(1473), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -39788,18 +39848,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(1471), - [sym_expression_statement] = STATE(1471), - [sym_if_statement] = STATE(1471), - [sym_switch_statement] = STATE(1471), - [sym_case_statement] = STATE(1471), - [sym_while_statement] = STATE(1471), - [sym_do_statement] = STATE(1471), - [sym_for_statement] = STATE(1471), - [sym_return_statement] = STATE(1471), - [sym_break_statement] = STATE(1471), - [sym_continue_statement] = STATE(1471), - [sym_goto_statement] = STATE(1471), + [sym_labeled_statement] = STATE(1473), + [sym_expression_statement] = STATE(1473), + [sym_if_statement] = STATE(1473), + [sym_switch_statement] = STATE(1473), + [sym_case_statement] = STATE(1473), + [sym_while_statement] = STATE(1473), + [sym_do_statement] = STATE(1473), + [sym_for_statement] = STATE(1473), + [sym_return_statement] = STATE(1473), + [sym_break_statement] = STATE(1473), + [sym_continue_statement] = STATE(1473), + [sym_goto_statement] = STATE(1473), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -39822,16 +39882,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), + [sym_template_type] = STATE(1475), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1471), + [sym_for_range_loop] = STATE(1473), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [sym_raw_string_literal] = ACTIONS(620), @@ -39884,85 +39944,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3038), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [856] = { - [sym__expression] = STATE(1475), - [sym_conditional_expression] = STATE(1475), - [sym_assignment_expression] = STATE(1475), - [sym_pointer_expression] = STATE(1475), - [sym_logical_expression] = STATE(1475), - [sym_bitwise_expression] = STATE(1475), - [sym_equality_expression] = STATE(1475), - [sym_relational_expression] = STATE(1475), - [sym_shift_expression] = STATE(1475), - [sym_math_expression] = STATE(1475), - [sym_cast_expression] = STATE(1475), - [sym_sizeof_expression] = STATE(1475), - [sym_subscript_expression] = STATE(1475), - [sym_call_expression] = STATE(1475), - [sym_field_expression] = STATE(1475), - [sym_compound_literal_expression] = STATE(1475), - [sym_parenthesized_expression] = STATE(1475), - [sym_concatenated_string] = STATE(1475), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1475), - [sym_new_expression] = STATE(1475), - [sym_delete_expression] = STATE(1475), - [sym_lambda_expression] = STATE(1475), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3038), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(3038), - [sym_char_literal] = ACTIONS(3038), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(3040), - [sym_false] = ACTIONS(3040), - [sym_null] = ACTIONS(3040), + [857] = { + [sym__expression] = STATE(1477), + [sym_conditional_expression] = STATE(1477), + [sym_assignment_expression] = STATE(1477), + [sym_pointer_expression] = STATE(1477), + [sym_logical_expression] = STATE(1477), + [sym_bitwise_expression] = STATE(1477), + [sym_equality_expression] = STATE(1477), + [sym_relational_expression] = STATE(1477), + [sym_shift_expression] = STATE(1477), + [sym_math_expression] = STATE(1477), + [sym_cast_expression] = STATE(1477), + [sym_sizeof_expression] = STATE(1477), + [sym_subscript_expression] = STATE(1477), + [sym_call_expression] = STATE(1477), + [sym_field_expression] = STATE(1477), + [sym_compound_literal_expression] = STATE(1477), + [sym_parenthesized_expression] = STATE(1477), + [sym_concatenated_string] = STATE(1477), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1477), + [sym_new_expression] = STATE(1477), + [sym_delete_expression] = STATE(1477), + [sym_lambda_expression] = STATE(1477), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3042), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(3042), + [sym_char_literal] = ACTIONS(3042), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(3044), + [sym_false] = ACTIONS(3044), + [sym_null] = ACTIONS(3044), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(3040), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(3044), }, - [857] = { + [858] = { [anon_sym_else] = ACTIONS(1614), [anon_sym_while] = ACTIONS(1614), [sym_comment] = ACTIONS(49), }, - [858] = { - [sym_preproc_include] = STATE(1477), - [sym_preproc_def] = STATE(1477), - [sym_preproc_function_def] = STATE(1477), - [sym_preproc_call] = STATE(1477), + [859] = { + [sym_preproc_include] = STATE(1479), + [sym_preproc_def] = STATE(1479), + [sym_preproc_function_def] = STATE(1479), + [sym_preproc_call] = STATE(1479), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1477), - [sym_type_definition] = STATE(1477), + [sym_declaration] = STATE(1479), + [sym_type_definition] = STATE(1479), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1477), + [sym_compound_statement] = STATE(1479), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -39970,18 +40030,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1477), - [sym_expression_statement] = STATE(1477), - [sym_if_statement] = STATE(1477), - [sym_switch_statement] = STATE(1477), - [sym_case_statement] = STATE(1477), - [sym_while_statement] = STATE(1477), - [sym_do_statement] = STATE(1477), - [sym_for_statement] = STATE(1477), - [sym_return_statement] = STATE(1477), - [sym_break_statement] = STATE(1477), - [sym_continue_statement] = STATE(1477), - [sym_goto_statement] = STATE(1477), + [sym_labeled_statement] = STATE(1479), + [sym_expression_statement] = STATE(1479), + [sym_if_statement] = STATE(1479), + [sym_switch_statement] = STATE(1479), + [sym_case_statement] = STATE(1479), + [sym_while_statement] = STATE(1479), + [sym_do_statement] = STATE(1479), + [sym_for_statement] = STATE(1479), + [sym_return_statement] = STATE(1479), + [sym_break_statement] = STATE(1479), + [sym_continue_statement] = STATE(1479), + [sym_goto_statement] = STATE(1479), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -40001,14 +40061,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(1477), + [sym__empty_declaration] = STATE(1479), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1477), + [sym_structured_binding_declaration] = STATE(1479), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1477), + [sym_for_range_loop] = STATE(1479), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -40016,7 +40076,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1477), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1479), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -40031,7 +40091,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(3046), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -40086,135 +40146,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [859] = { - [anon_sym_LPAREN] = ACTIONS(3044), - [sym_comment] = ACTIONS(49), - }, [860] = { - [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_LPAREN] = ACTIONS(3048), + [anon_sym_constexpr] = ACTIONS(3050), [sym_comment] = ACTIONS(49), }, [861] = { - [sym__expression] = STATE(1480), - [sym_conditional_expression] = STATE(1480), - [sym_assignment_expression] = STATE(1480), - [sym_pointer_expression] = STATE(1480), - [sym_logical_expression] = STATE(1480), - [sym_bitwise_expression] = STATE(1480), - [sym_equality_expression] = STATE(1480), - [sym_relational_expression] = STATE(1480), - [sym_shift_expression] = STATE(1480), - [sym_math_expression] = STATE(1480), - [sym_cast_expression] = STATE(1480), - [sym_sizeof_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_call_expression] = STATE(1480), - [sym_field_expression] = STATE(1480), - [sym_compound_literal_expression] = STATE(1480), - [sym_parenthesized_expression] = STATE(1480), - [sym_concatenated_string] = STATE(1480), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1480), - [sym_new_expression] = STATE(1480), - [sym_delete_expression] = STATE(1480), - [sym_lambda_expression] = STATE(1480), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3048), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(3048), - [sym_char_literal] = ACTIONS(3048), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(3050), - [sym_false] = ACTIONS(3050), - [sym_null] = ACTIONS(3050), - [sym_identifier] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(3052), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(3050), }, [862] = { - [anon_sym_COLON] = ACTIONS(3052), + [sym__expression] = STATE(1483), + [sym_conditional_expression] = STATE(1483), + [sym_assignment_expression] = STATE(1483), + [sym_pointer_expression] = STATE(1483), + [sym_logical_expression] = STATE(1483), + [sym_bitwise_expression] = STATE(1483), + [sym_equality_expression] = STATE(1483), + [sym_relational_expression] = STATE(1483), + [sym_shift_expression] = STATE(1483), + [sym_math_expression] = STATE(1483), + [sym_cast_expression] = STATE(1483), + [sym_sizeof_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_call_expression] = STATE(1483), + [sym_field_expression] = STATE(1483), + [sym_compound_literal_expression] = STATE(1483), + [sym_parenthesized_expression] = STATE(1483), + [sym_concatenated_string] = STATE(1483), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1483), + [sym_new_expression] = STATE(1483), + [sym_delete_expression] = STATE(1483), + [sym_lambda_expression] = STATE(1483), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3054), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(3054), + [sym_char_literal] = ACTIONS(3054), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(3056), + [sym_false] = ACTIONS(3056), + [sym_null] = ACTIONS(3056), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(3056), }, [863] = { - [anon_sym_LPAREN] = ACTIONS(3054), + [anon_sym_COLON] = ACTIONS(3058), [sym_comment] = ACTIONS(49), }, [864] = { - [sym_compound_statement] = STATE(1483), - [sym_labeled_statement] = STATE(1483), - [sym_expression_statement] = STATE(1483), - [sym_if_statement] = STATE(1483), - [sym_switch_statement] = STATE(1483), - [sym_case_statement] = STATE(1483), - [sym_while_statement] = STATE(1483), - [sym_do_statement] = STATE(1483), - [sym_for_statement] = STATE(1483), - [sym_return_statement] = STATE(1483), - [sym_break_statement] = STATE(1483), - [sym_continue_statement] = STATE(1483), - [sym_goto_statement] = STATE(1483), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(1483), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(3060), + [sym_comment] = ACTIONS(49), + }, + [865] = { + [sym_compound_statement] = STATE(1486), + [sym_labeled_statement] = STATE(1486), + [sym_expression_statement] = STATE(1486), + [sym_if_statement] = STATE(1486), + [sym_switch_statement] = STATE(1486), + [sym_case_statement] = STATE(1486), + [sym_while_statement] = STATE(1486), + [sym_do_statement] = STATE(1486), + [sym_for_statement] = STATE(1486), + [sym_return_statement] = STATE(1486), + [sym_break_statement] = STATE(1486), + [sym_continue_statement] = STATE(1486), + [sym_goto_statement] = STATE(1486), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(1486), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -40223,55 +40284,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [865] = { - [anon_sym_LPAREN] = ACTIONS(3056), + [866] = { + [anon_sym_LPAREN] = ACTIONS(3062), [sym_comment] = ACTIONS(49), }, - [866] = { - [sym__expression] = STATE(1486), - [sym_conditional_expression] = STATE(1486), - [sym_assignment_expression] = STATE(1486), - [sym_pointer_expression] = STATE(1486), - [sym_logical_expression] = STATE(1486), - [sym_bitwise_expression] = STATE(1486), - [sym_equality_expression] = STATE(1486), - [sym_relational_expression] = STATE(1486), - [sym_shift_expression] = STATE(1486), - [sym_math_expression] = STATE(1486), - [sym_cast_expression] = STATE(1486), - [sym_sizeof_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_call_expression] = STATE(1486), - [sym_field_expression] = STATE(1486), - [sym_compound_literal_expression] = STATE(1486), - [sym_parenthesized_expression] = STATE(1486), - [sym_initializer_list] = STATE(1487), - [sym_concatenated_string] = STATE(1486), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1486), - [sym_new_expression] = STATE(1486), - [sym_delete_expression] = STATE(1486), - [sym_lambda_expression] = STATE(1486), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3058), + [867] = { + [sym__expression] = STATE(1489), + [sym_conditional_expression] = STATE(1489), + [sym_assignment_expression] = STATE(1489), + [sym_pointer_expression] = STATE(1489), + [sym_logical_expression] = STATE(1489), + [sym_bitwise_expression] = STATE(1489), + [sym_equality_expression] = STATE(1489), + [sym_relational_expression] = STATE(1489), + [sym_shift_expression] = STATE(1489), + [sym_math_expression] = STATE(1489), + [sym_cast_expression] = STATE(1489), + [sym_sizeof_expression] = STATE(1489), + [sym_subscript_expression] = STATE(1489), + [sym_call_expression] = STATE(1489), + [sym_field_expression] = STATE(1489), + [sym_compound_literal_expression] = STATE(1489), + [sym_parenthesized_expression] = STATE(1489), + [sym_initializer_list] = STATE(1490), + [sym_concatenated_string] = STATE(1489), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1489), + [sym_new_expression] = STATE(1489), + [sym_delete_expression] = STATE(1489), + [sym_lambda_expression] = STATE(1489), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3064), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(3060), + [anon_sym_SEMI] = ACTIONS(3066), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -40283,34 +40344,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(3058), - [sym_char_literal] = ACTIONS(3058), + [sym_number_literal] = ACTIONS(3064), + [sym_char_literal] = ACTIONS(3064), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(3062), - [sym_false] = ACTIONS(3062), - [sym_null] = ACTIONS(3062), + [sym_true] = ACTIONS(3068), + [sym_false] = ACTIONS(3068), + [sym_null] = ACTIONS(3068), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(3062), - }, - [867] = { - [anon_sym_SEMI] = ACTIONS(3064), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(3068), }, [868] = { - [anon_sym_SEMI] = ACTIONS(3066), + [anon_sym_SEMI] = ACTIONS(3070), [sym_comment] = ACTIONS(49), }, [869] = { - [sym_identifier] = ACTIONS(3068), + [anon_sym_SEMI] = ACTIONS(3072), [sym_comment] = ACTIONS(49), }, [870] = { + [sym_identifier] = ACTIONS(3074), + [sym_comment] = ACTIONS(49), + }, + [871] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -40318,7 +40379,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3076), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -40352,61 +40413,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [871] = { - [anon_sym_while] = ACTIONS(3072), + [872] = { + [anon_sym_while] = ACTIONS(3078), [sym_comment] = ACTIONS(49), }, - [872] = { + [873] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(3074), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(3080), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [873] = { - [anon_sym_SEMI] = ACTIONS(3074), + [874] = { + [anon_sym_SEMI] = ACTIONS(3080), [sym_comment] = ACTIONS(49), }, - [874] = { - [sym_declaration] = STATE(1494), - [sym__declaration_specifiers] = STATE(1497), + [875] = { + [sym_declaration] = STATE(1497), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -40414,42 +40475,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(1498), - [sym_conditional_expression] = STATE(1498), - [sym_assignment_expression] = STATE(1498), - [sym_pointer_expression] = STATE(1498), - [sym_logical_expression] = STATE(1498), - [sym_bitwise_expression] = STATE(1498), - [sym_equality_expression] = STATE(1498), - [sym_relational_expression] = STATE(1498), - [sym_shift_expression] = STATE(1498), - [sym_math_expression] = STATE(1498), - [sym_cast_expression] = STATE(1498), - [sym_sizeof_expression] = STATE(1498), - [sym_subscript_expression] = STATE(1498), - [sym_call_expression] = STATE(1498), - [sym_field_expression] = STATE(1498), - [sym_compound_literal_expression] = STATE(1498), - [sym_parenthesized_expression] = STATE(1498), - [sym_concatenated_string] = STATE(1498), + [sym__expression] = STATE(1501), + [sym_conditional_expression] = STATE(1501), + [sym_assignment_expression] = STATE(1501), + [sym_pointer_expression] = STATE(1501), + [sym_logical_expression] = STATE(1501), + [sym_bitwise_expression] = STATE(1501), + [sym_equality_expression] = STATE(1501), + [sym_relational_expression] = STATE(1501), + [sym_shift_expression] = STATE(1501), + [sym_math_expression] = STATE(1501), + [sym_cast_expression] = STATE(1501), + [sym_sizeof_expression] = STATE(1501), + [sym_subscript_expression] = STATE(1501), + [sym_call_expression] = STATE(1501), + [sym_field_expression] = STATE(1501), + [sym_compound_literal_expression] = STATE(1501), + [sym_parenthesized_expression] = STATE(1501), + [sym_concatenated_string] = STATE(1501), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(1498), - [sym_for_range_declaration] = STATE(1499), - [sym_new_expression] = STATE(1498), - [sym_delete_expression] = STATE(1498), - [sym_lambda_expression] = STATE(1498), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(1501), + [sym_for_range_declaration] = STATE(1502), + [sym_new_expression] = STATE(1501), + [sym_delete_expression] = STATE(1501), + [sym_lambda_expression] = STATE(1501), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(3076), + [sym_raw_string_literal] = ACTIONS(3082), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(3078), + [anon_sym_SEMI] = ACTIONS(3084), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -40478,136 +40539,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(3076), - [sym_char_literal] = ACTIONS(3076), + [sym_number_literal] = ACTIONS(3082), + [sym_char_literal] = ACTIONS(3082), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(3080), - [sym_false] = ACTIONS(3080), - [sym_null] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(3086), + [sym_false] = ACTIONS(3086), + [sym_null] = ACTIONS(3086), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(3080), - }, - [875] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), + [sym_nullptr] = ACTIONS(3086), }, [876] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [877] = { - [anon_sym_SEMI] = ACTIONS(3090), - [sym_comment] = ACTIONS(49), - }, - [878] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -40675,79 +40623,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [879] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), + [877] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [878] = { + [anon_sym_SEMI] = ACTIONS(3096), + [sym_comment] = ACTIONS(49), + }, + [879] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), }, [880] = { - [anon_sym_SEMI] = ACTIONS(3100), + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), }, [881] = { + [anon_sym_SEMI] = ACTIONS(3106), + [sym_comment] = ACTIONS(49), + }, + [882] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -40766,7 +40827,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1502), + [sym_type_descriptor] = STATE(1505), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -40830,105 +40891,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [882] = { + [883] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [883] = { - [aux_sym_concatenated_string_repeat1] = STATE(1503), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(3102), + [884] = { + [aux_sym_concatenated_string_repeat1] = STATE(1506), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(3108), [sym_comment] = ACTIONS(49), }, - [884] = { - [sym_compound_statement] = STATE(1505), - [sym_labeled_statement] = STATE(1505), - [sym_expression_statement] = STATE(1505), - [sym_if_statement] = STATE(1505), - [sym_switch_statement] = STATE(1505), - [sym_case_statement] = STATE(1505), - [sym_while_statement] = STATE(1505), - [sym_do_statement] = STATE(1505), - [sym_for_statement] = STATE(1505), - [sym_return_statement] = STATE(1505), - [sym_break_statement] = STATE(1505), - [sym_continue_statement] = STATE(1505), - [sym_goto_statement] = STATE(1505), + [885] = { + [sym_compound_statement] = STATE(1508), + [sym_labeled_statement] = STATE(1508), + [sym_expression_statement] = STATE(1508), + [sym_if_statement] = STATE(1508), + [sym_switch_statement] = STATE(1508), + [sym_case_statement] = STATE(1508), + [sym_while_statement] = STATE(1508), + [sym_do_statement] = STATE(1508), + [sym_for_statement] = STATE(1508), + [sym_return_statement] = STATE(1508), + [sym_break_statement] = STATE(1508), + [sym_continue_statement] = STATE(1508), + [sym_goto_statement] = STATE(1508), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -40950,7 +41011,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1505), + [sym_for_range_loop] = STATE(1508), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -40989,21 +41050,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [885] = { + [886] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3112), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, - [886] = { + [887] = { [anon_sym_LPAREN] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(704), [anon_sym_RPAREN] = ACTIONS(444), @@ -41011,7 +41072,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(447), [anon_sym_RBRACE] = ACTIONS(704), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2720), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(706), [anon_sym_static] = ACTIONS(449), @@ -41035,7 +41096,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(704), [anon_sym_CARET_EQ] = ACTIONS(704), [anon_sym_PIPE_EQ] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), [anon_sym_PIPE_PIPE] = ACTIONS(704), [anon_sym_AMP_AMP] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(706), @@ -41062,7 +41123,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(447), [sym_operator_name] = ACTIONS(447), }, - [887] = { + [888] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COMMA] = ACTIONS(518), [anon_sym_RPAREN] = ACTIONS(509), @@ -41070,7 +41131,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(514), [anon_sym_LBRACE] = ACTIONS(512), [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2729), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_EQ] = ACTIONS(520), [anon_sym_static] = ACTIONS(514), @@ -41094,7 +41155,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(518), [anon_sym_CARET_EQ] = ACTIONS(518), [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), [anon_sym_PIPE_PIPE] = ACTIONS(518), [anon_sym_AMP_AMP] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(520), @@ -41102,7 +41163,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(512), [anon_sym_EQ_EQ] = ACTIONS(518), [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), [anon_sym_GT] = ACTIONS(520), [anon_sym_LT_EQ] = ACTIONS(518), [anon_sym_GT_EQ] = ACTIONS(518), @@ -41121,38 +41182,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(516), [sym_operator_name] = ACTIONS(512), }, - [888] = { - [sym__expression] = STATE(1508), - [sym_conditional_expression] = STATE(1508), - [sym_assignment_expression] = STATE(1508), - [sym_pointer_expression] = STATE(1508), - [sym_logical_expression] = STATE(1508), - [sym_bitwise_expression] = STATE(1508), - [sym_equality_expression] = STATE(1508), - [sym_relational_expression] = STATE(1508), - [sym_shift_expression] = STATE(1508), - [sym_math_expression] = STATE(1508), - [sym_cast_expression] = STATE(1508), - [sym_sizeof_expression] = STATE(1508), - [sym_subscript_expression] = STATE(1508), - [sym_call_expression] = STATE(1508), - [sym_field_expression] = STATE(1508), - [sym_compound_literal_expression] = STATE(1508), - [sym_parenthesized_expression] = STATE(1508), - [sym_concatenated_string] = STATE(1508), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1508), - [sym_new_expression] = STATE(1508), - [sym_delete_expression] = STATE(1508), - [sym_lambda_expression] = STATE(1508), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3108), + [889] = { + [sym__expression] = STATE(1511), + [sym_conditional_expression] = STATE(1511), + [sym_assignment_expression] = STATE(1511), + [sym_pointer_expression] = STATE(1511), + [sym_logical_expression] = STATE(1511), + [sym_bitwise_expression] = STATE(1511), + [sym_equality_expression] = STATE(1511), + [sym_relational_expression] = STATE(1511), + [sym_shift_expression] = STATE(1511), + [sym_math_expression] = STATE(1511), + [sym_cast_expression] = STATE(1511), + [sym_sizeof_expression] = STATE(1511), + [sym_subscript_expression] = STATE(1511), + [sym_call_expression] = STATE(1511), + [sym_field_expression] = STATE(1511), + [sym_compound_literal_expression] = STATE(1511), + [sym_parenthesized_expression] = STATE(1511), + [sym_concatenated_string] = STATE(1511), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1511), + [sym_new_expression] = STATE(1511), + [sym_delete_expression] = STATE(1511), + [sym_lambda_expression] = STATE(1511), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3114), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_LBRACK] = ACTIONS(3116), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -41161,20 +41222,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3108), - [sym_char_literal] = ACTIONS(3108), + [sym_number_literal] = ACTIONS(3114), + [sym_char_literal] = ACTIONS(3114), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3112), - [sym_false] = ACTIONS(3112), - [sym_null] = ACTIONS(3112), + [sym_true] = ACTIONS(3118), + [sym_false] = ACTIONS(3118), + [sym_null] = ACTIONS(3118), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3112), + [sym_nullptr] = ACTIONS(3118), }, - [889] = { + [890] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -41207,7 +41268,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3114), + [anon_sym_RBRACK] = ACTIONS(3120), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -41230,49 +41291,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [890] = { + [891] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [891] = { + [892] = { [sym_raw_string_literal] = ACTIONS(522), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(524), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(524), @@ -41340,271 +41401,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(524), [sym_nullptr] = ACTIONS(524), }, - [892] = { + [893] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(1511), + [aux_sym_declaration_repeat1] = STATE(1514), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3122), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [893] = { - [aux_sym_declaration_repeat1] = STATE(1511), - [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3116), - [sym_comment] = ACTIONS(49), - }, [894] = { - [sym_argument_list] = STATE(1513), - [sym_initializer_list] = STATE(1513), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(3118), + [aux_sym_declaration_repeat1] = STATE(1514), + [anon_sym_COMMA] = ACTIONS(538), + [anon_sym_SEMI] = ACTIONS(3122), [sym_comment] = ACTIONS(49), }, [895] = { - [sym_argument_list] = STATE(1515), - [sym_initializer_list] = STATE(1515), + [sym_argument_list] = STATE(1516), + [sym_initializer_list] = STATE(1516), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(3120), + [anon_sym_EQ] = ACTIONS(3124), [sym_comment] = ACTIONS(49), }, [896] = { - [sym__expression] = STATE(1516), - [sym_comma_expression] = STATE(1517), - [sym_conditional_expression] = STATE(1516), - [sym_assignment_expression] = STATE(1516), - [sym_pointer_expression] = STATE(1516), - [sym_logical_expression] = STATE(1516), - [sym_bitwise_expression] = STATE(1516), - [sym_equality_expression] = STATE(1516), - [sym_relational_expression] = STATE(1516), - [sym_shift_expression] = STATE(1516), - [sym_math_expression] = STATE(1516), - [sym_cast_expression] = STATE(1516), - [sym_sizeof_expression] = STATE(1516), - [sym_subscript_expression] = STATE(1516), - [sym_call_expression] = STATE(1516), - [sym_field_expression] = STATE(1516), - [sym_compound_literal_expression] = STATE(1516), - [sym_parenthesized_expression] = STATE(1516), - [sym_concatenated_string] = STATE(1516), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1516), - [sym_new_expression] = STATE(1516), - [sym_delete_expression] = STATE(1516), - [sym_lambda_expression] = STATE(1516), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3122), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3122), - [sym_char_literal] = ACTIONS(3122), - [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_identifier] = ACTIONS(1105), + [sym_argument_list] = STATE(1518), + [sym_initializer_list] = STATE(1518), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_EQ] = ACTIONS(3126), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3124), }, [897] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), - }, - [898] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2748), - }, - [899] = { - [sym__expression] = STATE(1518), - [sym_conditional_expression] = STATE(1518), - [sym_assignment_expression] = STATE(1518), - [sym_pointer_expression] = STATE(1518), - [sym_logical_expression] = STATE(1518), - [sym_bitwise_expression] = STATE(1518), - [sym_equality_expression] = STATE(1518), - [sym_relational_expression] = STATE(1518), - [sym_shift_expression] = STATE(1518), - [sym_math_expression] = STATE(1518), - [sym_cast_expression] = STATE(1518), - [sym_sizeof_expression] = STATE(1518), - [sym_subscript_expression] = STATE(1518), - [sym_call_expression] = STATE(1518), - [sym_field_expression] = STATE(1518), - [sym_compound_literal_expression] = STATE(1518), - [sym_parenthesized_expression] = STATE(1518), - [sym_concatenated_string] = STATE(1518), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1518), - [sym_new_expression] = STATE(1518), - [sym_delete_expression] = STATE(1518), - [sym_lambda_expression] = STATE(1518), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3130), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3130), - [sym_char_literal] = ACTIONS(3130), - [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3132), - }, - [900] = { [sym__expression] = STATE(1519), + [sym_comma_expression] = STATE(1520), [sym_conditional_expression] = STATE(1519), [sym_assignment_expression] = STATE(1519), [sym_pointer_expression] = STATE(1519), @@ -41628,63 +41462,131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1519), [sym_lambda_expression] = STATE(1519), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(3134), - [sym_char_literal] = ACTIONS(3134), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(3128), + [sym_char_literal] = ACTIONS(3128), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(3136), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(3130), }, - [901] = { - [sym__expression] = STATE(1520), - [sym_conditional_expression] = STATE(1520), - [sym_assignment_expression] = STATE(1520), - [sym_pointer_expression] = STATE(1520), - [sym_logical_expression] = STATE(1520), - [sym_bitwise_expression] = STATE(1520), - [sym_equality_expression] = STATE(1520), - [sym_relational_expression] = STATE(1520), - [sym_shift_expression] = STATE(1520), - [sym_math_expression] = STATE(1520), - [sym_cast_expression] = STATE(1520), - [sym_sizeof_expression] = STATE(1520), - [sym_subscript_expression] = STATE(1520), - [sym_call_expression] = STATE(1520), - [sym_field_expression] = STATE(1520), - [sym_compound_literal_expression] = STATE(1520), - [sym_parenthesized_expression] = STATE(1520), - [sym_concatenated_string] = STATE(1520), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1520), - [sym_new_expression] = STATE(1520), - [sym_delete_expression] = STATE(1520), - [sym_lambda_expression] = STATE(1520), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3138), + [898] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), + }, + [899] = { + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -41696,20 +41598,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3138), - [sym_char_literal] = ACTIONS(3138), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3140), + [sym_nullptr] = ACTIONS(2750), }, - [902] = { + [900] = { [sym__expression] = STATE(1521), [sym_conditional_expression] = STATE(1521), [sym_assignment_expression] = STATE(1521), @@ -41737,7 +41639,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3142), + [sym_raw_string_literal] = ACTIONS(3136), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -41749,20 +41651,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3142), - [sym_char_literal] = ACTIONS(3142), + [sym_number_literal] = ACTIONS(3136), + [sym_char_literal] = ACTIONS(3136), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3144), + [sym_nullptr] = ACTIONS(3138), }, - [903] = { + [901] = { [sym__expression] = STATE(1522), [sym_conditional_expression] = STATE(1522), [sym_assignment_expression] = STATE(1522), @@ -41787,35 +41689,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1522), [sym_lambda_expression] = STATE(1522), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3146), - [sym_char_literal] = ACTIONS(3146), - [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), + [sym_raw_string_literal] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(3140), + [sym_char_literal] = ACTIONS(3140), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3148), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(3142), }, - [904] = { + [902] = { [sym__expression] = STATE(1523), [sym_conditional_expression] = STATE(1523), [sym_assignment_expression] = STATE(1523), @@ -41843,7 +41745,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3150), + [sym_raw_string_literal] = ACTIONS(3144), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -41855,20 +41757,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3150), - [sym_char_literal] = ACTIONS(3150), + [sym_number_literal] = ACTIONS(3144), + [sym_char_literal] = ACTIONS(3144), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3152), + [sym_nullptr] = ACTIONS(3146), }, - [905] = { + [903] = { [sym__expression] = STATE(1524), [sym_conditional_expression] = STATE(1524), [sym_assignment_expression] = STATE(1524), @@ -41896,7 +41798,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3154), + [sym_raw_string_literal] = ACTIONS(3148), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -41908,20 +41810,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3154), - [sym_char_literal] = ACTIONS(3154), + [sym_number_literal] = ACTIONS(3148), + [sym_char_literal] = ACTIONS(3148), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3156), + [sym_nullptr] = ACTIONS(3150), }, - [906] = { + [904] = { [sym__expression] = STATE(1525), [sym_conditional_expression] = STATE(1525), [sym_assignment_expression] = STATE(1525), @@ -41949,7 +41851,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3158), + [sym_raw_string_literal] = ACTIONS(3152), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -41961,20 +41863,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3158), - [sym_char_literal] = ACTIONS(3158), + [sym_number_literal] = ACTIONS(3152), + [sym_char_literal] = ACTIONS(3152), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3160), + [sym_nullptr] = ACTIONS(3154), }, - [907] = { + [905] = { [sym__expression] = STATE(1526), [sym_conditional_expression] = STATE(1526), [sym_assignment_expression] = STATE(1526), @@ -42002,7 +41904,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3162), + [sym_raw_string_literal] = ACTIONS(3156), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -42014,20 +41916,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3162), - [sym_char_literal] = ACTIONS(3162), + [sym_number_literal] = ACTIONS(3156), + [sym_char_literal] = ACTIONS(3156), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3164), + [sym_nullptr] = ACTIONS(3158), }, - [908] = { + [906] = { [sym__expression] = STATE(1527), [sym_conditional_expression] = STATE(1527), [sym_assignment_expression] = STATE(1527), @@ -42055,7 +41957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3166), + [sym_raw_string_literal] = ACTIONS(3160), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -42067,20 +41969,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3166), - [sym_char_literal] = ACTIONS(3166), + [sym_number_literal] = ACTIONS(3160), + [sym_char_literal] = ACTIONS(3160), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3168), + [sym_nullptr] = ACTIONS(3162), }, - [909] = { + [907] = { [sym__expression] = STATE(1528), [sym_conditional_expression] = STATE(1528), [sym_assignment_expression] = STATE(1528), @@ -42108,7 +42010,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3170), + [sym_raw_string_literal] = ACTIONS(3164), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(3164), + [sym_char_literal] = ACTIONS(3164), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(3166), + }, + [908] = { + [sym__expression] = STATE(1529), + [sym_conditional_expression] = STATE(1529), + [sym_assignment_expression] = STATE(1529), + [sym_pointer_expression] = STATE(1529), + [sym_logical_expression] = STATE(1529), + [sym_bitwise_expression] = STATE(1529), + [sym_equality_expression] = STATE(1529), + [sym_relational_expression] = STATE(1529), + [sym_shift_expression] = STATE(1529), + [sym_math_expression] = STATE(1529), + [sym_cast_expression] = STATE(1529), + [sym_sizeof_expression] = STATE(1529), + [sym_subscript_expression] = STATE(1529), + [sym_call_expression] = STATE(1529), + [sym_field_expression] = STATE(1529), + [sym_compound_literal_expression] = STATE(1529), + [sym_parenthesized_expression] = STATE(1529), + [sym_concatenated_string] = STATE(1529), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1529), + [sym_new_expression] = STATE(1529), + [sym_delete_expression] = STATE(1529), + [sym_lambda_expression] = STATE(1529), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3168), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -42120,81 +42075,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(3170), - [sym_char_literal] = ACTIONS(3170), + [sym_number_literal] = ACTIONS(3168), + [sym_char_literal] = ACTIONS(3168), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(3172), + [sym_nullptr] = ACTIONS(3170), + }, + [909] = { + [sym__expression] = STATE(1530), + [sym_conditional_expression] = STATE(1530), + [sym_assignment_expression] = STATE(1530), + [sym_pointer_expression] = STATE(1530), + [sym_logical_expression] = STATE(1530), + [sym_bitwise_expression] = STATE(1530), + [sym_equality_expression] = STATE(1530), + [sym_relational_expression] = STATE(1530), + [sym_shift_expression] = STATE(1530), + [sym_math_expression] = STATE(1530), + [sym_cast_expression] = STATE(1530), + [sym_sizeof_expression] = STATE(1530), + [sym_subscript_expression] = STATE(1530), + [sym_call_expression] = STATE(1530), + [sym_field_expression] = STATE(1530), + [sym_compound_literal_expression] = STATE(1530), + [sym_parenthesized_expression] = STATE(1530), + [sym_concatenated_string] = STATE(1530), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1530), + [sym_new_expression] = STATE(1530), + [sym_delete_expression] = STATE(1530), + [sym_lambda_expression] = STATE(1530), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(3172), + [sym_char_literal] = ACTIONS(3172), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(3174), }, [910] = { + [sym__expression] = STATE(1531), + [sym_conditional_expression] = STATE(1531), + [sym_assignment_expression] = STATE(1531), + [sym_pointer_expression] = STATE(1531), + [sym_logical_expression] = STATE(1531), + [sym_bitwise_expression] = STATE(1531), + [sym_equality_expression] = STATE(1531), + [sym_relational_expression] = STATE(1531), + [sym_shift_expression] = STATE(1531), + [sym_math_expression] = STATE(1531), + [sym_cast_expression] = STATE(1531), + [sym_sizeof_expression] = STATE(1531), + [sym_subscript_expression] = STATE(1531), + [sym_call_expression] = STATE(1531), + [sym_field_expression] = STATE(1531), + [sym_compound_literal_expression] = STATE(1531), + [sym_parenthesized_expression] = STATE(1531), + [sym_concatenated_string] = STATE(1531), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1531), + [sym_new_expression] = STATE(1531), + [sym_delete_expression] = STATE(1531), + [sym_lambda_expression] = STATE(1531), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(3176), + [sym_char_literal] = ACTIONS(3176), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(3178), + }, + [911] = { [sym_destructor_name] = STATE(428), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3174), + [sym_identifier] = ACTIONS(3180), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(702), }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(3176), - }, [912] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [ts_builtin_sym_end] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [sym_operator_name] = ACTIONS(3182), + }, + [913] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -42202,18 +42263,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -42233,14 +42294,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -42248,103 +42309,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(3180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3183), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3195), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3198), - [sym_preproc_directive] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_typedef] = ACTIONS(3207), - [anon_sym_extern] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_STAR] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_register] = ACTIONS(3210), - [anon_sym_inline] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3236), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3269), - [anon_sym_goto] = ACTIONS(3272), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3287), - [sym_number_literal] = ACTIONS(3180), - [sym_char_literal] = ACTIONS(3180), - [sym_string_literal] = ACTIONS(3290), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3296), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3299), - [sym_auto] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3311), - [sym_nullptr] = ACTIONS(3293), + [sym_raw_string_literal] = ACTIONS(3186), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3189), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3198), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3201), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3204), + [sym_preproc_directive] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_typedef] = ACTIONS(3213), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3233), + [anon_sym_long] = ACTIONS(3233), + [anon_sym_short] = ACTIONS(3233), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3248), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3257), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3278), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_sizeof] = ACTIONS(3293), + [sym_number_literal] = ACTIONS(3186), + [sym_char_literal] = ACTIONS(3186), + [sym_string_literal] = ACTIONS(3296), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_identifier] = ACTIONS(3302), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3305), + [sym_auto] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3317), + [sym_nullptr] = ACTIONS(3299), }, - [913] = { - [sym_destructor_name] = STATE(1531), + [914] = { + [sym_destructor_name] = STATE(1534), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(3314), + [sym_identifier] = ACTIONS(3320), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3316), + [sym_operator_name] = ACTIONS(3322), }, - [914] = { - [anon_sym_COMMA] = ACTIONS(3318), - [anon_sym_LBRACE] = ACTIONS(3318), + [915] = { + [anon_sym_COMMA] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), [sym_comment] = ACTIONS(49), }, - [915] = { - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), + [916] = { + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), [anon_sym_LT] = ACTIONS(512), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(516), }, - [916] = { - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), + [917] = { + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), [sym_comment] = ACTIONS(49), }, - [917] = { - [sym_field_initializer] = STATE(1532), + [918] = { + [sym_field_initializer] = STATE(1535), [sym_template_type] = STATE(423), [sym_scoped_field_identifier] = STATE(424), [sym_scoped_type_identifier] = STATE(47), @@ -42353,270 +42414,270 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(690), }, - [918] = { - [aux_sym_field_initializer_list_repeat1] = STATE(1533), - [anon_sym_COMMA] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(3324), - [sym_comment] = ACTIONS(49), - }, [919] = { - [sym_destructor_name] = STATE(1535), - [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(3326), + [aux_sym_field_initializer_list_repeat1] = STATE(1536), + [anon_sym_COMMA] = ACTIONS(1782), + [anon_sym_LBRACE] = ACTIONS(3330), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3328), }, [920] = { - [anon_sym_COMMA] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), + [sym_destructor_name] = STATE(1538), + [anon_sym_TILDE] = ACTIONS(45), + [sym_identifier] = ACTIONS(3332), [sym_comment] = ACTIONS(49), + [sym_operator_name] = ACTIONS(3334), }, [921] = { - [ts_builtin_sym_end] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_mutable] = ACTIONS(3334), - [anon_sym_explicit] = ACTIONS(3334), - [anon_sym_constexpr] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3334), - [sym_auto] = ACTIONS(3334), - [anon_sym_typename] = ACTIONS(3334), - [anon_sym_template] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_COLON_COLON] = ACTIONS(3332), - [sym_operator_name] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [sym_comment] = ACTIONS(49), }, [922] = { - [ts_builtin_sym_end] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_template] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [sym_operator_name] = ACTIONS(3336), - }, - [923] = { - [anon_sym_DOT_DOT_DOT] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3340), + [sym_preproc_directive] = ACTIONS(3340), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_explicit] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), [sym_identifier] = ACTIONS(3340), [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3340), + [sym_auto] = ACTIONS(3340), + [anon_sym_typename] = ACTIONS(3340), + [anon_sym_template] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [sym_operator_name] = ACTIONS(3338), + }, + [923] = { + [ts_builtin_sym_end] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_template] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [sym_operator_name] = ACTIONS(3342), }, [924] = { - [anon_sym_LF] = ACTIONS(3342), - [sym_preproc_arg] = ACTIONS(3342), - [sym_comment] = ACTIONS(83), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3346), + [sym_comment] = ACTIONS(49), }, [925] = { - [aux_sym_preproc_params_repeat1] = STATE(1538), - [anon_sym_COMMA] = ACTIONS(1815), - [anon_sym_RPAREN] = ACTIONS(3344), - [sym_comment] = ACTIONS(49), + [anon_sym_LF] = ACTIONS(3348), + [sym_preproc_arg] = ACTIONS(3348), + [sym_comment] = ACTIONS(83), }, [926] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_template] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [sym_operator_name] = ACTIONS(3346), + [aux_sym_preproc_params_repeat1] = STATE(1541), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_RPAREN] = ACTIONS(3350), + [sym_comment] = ACTIONS(49), }, [927] = { - [sym_enumerator_list] = STATE(1357), - [anon_sym_LBRACE] = ACTIONS(2823), - [sym_identifier] = ACTIONS(3350), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [sym_operator_name] = ACTIONS(3352), }, [928] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1540), - [sym_base_class_clause] = STATE(1362), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), - [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_enumerator_list] = STATE(1358), + [anon_sym_LBRACE] = ACTIONS(2825), + [sym_identifier] = ACTIONS(3356), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1594), }, [929] = { - [sym_field_declaration_list] = STATE(1365), - [sym__class_name] = STATE(1541), - [sym_base_class_clause] = STATE(1367), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [sym_field_declaration_list] = STATE(1361), + [sym__class_name] = STATE(1543), + [sym_base_class_clause] = STATE(1363), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [930] = { - [sym_field_declaration_list] = STATE(1371), - [sym__class_name] = STATE(1542), - [sym_base_class_clause] = STATE(1373), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [sym_field_declaration_list] = STATE(1366), + [sym__class_name] = STATE(1544), + [sym_base_class_clause] = STATE(1368), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, [931] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [sym_field_declaration_list] = STATE(1372), + [sym__class_name] = STATE(1545), + [sym_base_class_clause] = STATE(1374), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), + [sym_scoped_namespace_identifier] = STATE(827), + [anon_sym_LBRACE] = ACTIONS(2829), + [anon_sym_COLON] = ACTIONS(131), + [sym_identifier] = ACTIONS(2831), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1594), + }, + [932] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(933), - [anon_sym_unsigned] = ACTIONS(1827), - [anon_sym_long] = ACTIONS(1827), - [anon_sym_short] = ACTIONS(1827), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(934), + [anon_sym_unsigned] = ACTIONS(1829), + [anon_sym_long] = ACTIONS(1829), + [anon_sym_short] = ACTIONS(1829), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(1839), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(1841), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [932] = { - [sym__abstract_declarator] = STATE(1545), - [sym_abstract_pointer_declarator] = STATE(1545), - [sym_abstract_function_declarator] = STATE(1545), - [sym_abstract_array_declarator] = STATE(1545), - [sym_parameter_list] = STATE(1546), - [sym_abstract_reference_declarator] = STATE(1545), + [933] = { + [sym__abstract_declarator] = STATE(1548), + [sym_abstract_pointer_declarator] = STATE(1548), + [sym_abstract_function_declarator] = STATE(1548), + [sym_abstract_array_declarator] = STATE(1548), + [sym_parameter_list] = STATE(1549), + [sym_abstract_reference_declarator] = STATE(1548), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(3358), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [933] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1547), + [934] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1550), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_RPAREN] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), @@ -42628,40 +42689,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(3358), - [anon_sym_long] = ACTIONS(3358), - [anon_sym_short] = ACTIONS(3358), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(3364), + [anon_sym_long] = ACTIONS(3364), + [anon_sym_short] = ACTIONS(3364), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [934] = { - [sym_type_qualifier] = STATE(934), - [sym_trailing_return_type] = STATE(934), - [aux_sym_function_declarator_repeat1] = STATE(934), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(3360), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3363), - }, [935] = { - [sym_preproc_arg] = ACTIONS(3366), - [sym_comment] = ACTIONS(83), + [sym_type_qualifier] = STATE(935), + [sym_trailing_return_type] = STATE(935), + [aux_sym_function_declarator_repeat1] = STATE(935), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(3366), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3369), }, [936] = { + [sym_preproc_arg] = ACTIONS(3372), + [sym_comment] = ACTIONS(83), + }, + [937] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(827), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(827), [anon_sym_LPAREN] = ACTIONS(825), @@ -42706,12 +42767,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(825), [sym_operator_name] = ACTIONS(825), }, - [937] = { - [anon_sym_LF] = ACTIONS(3368), - [sym_preproc_arg] = ACTIONS(3370), + [938] = { + [anon_sym_LF] = ACTIONS(3374), + [sym_preproc_arg] = ACTIONS(3376), [sym_comment] = ACTIONS(83), }, - [938] = { + [939] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(859), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(857), @@ -42756,19 +42817,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(857), [sym_operator_name] = ACTIONS(857), }, - [939] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3372), + [940] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3378), [sym_comment] = ACTIONS(49), }, - [940] = { + [941] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(1552), - [sym_preproc_elif] = STATE(1552), + [sym_preproc_else] = STATE(1555), + [sym_preproc_elif] = STATE(1555), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -42810,7 +42871,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3374), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3380), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -42850,7 +42911,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [941] = { + [942] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(921), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(919), @@ -42895,19 +42956,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(919), [sym_operator_name] = ACTIONS(919), }, - [942] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3376), + [943] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), [sym_comment] = ACTIONS(49), }, - [943] = { + [944] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(1554), - [sym_preproc_elif] = STATE(1554), + [sym_preproc_else] = STATE(1557), + [sym_preproc_elif] = STATE(1557), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -42949,7 +43010,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3378), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3384), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -42989,7 +43050,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [944] = { + [945] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(929), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(927), @@ -43034,19 +43095,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(927), [sym_operator_name] = ACTIONS(927), }, - [945] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3380), + [946] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3386), [sym_comment] = ACTIONS(49), }, - [946] = { + [947] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(1556), - [sym_preproc_elif] = STATE(1556), + [sym_preproc_else] = STATE(1559), + [sym_preproc_elif] = STATE(1559), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -43088,7 +43149,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3388), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -43128,7 +43189,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [947] = { + [948] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(251), [anon_sym_LPAREN] = ACTIONS(249), @@ -43171,27 +43232,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(249), [sym_operator_name] = ACTIONS(249), }, - [948] = { - [sym_preproc_params] = STATE(1559), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(3384), - [anon_sym_LF] = ACTIONS(3386), + [949] = { + [sym_preproc_params] = STATE(1562), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(3390), + [anon_sym_LF] = ACTIONS(3392), [anon_sym_LPAREN] = ACTIONS(257), [sym_comment] = ACTIONS(83), }, - [949] = { - [sym_preproc_include] = STATE(1562), - [sym_preproc_def] = STATE(1562), - [sym_preproc_function_def] = STATE(1562), - [sym_preproc_call] = STATE(1562), - [sym_preproc_if] = STATE(1562), - [sym_preproc_ifdef] = STATE(1562), - [sym_preproc_else] = STATE(1561), - [sym_preproc_elif] = STATE(1561), - [sym_function_definition] = STATE(1562), - [sym_declaration] = STATE(1562), - [sym_type_definition] = STATE(1562), + [950] = { + [sym_preproc_include] = STATE(1565), + [sym_preproc_def] = STATE(1565), + [sym_preproc_function_def] = STATE(1565), + [sym_preproc_call] = STATE(1565), + [sym_preproc_if] = STATE(1565), + [sym_preproc_ifdef] = STATE(1565), + [sym_preproc_else] = STATE(1564), + [sym_preproc_elif] = STATE(1564), + [sym_function_definition] = STATE(1565), + [sym_declaration] = STATE(1565), + [sym_type_definition] = STATE(1565), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(1562), + [sym_linkage_specification] = STATE(1565), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -43203,32 +43264,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(1562), + [sym__empty_declaration] = STATE(1565), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1562), - [sym_template_declaration] = STATE(1562), - [sym_template_instantiation] = STATE(1562), + [sym_structured_binding_declaration] = STATE(1565), + [sym_template_declaration] = STATE(1565), + [sym_template_instantiation] = STATE(1565), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(1562), - [sym_using_declaration] = STATE(1562), - [sym_alias_declaration] = STATE(1562), + [sym_namespace_definition] = STATE(1565), + [sym_using_declaration] = STATE(1565), + [sym_alias_declaration] = STATE(1565), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1562), + [aux_sym_translation_unit_repeat1] = STATE(1565), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3388), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3394), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -43268,20 +43329,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [950] = { - [sym_preproc_include] = STATE(1565), - [sym_preproc_def] = STATE(1565), - [sym_preproc_function_def] = STATE(1565), - [sym_preproc_call] = STATE(1565), - [sym_preproc_if] = STATE(1565), - [sym_preproc_ifdef] = STATE(1565), - [sym_preproc_else] = STATE(1564), - [sym_preproc_elif] = STATE(1564), - [sym_function_definition] = STATE(1565), - [sym_declaration] = STATE(1565), - [sym_type_definition] = STATE(1565), + [951] = { + [sym_preproc_include] = STATE(1568), + [sym_preproc_def] = STATE(1568), + [sym_preproc_function_def] = STATE(1568), + [sym_preproc_call] = STATE(1568), + [sym_preproc_if] = STATE(1568), + [sym_preproc_ifdef] = STATE(1568), + [sym_preproc_else] = STATE(1567), + [sym_preproc_elif] = STATE(1567), + [sym_function_definition] = STATE(1568), + [sym_declaration] = STATE(1568), + [sym_type_definition] = STATE(1568), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(1565), + [sym_linkage_specification] = STATE(1568), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -43293,32 +43354,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(1565), + [sym__empty_declaration] = STATE(1568), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1565), - [sym_template_declaration] = STATE(1565), - [sym_template_instantiation] = STATE(1565), + [sym_structured_binding_declaration] = STATE(1568), + [sym_template_declaration] = STATE(1568), + [sym_template_instantiation] = STATE(1568), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(1565), - [sym_using_declaration] = STATE(1565), - [sym_alias_declaration] = STATE(1565), + [sym_namespace_definition] = STATE(1568), + [sym_using_declaration] = STATE(1568), + [sym_alias_declaration] = STATE(1568), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1565), + [aux_sym_translation_unit_repeat1] = STATE(1568), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3390), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3396), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -43358,20 +43419,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [951] = { - [sym_preproc_include] = STATE(1568), - [sym_preproc_def] = STATE(1568), - [sym_preproc_function_def] = STATE(1568), - [sym_preproc_call] = STATE(1568), - [sym_preproc_if] = STATE(1568), - [sym_preproc_ifdef] = STATE(1568), - [sym_preproc_else] = STATE(1567), - [sym_preproc_elif] = STATE(1567), - [sym_function_definition] = STATE(1568), - [sym_declaration] = STATE(1568), - [sym_type_definition] = STATE(1568), + [952] = { + [sym_preproc_include] = STATE(1571), + [sym_preproc_def] = STATE(1571), + [sym_preproc_function_def] = STATE(1571), + [sym_preproc_call] = STATE(1571), + [sym_preproc_if] = STATE(1571), + [sym_preproc_ifdef] = STATE(1571), + [sym_preproc_else] = STATE(1570), + [sym_preproc_elif] = STATE(1570), + [sym_function_definition] = STATE(1571), + [sym_declaration] = STATE(1571), + [sym_type_definition] = STATE(1571), [sym__declaration_specifiers] = STATE(176), - [sym_linkage_specification] = STATE(1568), + [sym_linkage_specification] = STATE(1571), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(177), @@ -43383,32 +43444,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(1568), + [sym__empty_declaration] = STATE(1571), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1568), - [sym_template_declaration] = STATE(1568), - [sym_template_instantiation] = STATE(1568), + [sym_structured_binding_declaration] = STATE(1571), + [sym_template_declaration] = STATE(1571), + [sym_template_instantiation] = STATE(1571), [sym_constructor_or_destructor_definition] = STATE(178), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(1568), - [sym_using_declaration] = STATE(1568), - [sym_alias_declaration] = STATE(1568), + [sym_namespace_definition] = STATE(1571), + [sym_using_declaration] = STATE(1571), + [sym_alias_declaration] = STATE(1571), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1568), + [aux_sym_translation_unit_repeat1] = STATE(1571), [aux_sym__declaration_specifiers_repeat1] = STATE(180), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(273), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3392), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3398), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -43448,11 +43509,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [952] = { - [sym_preproc_arg] = ACTIONS(3394), + [953] = { + [sym_preproc_arg] = ACTIONS(3400), [sym_comment] = ACTIONS(83), }, - [953] = { + [954] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(309), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(309), [anon_sym_LPAREN] = ACTIONS(307), @@ -43495,8 +43556,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(307), [sym_operator_name] = ACTIONS(307), }, - [954] = { - [sym__type_declarator] = STATE(1570), + [955] = { + [sym__type_declarator] = STATE(1573), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -43505,16 +43566,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [955] = { + [956] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(1571), - [sym_sized_type_specifier] = STATE(1571), - [sym_enum_specifier] = STATE(1571), - [sym_struct_specifier] = STATE(1571), - [sym_union_specifier] = STATE(1571), - [sym_macro_type_specifier] = STATE(1571), - [sym_class_specifier] = STATE(1571), - [sym_dependent_type] = STATE(1571), + [sym__type_specifier] = STATE(1574), + [sym_sized_type_specifier] = STATE(1574), + [sym_enum_specifier] = STATE(1574), + [sym_struct_specifier] = STATE(1574), + [sym_union_specifier] = STATE(1574), + [sym_macro_type_specifier] = STATE(1574), + [sym_class_specifier] = STATE(1574), + [sym_dependent_type] = STATE(1574), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -43530,22 +43591,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(3396), + [sym_primitive_type] = ACTIONS(3402), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(3396), + [sym_auto] = ACTIONS(3402), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [956] = { - [sym_function_definition] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym__declaration_specifiers] = STATE(1573), - [sym_declaration_list] = STATE(1572), + [957] = { + [sym_function_definition] = STATE(1575), + [sym_declaration] = STATE(1575), + [sym__declaration_specifiers] = STATE(1576), + [sym_declaration_list] = STATE(1575), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -43562,7 +43623,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1875), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), [anon_sym_inline] = ACTIONS(154), @@ -43587,15 +43648,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(172), [anon_sym_COLON_COLON] = ACTIONS(135), }, - [957] = { - [sym__declarator] = STATE(1574), - [sym_pointer_declarator] = STATE(1574), - [sym_function_declarator] = STATE(1574), - [sym_array_declarator] = STATE(1574), - [sym_reference_declarator] = STATE(1574), + [958] = { + [sym__declarator] = STATE(1577), + [sym_pointer_declarator] = STATE(1577), + [sym_function_declarator] = STATE(1577), + [sym_array_declarator] = STATE(1577), + [sym_reference_declarator] = STATE(1577), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1574), - [sym_destructor_name] = STATE(1574), + [sym_template_function] = STATE(1577), + [sym_destructor_name] = STATE(1577), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -43607,19 +43668,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(3398), + [sym_operator_name] = ACTIONS(3404), }, - [958] = { + [959] = { [sym_parameter_list] = STATE(299), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_SEMI] = ACTIONS(3406), [anon_sym_LBRACK] = ACTIONS(208), [sym_comment] = ACTIONS(49), }, - [959] = { - [sym_function_definition] = STATE(1576), - [sym_declaration] = STATE(1576), - [sym__declaration_specifiers] = STATE(1577), + [960] = { + [sym_function_definition] = STATE(1579), + [sym_declaration] = STATE(1579), + [sym__declaration_specifiers] = STATE(1580), [sym_storage_class_specifier] = STATE(305), [sym_type_qualifier] = STATE(305), [sym__type_specifier] = STATE(304), @@ -43627,7 +43688,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(304), [sym_struct_specifier] = STATE(304), [sym_union_specifier] = STATE(304), - [sym__empty_declaration] = STATE(1576), + [sym__empty_declaration] = STATE(1579), [sym_macro_type_specifier] = STATE(304), [sym_class_specifier] = STATE(304), [sym_dependent_type] = STATE(304), @@ -43661,18 +43722,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(483), [anon_sym_COLON_COLON] = ACTIONS(135), }, - [960] = { - [sym_preproc_include] = STATE(1579), - [sym_preproc_def] = STATE(1579), - [sym_preproc_function_def] = STATE(1579), - [sym_preproc_call] = STATE(1579), - [sym_preproc_if] = STATE(1579), - [sym_preproc_ifdef] = STATE(1579), - [sym_function_definition] = STATE(1579), - [sym_declaration] = STATE(1579), - [sym_type_definition] = STATE(1579), + [961] = { + [sym_preproc_include] = STATE(1582), + [sym_preproc_def] = STATE(1582), + [sym_preproc_function_def] = STATE(1582), + [sym_preproc_call] = STATE(1582), + [sym_preproc_if] = STATE(1582), + [sym_preproc_ifdef] = STATE(1582), + [sym_function_definition] = STATE(1582), + [sym_declaration] = STATE(1582), + [sym_type_definition] = STATE(1582), [sym__declaration_specifiers] = STATE(27), - [sym_linkage_specification] = STATE(1579), + [sym_linkage_specification] = STATE(1582), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(29), @@ -43684,25 +43745,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(1579), + [sym__empty_declaration] = STATE(1582), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1579), - [sym_template_declaration] = STATE(1579), - [sym_template_instantiation] = STATE(1579), + [sym_structured_binding_declaration] = STATE(1582), + [sym_template_declaration] = STATE(1582), + [sym_template_instantiation] = STATE(1582), [sym_constructor_or_destructor_definition] = STATE(31), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(1579), - [sym_using_declaration] = STATE(1579), - [sym_alias_declaration] = STATE(1579), + [sym_namespace_definition] = STATE(1582), + [sym_using_declaration] = STATE(1582), + [sym_alias_declaration] = STATE(1582), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(1579), + [aux_sym_translation_unit_repeat1] = STATE(1582), [aux_sym__declaration_specifiers_repeat1] = STATE(37), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7), @@ -43714,7 +43775,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3408), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -43747,12 +43808,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [961] = { - [sym_declaration_list] = STATE(1580), - [anon_sym_LBRACE] = ACTIONS(1873), + [962] = { + [sym_declaration_list] = STATE(1583), + [anon_sym_LBRACE] = ACTIONS(1875), [sym_comment] = ACTIONS(49), }, - [962] = { + [963] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(495), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(495), [anon_sym_LPAREN] = ACTIONS(493), @@ -43795,28 +43856,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(493), [sym_operator_name] = ACTIONS(493), }, - [963] = { + [964] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(3404), - [anon_sym_EQ] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_EQ] = ACTIONS(3412), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, - [964] = { + [965] = { [sym_template_type] = STATE(117), - [sym_scoped_identifier] = STATE(1584), + [sym_scoped_identifier] = STATE(1587), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(117), - [sym_identifier] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3414), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(186), }, - [965] = { - [anon_sym_SEMI] = ACTIONS(3404), + [966] = { + [anon_sym_SEMI] = ACTIONS(3410), [sym_comment] = ACTIONS(49), }, - [966] = { + [967] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(524), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(524), [anon_sym_LPAREN] = ACTIONS(522), @@ -43859,53 +43920,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(522), [sym_operator_name] = ACTIONS(522), }, - [967] = { - [sym_compound_statement] = STATE(1587), + [968] = { + [sym_compound_statement] = STATE(1590), [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(1588), + [aux_sym_declaration_repeat1] = STATE(1591), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3418), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [968] = { - [aux_sym_declaration_repeat1] = STATE(1588), + [969] = { + [aux_sym_declaration_repeat1] = STATE(1591), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3416), [sym_comment] = ACTIONS(49), }, - [969] = { - [sym_argument_list] = STATE(1590), - [sym_initializer_list] = STATE(1590), + [970] = { + [sym_argument_list] = STATE(1593), + [sym_initializer_list] = STATE(1593), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(3414), + [anon_sym_EQ] = ACTIONS(3420), [sym_comment] = ACTIONS(49), }, - [970] = { - [sym_argument_list] = STATE(1592), - [sym_initializer_list] = STATE(1592), + [971] = { + [sym_argument_list] = STATE(1595), + [sym_initializer_list] = STATE(1595), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3422), [sym_comment] = ACTIONS(49), }, - [971] = { - [sym_preproc_include] = STATE(1594), - [sym_preproc_def] = STATE(1594), - [sym_preproc_function_def] = STATE(1594), - [sym_preproc_call] = STATE(1594), + [972] = { + [sym_preproc_include] = STATE(1597), + [sym_preproc_def] = STATE(1597), + [sym_preproc_function_def] = STATE(1597), + [sym_preproc_call] = STATE(1597), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1594), - [sym_type_definition] = STATE(1594), + [sym_declaration] = STATE(1597), + [sym_type_definition] = STATE(1597), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1594), + [sym_compound_statement] = STATE(1597), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -43913,18 +43974,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1594), - [sym_expression_statement] = STATE(1594), - [sym_if_statement] = STATE(1594), - [sym_switch_statement] = STATE(1594), - [sym_case_statement] = STATE(1594), - [sym_while_statement] = STATE(1594), - [sym_do_statement] = STATE(1594), - [sym_for_statement] = STATE(1594), - [sym_return_statement] = STATE(1594), - [sym_break_statement] = STATE(1594), - [sym_continue_statement] = STATE(1594), - [sym_goto_statement] = STATE(1594), + [sym_labeled_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_if_statement] = STATE(1597), + [sym_switch_statement] = STATE(1597), + [sym_case_statement] = STATE(1597), + [sym_while_statement] = STATE(1597), + [sym_do_statement] = STATE(1597), + [sym_for_statement] = STATE(1597), + [sym_return_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_goto_statement] = STATE(1597), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -43944,14 +44005,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(1594), + [sym__empty_declaration] = STATE(1597), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1594), + [sym_structured_binding_declaration] = STATE(1597), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1594), + [sym_for_range_loop] = STATE(1597), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -43959,7 +44020,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1594), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1597), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -43974,7 +44035,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3424), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -44029,7 +44090,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [972] = { + [973] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(694), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(694), [anon_sym_LPAREN] = ACTIONS(692), @@ -44072,23 +44133,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(692), [sym_operator_name] = ACTIONS(692), }, - [973] = { - [sym_compound_statement] = STATE(1595), - [anon_sym_LBRACE] = ACTIONS(1885), + [974] = { + [sym_compound_statement] = STATE(1598), + [anon_sym_LBRACE] = ACTIONS(1887), [sym_comment] = ACTIONS(49), }, - [974] = { - [sym_preproc_include] = STATE(974), - [sym_preproc_def] = STATE(974), - [sym_preproc_function_def] = STATE(974), - [sym_preproc_call] = STATE(974), - [sym_preproc_if] = STATE(974), - [sym_preproc_ifdef] = STATE(974), - [sym_function_definition] = STATE(974), - [sym_declaration] = STATE(974), - [sym_type_definition] = STATE(974), + [975] = { + [sym_preproc_include] = STATE(975), + [sym_preproc_def] = STATE(975), + [sym_preproc_function_def] = STATE(975), + [sym_preproc_call] = STATE(975), + [sym_preproc_if] = STATE(975), + [sym_preproc_ifdef] = STATE(975), + [sym_function_definition] = STATE(975), + [sym_declaration] = STATE(975), + [sym_type_definition] = STATE(975), [sym__declaration_specifiers] = STATE(456), - [sym_linkage_specification] = STATE(974), + [sym_linkage_specification] = STATE(975), [sym__declarator] = STATE(28), [sym_pointer_declarator] = STATE(28), [sym_function_declarator] = STATE(457), @@ -44100,37 +44161,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym__empty_declaration] = STATE(974), + [sym__empty_declaration] = STATE(975), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(974), - [sym_template_declaration] = STATE(974), - [sym_template_instantiation] = STATE(974), + [sym_structured_binding_declaration] = STATE(975), + [sym_template_declaration] = STATE(975), + [sym_template_instantiation] = STATE(975), [sym_constructor_or_destructor_definition] = STATE(458), [sym_reference_declarator] = STATE(28), [sym_template_type] = STATE(32), [sym_template_function] = STATE(28), - [sym_namespace_definition] = STATE(974), - [sym_using_declaration] = STATE(974), - [sym_alias_declaration] = STATE(974), + [sym_namespace_definition] = STATE(975), + [sym_using_declaration] = STATE(975), + [sym_alias_declaration] = STATE(975), [sym_destructor_name] = STATE(28), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(35), - [aux_sym_translation_unit_repeat1] = STATE(974), + [aux_sym_translation_unit_repeat1] = STATE(975), [aux_sym__declaration_specifiers_repeat1] = STATE(460), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3420), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3423), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3426), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3429), [anon_sym_LPAREN] = ACTIONS(720), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3426), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1932), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3429), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3432), - [sym_preproc_directive] = ACTIONS(3435), - [anon_sym_typedef] = ACTIONS(3438), - [anon_sym_extern] = ACTIONS(3441), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3432), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1934), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3435), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3438), + [sym_preproc_directive] = ACTIONS(3441), + [anon_sym_typedef] = ACTIONS(3444), + [anon_sym_extern] = ACTIONS(3447), [anon_sym_STAR] = ACTIONS(741), [anon_sym_static] = ACTIONS(744), [anon_sym_register] = ACTIONS(744), @@ -44157,34 +44218,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(777), [sym_auto] = ACTIONS(753), [anon_sym_typename] = ACTIONS(780), - [anon_sym_template] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3450), + [anon_sym_template] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_using] = ACTIONS(3456), [anon_sym_COLON_COLON] = ACTIONS(792), [sym_operator_name] = ACTIONS(795), }, - [975] = { - [sym_compound_statement] = STATE(1595), - [sym_field_initializer_list] = STATE(1596), + [976] = { + [sym_compound_statement] = STATE(1598), + [sym_field_initializer_list] = STATE(1599), [anon_sym_LPAREN] = ACTIONS(210), - [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_COLON] = ACTIONS(214), [sym_comment] = ACTIONS(49), }, - [976] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3453), + [977] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3459), [sym_comment] = ACTIONS(49), }, - [977] = { + [978] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(1597), - [sym_preproc_elif] = STATE(1597), + [sym_preproc_else] = STATE(1600), + [sym_preproc_elif] = STATE(1600), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -44226,7 +44287,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3455), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3461), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -44266,19 +44327,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [978] = { - [anon_sym_LF] = ACTIONS(3457), + [979] = { + [anon_sym_LF] = ACTIONS(3463), [sym_comment] = ACTIONS(83), }, - [979] = { + [980] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3465), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [980] = { - [sym__type_declarator] = STATE(1600), + [981] = { + [sym__type_declarator] = STATE(1603), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -44287,7 +44348,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [981] = { + [982] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(977), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(977), [anon_sym_LPAREN] = ACTIONS(975), @@ -44332,7 +44393,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(975), [sym_operator_name] = ACTIONS(975), }, - [982] = { + [983] = { [sym__declarator] = STATE(478), [sym_pointer_declarator] = STATE(478), [sym_function_declarator] = STATE(478), @@ -44355,14 +44416,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(77), [sym_operator_name] = ACTIONS(913), }, - [983] = { + [984] = { [sym_parameter_list] = STATE(299), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3461), + [anon_sym_SEMI] = ACTIONS(3467), [anon_sym_LBRACK] = ACTIONS(208), [sym_comment] = ACTIONS(49), }, - [984] = { + [985] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1192), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1192), [anon_sym_LPAREN] = ACTIONS(1190), @@ -44407,7 +44468,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1190), [sym_operator_name] = ACTIONS(1190), }, - [985] = { + [986] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1200), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1200), [anon_sym_LPAREN] = ACTIONS(1198), @@ -44452,7 +44513,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1198), [sym_operator_name] = ACTIONS(1198), }, - [986] = { + [987] = { [sym__declarator] = STATE(478), [sym_pointer_declarator] = STATE(478), [sym_function_declarator] = STATE(478), @@ -44476,7 +44537,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(77), [sym_operator_name] = ACTIONS(913), }, - [987] = { + [988] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1219), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1219), [anon_sym_LPAREN] = ACTIONS(1217), @@ -44521,7 +44582,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1217), [sym_operator_name] = ACTIONS(1217), }, - [988] = { + [989] = { [sym_preproc_include] = STATE(634), [sym_preproc_def] = STATE(634), [sym_preproc_function_def] = STATE(634), @@ -44574,7 +44635,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(3463), + [anon_sym_RBRACE] = ACTIONS(3469), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -44607,7 +44668,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [989] = { + [990] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1225), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1225), [anon_sym_LPAREN] = ACTIONS(1223), @@ -44652,7 +44713,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1223), [sym_operator_name] = ACTIONS(1223), }, - [990] = { + [991] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1229), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1227), @@ -44697,14 +44758,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1227), [sym_operator_name] = ACTIONS(1227), }, - [991] = { + [992] = { [sym_type_qualifier] = STATE(638), [sym__type_specifier] = STATE(636), [sym_sized_type_specifier] = STATE(636), [sym_enum_specifier] = STATE(636), [sym_struct_specifier] = STATE(636), [sym_union_specifier] = STATE(636), - [sym_type_descriptor] = STATE(1603), + [sym_type_descriptor] = STATE(1606), [sym_macro_type_specifier] = STATE(636), [sym_class_specifier] = STATE(636), [sym_dependent_type] = STATE(636), @@ -44734,18 +44795,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(1235), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [992] = { + [993] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(3465), + [anon_sym_SEMI] = ACTIONS(3471), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, - [993] = { - [anon_sym_SEMI] = ACTIONS(3465), + [994] = { + [anon_sym_SEMI] = ACTIONS(3471), [sym_comment] = ACTIONS(49), }, - [994] = { + [995] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), [anon_sym_LPAREN] = ACTIONS(1261), @@ -44790,17 +44851,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1261), [sym_operator_name] = ACTIONS(1261), }, - [995] = { - [sym_preproc_include] = STATE(1003), - [sym_preproc_def] = STATE(1003), - [sym_preproc_function_def] = STATE(1003), - [sym_preproc_call] = STATE(1003), + [996] = { + [sym_preproc_include] = STATE(1004), + [sym_preproc_def] = STATE(1004), + [sym_preproc_function_def] = STATE(1004), + [sym_preproc_call] = STATE(1004), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1003), - [sym_type_definition] = STATE(1003), + [sym_declaration] = STATE(1004), + [sym_type_definition] = STATE(1004), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1003), + [sym_compound_statement] = STATE(1004), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -44808,18 +44869,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1003), - [sym_expression_statement] = STATE(1003), - [sym_if_statement] = STATE(1003), - [sym_switch_statement] = STATE(1003), - [sym_case_statement] = STATE(1003), - [sym_while_statement] = STATE(1003), - [sym_do_statement] = STATE(1003), - [sym_for_statement] = STATE(1003), - [sym_return_statement] = STATE(1003), - [sym_break_statement] = STATE(1003), - [sym_continue_statement] = STATE(1003), - [sym_goto_statement] = STATE(1003), + [sym_labeled_statement] = STATE(1004), + [sym_expression_statement] = STATE(1004), + [sym_if_statement] = STATE(1004), + [sym_switch_statement] = STATE(1004), + [sym_case_statement] = STATE(1004), + [sym_while_statement] = STATE(1004), + [sym_do_statement] = STATE(1004), + [sym_for_statement] = STATE(1004), + [sym_return_statement] = STATE(1004), + [sym_break_statement] = STATE(1004), + [sym_continue_statement] = STATE(1004), + [sym_goto_statement] = STATE(1004), [sym__expression] = STATE(669), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(669), @@ -44843,14 +44904,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), [sym_concatenated_string] = STATE(669), - [sym__empty_declaration] = STATE(1003), + [sym__empty_declaration] = STATE(1004), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1003), + [sym_structured_binding_declaration] = STATE(1004), [sym_template_type] = STATE(415), [sym_template_function] = STATE(669), - [sym_for_range_loop] = STATE(1003), + [sym_for_range_loop] = STATE(1004), [sym_new_expression] = STATE(669), [sym_delete_expression] = STATE(669), [sym_lambda_expression] = STATE(669), @@ -44858,7 +44919,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1003), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1004), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_initializer_pair_repeat1] = STATE(671), @@ -44875,7 +44936,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(3467), + [anon_sym_RBRACE] = ACTIONS(3473), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_static] = ACTIONS(154), @@ -44931,7 +44992,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1293), }, - [996] = { + [997] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1307), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1307), [anon_sym_LPAREN] = ACTIONS(1305), @@ -44976,72 +45037,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1305), [sym_operator_name] = ACTIONS(1305), }, - [997] = { + [998] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3469), - [sym_comment] = ACTIONS(49), - }, - [998] = { - [sym__expression] = STATE(1607), - [sym_conditional_expression] = STATE(1607), - [sym_assignment_expression] = STATE(1607), - [sym_pointer_expression] = STATE(1607), - [sym_logical_expression] = STATE(1607), - [sym_bitwise_expression] = STATE(1607), - [sym_equality_expression] = STATE(1607), - [sym_relational_expression] = STATE(1607), - [sym_shift_expression] = STATE(1607), - [sym_math_expression] = STATE(1607), - [sym_cast_expression] = STATE(1607), - [sym_sizeof_expression] = STATE(1607), - [sym_subscript_expression] = STATE(1607), - [sym_call_expression] = STATE(1607), - [sym_field_expression] = STATE(1607), - [sym_compound_literal_expression] = STATE(1607), - [sym_parenthesized_expression] = STATE(1607), - [sym_initializer_list] = STATE(1608), - [sym_concatenated_string] = STATE(1607), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1607), - [sym_new_expression] = STATE(1607), - [sym_delete_expression] = STATE(1607), - [sym_lambda_expression] = STATE(1607), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3471), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(3471), - [sym_char_literal] = ACTIONS(3471), - [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(3473), - [sym_false] = ACTIONS(3473), - [sym_null] = ACTIONS(3473), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(3473), - }, - [999] = { [anon_sym_SEMI] = ACTIONS(3475), [sym_comment] = ACTIONS(49), }, - [1000] = { + [999] = { [sym__expression] = STATE(1610), [sym_conditional_expression] = STATE(1610), [sym_assignment_expression] = STATE(1610), @@ -45096,11 +45098,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1367), [sym_nullptr] = ACTIONS(3479), }, - [1001] = { + [1000] = { [anon_sym_SEMI] = ACTIONS(3481), [sym_comment] = ACTIONS(49), }, + [1001] = { + [sym__expression] = STATE(1613), + [sym_conditional_expression] = STATE(1613), + [sym_assignment_expression] = STATE(1613), + [sym_pointer_expression] = STATE(1613), + [sym_logical_expression] = STATE(1613), + [sym_bitwise_expression] = STATE(1613), + [sym_equality_expression] = STATE(1613), + [sym_relational_expression] = STATE(1613), + [sym_shift_expression] = STATE(1613), + [sym_math_expression] = STATE(1613), + [sym_cast_expression] = STATE(1613), + [sym_sizeof_expression] = STATE(1613), + [sym_subscript_expression] = STATE(1613), + [sym_call_expression] = STATE(1613), + [sym_field_expression] = STATE(1613), + [sym_compound_literal_expression] = STATE(1613), + [sym_parenthesized_expression] = STATE(1613), + [sym_initializer_list] = STATE(1614), + [sym_concatenated_string] = STATE(1613), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1613), + [sym_new_expression] = STATE(1613), + [sym_delete_expression] = STATE(1613), + [sym_lambda_expression] = STATE(1613), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3483), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_LBRACE] = ACTIONS(548), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(3483), + [sym_char_literal] = ACTIONS(3483), + [sym_string_literal] = ACTIONS(1361), + [sym_true] = ACTIONS(3485), + [sym_false] = ACTIONS(3485), + [sym_null] = ACTIONS(3485), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_delete] = ACTIONS(1367), + [sym_nullptr] = ACTIONS(3485), + }, [1002] = { + [anon_sym_SEMI] = ACTIONS(3487), + [sym_comment] = ACTIONS(49), + }, + [1003] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), @@ -45145,17 +45206,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [1003] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [1004] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -45163,18 +45224,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -45194,14 +45255,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -45209,7 +45270,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -45224,7 +45285,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(3483), + [anon_sym_RBRACE] = ACTIONS(3489), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -45279,292 +45340,292 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1004] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1788), - [sym_preproc_directive] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_restrict] = ACTIONS(1788), - [anon_sym_volatile] = ACTIONS(1788), - [anon_sym__Atomic] = ACTIONS(1788), - [anon_sym_mutable] = ACTIONS(1788), - [anon_sym_explicit] = ACTIONS(1788), - [anon_sym_constexpr] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1788), - [sym_auto] = ACTIONS(1788), - [anon_sym_typename] = ACTIONS(1788), - [anon_sym_template] = ACTIONS(1788), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [sym_operator_name] = ACTIONS(1786), - }, [1005] = { - [ts_builtin_sym_end] = ACTIONS(3485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_RBRACE] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_explicit] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3487), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3487), - [sym_auto] = ACTIONS(3487), - [anon_sym_typename] = ACTIONS(3487), - [anon_sym_template] = ACTIONS(3487), - [anon_sym_namespace] = ACTIONS(3487), - [anon_sym_using] = ACTIONS(3487), - [anon_sym_COLON_COLON] = ACTIONS(3485), - [sym_operator_name] = ACTIONS(3485), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1790), + [sym_preproc_directive] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_restrict] = ACTIONS(1790), + [anon_sym_volatile] = ACTIONS(1790), + [anon_sym__Atomic] = ACTIONS(1790), + [anon_sym_mutable] = ACTIONS(1790), + [anon_sym_explicit] = ACTIONS(1790), + [anon_sym_constexpr] = ACTIONS(1790), + [anon_sym_unsigned] = ACTIONS(1790), + [anon_sym_long] = ACTIONS(1790), + [anon_sym_short] = ACTIONS(1790), + [sym_primitive_type] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1790), + [sym_auto] = ACTIONS(1790), + [anon_sym_typename] = ACTIONS(1790), + [anon_sym_template] = ACTIONS(1790), + [anon_sym_namespace] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [sym_operator_name] = ACTIONS(1788), }, [1006] = { - [sym_compound_statement] = STATE(1614), - [anon_sym_LBRACE] = ACTIONS(915), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(3491), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3491), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_typedef] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym_RBRACE] = ACTIONS(3491), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3493), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3493), + [sym_auto] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [sym_operator_name] = ACTIONS(3491), }, [1007] = { - [ts_builtin_sym_end] = ACTIONS(3489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym_RBRACE] = ACTIONS(3489), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3491), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3491), - [sym_auto] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3489), - [sym_operator_name] = ACTIONS(3489), + [sym_compound_statement] = STATE(1617), + [anon_sym_LBRACE] = ACTIONS(915), + [sym_comment] = ACTIONS(49), }, [1008] = { - [ts_builtin_sym_end] = ACTIONS(3493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym_RBRACE] = ACTIONS(3493), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3495), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3495), - [sym_auto] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [sym_operator_name] = ACTIONS(3493), + [ts_builtin_sym_end] = ACTIONS(3495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_typedef] = ACTIONS(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym_RBRACE] = ACTIONS(3495), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3497), + [sym_auto] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [sym_operator_name] = ACTIONS(3495), }, [1009] = { - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2008), - [sym_identifier] = ACTIONS(2008), - [sym_comment] = ACTIONS(49), + [ts_builtin_sym_end] = ACTIONS(3499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), + [sym_preproc_directive] = ACTIONS(3501), + [anon_sym_typedef] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym_RBRACE] = ACTIONS(3499), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_explicit] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_unsigned] = ACTIONS(3501), + [anon_sym_long] = ACTIONS(3501), + [anon_sym_short] = ACTIONS(3501), + [sym_primitive_type] = ACTIONS(3501), + [anon_sym_enum] = ACTIONS(3501), + [anon_sym_struct] = ACTIONS(3501), + [anon_sym_union] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3501), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3501), + [sym_auto] = ACTIONS(3501), + [anon_sym_typename] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_namespace] = ACTIONS(3501), + [anon_sym_using] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [sym_operator_name] = ACTIONS(3499), }, [1010] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(3497), - [sym_identifier] = ACTIONS(348), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2010), [sym_comment] = ACTIONS(49), }, [1011] = { - [aux_sym_enumerator_list_repeat1] = STATE(1031), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_RBRACE] = ACTIONS(3497), + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(3503), + [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, [1012] = { - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [sym_identifier] = ACTIONS(2112), + [aux_sym_enumerator_list_repeat1] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(3505), + [anon_sym_RBRACE] = ACTIONS(3503), [sym_comment] = ACTIONS(49), }, [1013] = { - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [sym_identifier] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2114), [sym_comment] = ACTIONS(49), }, [1014] = { - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [sym_identifier] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2202), [sym_comment] = ACTIONS(49), }, [1015] = { - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_COLON] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2206), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2288), }, [1016] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), - [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_COLON] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2290), [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2290), }, [1017] = { - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2297), + [aux_sym_template_argument_list_repeat1] = STATE(1133), + [anon_sym_COMMA] = ACTIONS(1127), + [anon_sym_GT] = ACTIONS(3507), [sym_comment] = ACTIONS(49), }, [1018] = { - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_RPAREN] = ACTIONS(3503), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_LBRACK] = ACTIONS(3503), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [sym_identifier] = ACTIONS(2299), [sym_comment] = ACTIONS(49), }, [1019] = { - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_RPAREN] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_RPAREN] = ACTIONS(3509), + [anon_sym_SEMI] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), [sym_comment] = ACTIONS(49), }, [1020] = { - [sym__expression] = STATE(1619), - [sym_conditional_expression] = STATE(1619), - [sym_assignment_expression] = STATE(1619), - [sym_pointer_expression] = STATE(1619), - [sym_logical_expression] = STATE(1619), - [sym_bitwise_expression] = STATE(1619), - [sym_equality_expression] = STATE(1619), - [sym_relational_expression] = STATE(1619), - [sym_shift_expression] = STATE(1619), - [sym_math_expression] = STATE(1619), - [sym_cast_expression] = STATE(1619), - [sym_sizeof_expression] = STATE(1619), - [sym_subscript_expression] = STATE(1619), - [sym_call_expression] = STATE(1619), - [sym_field_expression] = STATE(1619), - [sym_compound_literal_expression] = STATE(1619), - [sym_parenthesized_expression] = STATE(1619), - [sym_concatenated_string] = STATE(1619), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1619), - [sym_new_expression] = STATE(1619), - [sym_delete_expression] = STATE(1619), - [sym_lambda_expression] = STATE(1619), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3511), + [anon_sym_RPAREN] = ACTIONS(3511), + [anon_sym_SEMI] = ACTIONS(3511), + [anon_sym_LBRACK] = ACTIONS(3511), + [sym_comment] = ACTIONS(49), + }, + [1021] = { + [sym__expression] = STATE(1622), + [sym_conditional_expression] = STATE(1622), + [sym_assignment_expression] = STATE(1622), + [sym_pointer_expression] = STATE(1622), + [sym_logical_expression] = STATE(1622), + [sym_bitwise_expression] = STATE(1622), + [sym_equality_expression] = STATE(1622), + [sym_relational_expression] = STATE(1622), + [sym_shift_expression] = STATE(1622), + [sym_math_expression] = STATE(1622), + [sym_cast_expression] = STATE(1622), + [sym_sizeof_expression] = STATE(1622), + [sym_subscript_expression] = STATE(1622), + [sym_call_expression] = STATE(1622), + [sym_field_expression] = STATE(1622), + [sym_compound_literal_expression] = STATE(1622), + [sym_parenthesized_expression] = STATE(1622), + [sym_concatenated_string] = STATE(1622), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1622), + [sym_new_expression] = STATE(1622), + [sym_delete_expression] = STATE(1622), + [sym_lambda_expression] = STATE(1622), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3513), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3515), [anon_sym_AMP] = ACTIONS(568), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), @@ -45573,25 +45634,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(3507), - [sym_char_literal] = ACTIONS(3507), + [sym_number_literal] = ACTIONS(3513), + [sym_char_literal] = ACTIONS(3513), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [sym_null] = ACTIONS(3511), + [sym_true] = ACTIONS(3517), + [sym_false] = ACTIONS(3517), + [sym_null] = ACTIONS(3517), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(3511), + [sym_nullptr] = ACTIONS(3517), }, - [1021] = { + [1022] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(3509), + [anon_sym_RBRACK] = ACTIONS(3515), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -45627,102 +45688,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [sym_operator_name] = ACTIONS(3513), - }, [1023] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [ts_builtin_sym_end] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_template] = ACTIONS(3521), + [anon_sym_namespace] = ACTIONS(3521), + [anon_sym_using] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [sym_operator_name] = ACTIONS(3519), + }, + [1024] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1025), - [anon_sym_unsigned] = ACTIONS(2000), - [anon_sym_long] = ACTIONS(2000), - [anon_sym_short] = ACTIONS(2000), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1026), + [anon_sym_unsigned] = ACTIONS(2002), + [anon_sym_long] = ACTIONS(2002), + [anon_sym_short] = ACTIONS(2002), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2006), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1024] = { - [sym__abstract_declarator] = STATE(1622), - [sym_abstract_pointer_declarator] = STATE(1622), - [sym_abstract_function_declarator] = STATE(1622), - [sym_abstract_array_declarator] = STATE(1622), - [sym_parameter_list] = STATE(1623), - [sym_abstract_reference_declarator] = STATE(1622), + [1025] = { + [sym__abstract_declarator] = STATE(1625), + [sym_abstract_pointer_declarator] = STATE(1625), + [sym_abstract_function_declarator] = STATE(1625), + [sym_abstract_array_declarator] = STATE(1625), + [sym_parameter_list] = STATE(1626), + [sym_abstract_reference_declarator] = STATE(1625), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3523), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [1025] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1624), + [1026] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1627), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), @@ -45733,172 +45794,172 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(3523), - [anon_sym_long] = ACTIONS(3523), - [anon_sym_short] = ACTIONS(3523), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(3529), + [anon_sym_long] = ACTIONS(3529), + [anon_sym_short] = ACTIONS(3529), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [1026] = { - [sym_type_qualifier] = STATE(1026), - [sym_trailing_return_type] = STATE(1026), - [aux_sym_function_declarator_repeat1] = STATE(1026), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(3525), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3528), - }, [1027] = { + [sym_type_qualifier] = STATE(1027), + [sym_trailing_return_type] = STATE(1027), + [aux_sym_function_declarator_repeat1] = STATE(1027), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(3531), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3534), + }, + [1028] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(3531), - [anon_sym_RBRACE] = ACTIONS(3531), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(3537), + [anon_sym_RBRACE] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1028] = { - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_extern] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3535), - [anon_sym_register] = ACTIONS(3535), - [anon_sym_inline] = ACTIONS(3535), - [anon_sym_const] = ACTIONS(3535), - [anon_sym_restrict] = ACTIONS(3535), - [anon_sym_volatile] = ACTIONS(3535), - [anon_sym__Atomic] = ACTIONS(3535), - [anon_sym_mutable] = ACTIONS(3535), - [anon_sym_explicit] = ACTIONS(3535), - [anon_sym_constexpr] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_GT] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3535), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [sym_operator_name] = ACTIONS(3533), - }, [1029] = { - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [sym_comment] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3539), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_COLON] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3539), + [anon_sym_GT] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3541), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(3539), + [sym_operator_name] = ACTIONS(3539), }, [1030] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(3539), - [sym_identifier] = ACTIONS(348), + [anon_sym_COMMA] = ACTIONS(3543), + [anon_sym_RBRACE] = ACTIONS(3543), [sym_comment] = ACTIONS(49), }, [1031] = { - [aux_sym_enumerator_list_repeat1] = STATE(1031), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3537), + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(3545), + [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, [1032] = { - [anon_sym_LPAREN] = ACTIONS(3544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3546), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3544), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3544), - [anon_sym_typedef] = ACTIONS(3546), - [anon_sym_extern] = ACTIONS(3546), - [anon_sym_RBRACE] = ACTIONS(3544), - [anon_sym_STAR] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3546), - [anon_sym_register] = ACTIONS(3546), - [anon_sym_inline] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_restrict] = ACTIONS(3546), - [anon_sym_volatile] = ACTIONS(3546), - [anon_sym__Atomic] = ACTIONS(3546), - [anon_sym_mutable] = ACTIONS(3546), - [anon_sym_explicit] = ACTIONS(3546), - [anon_sym_constexpr] = ACTIONS(3546), - [anon_sym_unsigned] = ACTIONS(3546), - [anon_sym_long] = ACTIONS(3546), - [anon_sym_short] = ACTIONS(3546), - [sym_primitive_type] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), - [anon_sym_struct] = ACTIONS(3546), - [anon_sym_union] = ACTIONS(3546), - [anon_sym_AMP] = ACTIONS(3546), - [anon_sym_AMP_AMP] = ACTIONS(3544), - [anon_sym_TILDE] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3546), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3546), - [sym_auto] = ACTIONS(3546), - [anon_sym_typename] = ACTIONS(3546), - [anon_sym_template] = ACTIONS(3546), - [anon_sym_friend] = ACTIONS(3546), - [anon_sym_private] = ACTIONS(3546), - [anon_sym_protected] = ACTIONS(3546), - [anon_sym_using] = ACTIONS(3546), - [anon_sym_COLON_COLON] = ACTIONS(3544), - [sym_operator_name] = ACTIONS(3544), + [aux_sym_enumerator_list_repeat1] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(3547), + [anon_sym_RBRACE] = ACTIONS(3543), + [sym_comment] = ACTIONS(49), }, [1033] = { + [anon_sym_LPAREN] = ACTIONS(3550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3552), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3550), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3550), + [anon_sym_typedef] = ACTIONS(3552), + [anon_sym_extern] = ACTIONS(3552), + [anon_sym_RBRACE] = ACTIONS(3550), + [anon_sym_STAR] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_register] = ACTIONS(3552), + [anon_sym_inline] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_restrict] = ACTIONS(3552), + [anon_sym_volatile] = ACTIONS(3552), + [anon_sym__Atomic] = ACTIONS(3552), + [anon_sym_mutable] = ACTIONS(3552), + [anon_sym_explicit] = ACTIONS(3552), + [anon_sym_constexpr] = ACTIONS(3552), + [anon_sym_unsigned] = ACTIONS(3552), + [anon_sym_long] = ACTIONS(3552), + [anon_sym_short] = ACTIONS(3552), + [sym_primitive_type] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + [anon_sym_struct] = ACTIONS(3552), + [anon_sym_union] = ACTIONS(3552), + [anon_sym_AMP] = ACTIONS(3552), + [anon_sym_AMP_AMP] = ACTIONS(3550), + [anon_sym_TILDE] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3552), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [sym_auto] = ACTIONS(3552), + [anon_sym_typename] = ACTIONS(3552), + [anon_sym_template] = ACTIONS(3552), + [anon_sym_friend] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_using] = ACTIONS(3552), + [anon_sym_COLON_COLON] = ACTIONS(3550), + [sym_operator_name] = ACTIONS(3550), + }, + [1034] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(1627), + [sym_type_definition] = STATE(1630), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -45911,32 +45972,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1627), - [sym_field_declaration] = STATE(1627), + [sym__field_declaration_list_item] = STATE(1630), + [sym_field_declaration] = STATE(1630), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1627), + [sym_template_declaration] = STATE(1630), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1627), - [sym_access_specifier] = STATE(1627), + [sym_friend_declaration] = STATE(1630), + [sym_access_specifier] = STATE(1630), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1627), - [sym_alias_declaration] = STATE(1627), + [sym_using_declaration] = STATE(1630), + [sym_alias_declaration] = STATE(1630), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1627), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1630), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3548), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3554), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), @@ -45976,24 +46037,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1034] = { - [sym_preproc_arg] = ACTIONS(3550), - [sym_comment] = ACTIONS(83), - }, [1035] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3552), - [sym_comment] = ACTIONS(49), + [sym_preproc_arg] = ACTIONS(3556), + [sym_comment] = ACTIONS(83), }, [1036] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3554), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3558), [sym_comment] = ACTIONS(49), }, [1037] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3560), + [sym_comment] = ACTIONS(49), + }, + [1038] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1632), - [sym_preproc_elif_in_field_declaration_list] = STATE(1633), - [sym_type_definition] = STATE(1634), + [sym_preproc_else_in_field_declaration_list] = STATE(1635), + [sym_preproc_elif_in_field_declaration_list] = STATE(1636), + [sym_type_definition] = STATE(1637), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -46006,36 +46067,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1634), - [sym_field_declaration] = STATE(1634), + [sym__field_declaration_list_item] = STATE(1637), + [sym_field_declaration] = STATE(1637), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1634), + [sym_template_declaration] = STATE(1637), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1634), - [sym_access_specifier] = STATE(1634), + [sym_friend_declaration] = STATE(1637), + [sym_access_specifier] = STATE(1637), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1634), - [sym_alias_declaration] = STATE(1634), + [sym_using_declaration] = STATE(1637), + [sym_alias_declaration] = STATE(1637), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1634), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1637), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3556), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3562), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -46073,66 +46134,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1038] = { - [anon_sym_LPAREN] = ACTIONS(3558), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3560), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3558), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3558), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3558), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3558), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3558), - [anon_sym_typedef] = ACTIONS(3560), - [anon_sym_extern] = ACTIONS(3560), - [anon_sym_RBRACE] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3558), - [anon_sym_static] = ACTIONS(3560), - [anon_sym_register] = ACTIONS(3560), - [anon_sym_inline] = ACTIONS(3560), - [anon_sym_const] = ACTIONS(3560), - [anon_sym_restrict] = ACTIONS(3560), - [anon_sym_volatile] = ACTIONS(3560), - [anon_sym__Atomic] = ACTIONS(3560), - [anon_sym_mutable] = ACTIONS(3560), - [anon_sym_explicit] = ACTIONS(3560), - [anon_sym_constexpr] = ACTIONS(3560), - [anon_sym_unsigned] = ACTIONS(3560), - [anon_sym_long] = ACTIONS(3560), - [anon_sym_short] = ACTIONS(3560), - [sym_primitive_type] = ACTIONS(3560), - [anon_sym_enum] = ACTIONS(3560), - [anon_sym_struct] = ACTIONS(3560), - [anon_sym_union] = ACTIONS(3560), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3558), - [anon_sym_TILDE] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3560), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3560), - [anon_sym_public] = ACTIONS(3560), - [sym_auto] = ACTIONS(3560), - [anon_sym_typename] = ACTIONS(3560), - [anon_sym_template] = ACTIONS(3560), - [anon_sym_friend] = ACTIONS(3560), - [anon_sym_private] = ACTIONS(3560), - [anon_sym_protected] = ACTIONS(3560), - [anon_sym_using] = ACTIONS(3560), - [anon_sym_COLON_COLON] = ACTIONS(3558), - [sym_operator_name] = ACTIONS(3558), - }, [1039] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3562), - [sym_comment] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3566), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3564), + [anon_sym_typedef] = ACTIONS(3566), + [anon_sym_extern] = ACTIONS(3566), + [anon_sym_RBRACE] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(3564), + [anon_sym_static] = ACTIONS(3566), + [anon_sym_register] = ACTIONS(3566), + [anon_sym_inline] = ACTIONS(3566), + [anon_sym_const] = ACTIONS(3566), + [anon_sym_restrict] = ACTIONS(3566), + [anon_sym_volatile] = ACTIONS(3566), + [anon_sym__Atomic] = ACTIONS(3566), + [anon_sym_mutable] = ACTIONS(3566), + [anon_sym_explicit] = ACTIONS(3566), + [anon_sym_constexpr] = ACTIONS(3566), + [anon_sym_unsigned] = ACTIONS(3566), + [anon_sym_long] = ACTIONS(3566), + [anon_sym_short] = ACTIONS(3566), + [sym_primitive_type] = ACTIONS(3566), + [anon_sym_enum] = ACTIONS(3566), + [anon_sym_struct] = ACTIONS(3566), + [anon_sym_union] = ACTIONS(3566), + [anon_sym_AMP] = ACTIONS(3566), + [anon_sym_AMP_AMP] = ACTIONS(3564), + [anon_sym_TILDE] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3566), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3566), + [anon_sym_public] = ACTIONS(3566), + [sym_auto] = ACTIONS(3566), + [anon_sym_typename] = ACTIONS(3566), + [anon_sym_template] = ACTIONS(3566), + [anon_sym_friend] = ACTIONS(3566), + [anon_sym_private] = ACTIONS(3566), + [anon_sym_protected] = ACTIONS(3566), + [anon_sym_using] = ACTIONS(3566), + [anon_sym_COLON_COLON] = ACTIONS(3564), + [sym_operator_name] = ACTIONS(3564), }, [1040] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3564), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3568), [sym_comment] = ACTIONS(49), }, [1041] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3570), + [sym_comment] = ACTIONS(49), + }, + [1042] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1638), - [sym_preproc_elif_in_field_declaration_list] = STATE(1639), - [sym_type_definition] = STATE(1634), + [sym_preproc_else_in_field_declaration_list] = STATE(1641), + [sym_preproc_elif_in_field_declaration_list] = STATE(1642), + [sym_type_definition] = STATE(1637), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -46145,36 +46206,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1634), - [sym_field_declaration] = STATE(1634), + [sym__field_declaration_list_item] = STATE(1637), + [sym_field_declaration] = STATE(1637), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1634), + [sym_template_declaration] = STATE(1637), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1634), - [sym_access_specifier] = STATE(1634), + [sym_friend_declaration] = STATE(1637), + [sym_access_specifier] = STATE(1637), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1634), - [sym_alias_declaration] = STATE(1634), + [sym_using_declaration] = STATE(1637), + [sym_alias_declaration] = STATE(1637), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1634), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1637), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3566), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3572), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -46212,66 +46273,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1042] = { - [anon_sym_LPAREN] = ACTIONS(3568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3570), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3568), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3568), - [anon_sym_typedef] = ACTIONS(3570), - [anon_sym_extern] = ACTIONS(3570), - [anon_sym_RBRACE] = ACTIONS(3568), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_static] = ACTIONS(3570), - [anon_sym_register] = ACTIONS(3570), - [anon_sym_inline] = ACTIONS(3570), - [anon_sym_const] = ACTIONS(3570), - [anon_sym_restrict] = ACTIONS(3570), - [anon_sym_volatile] = ACTIONS(3570), - [anon_sym__Atomic] = ACTIONS(3570), - [anon_sym_mutable] = ACTIONS(3570), - [anon_sym_explicit] = ACTIONS(3570), - [anon_sym_constexpr] = ACTIONS(3570), - [anon_sym_unsigned] = ACTIONS(3570), - [anon_sym_long] = ACTIONS(3570), - [anon_sym_short] = ACTIONS(3570), - [sym_primitive_type] = ACTIONS(3570), - [anon_sym_enum] = ACTIONS(3570), - [anon_sym_struct] = ACTIONS(3570), - [anon_sym_union] = ACTIONS(3570), - [anon_sym_AMP] = ACTIONS(3570), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_TILDE] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3570), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3570), - [anon_sym_public] = ACTIONS(3570), - [sym_auto] = ACTIONS(3570), - [anon_sym_typename] = ACTIONS(3570), - [anon_sym_template] = ACTIONS(3570), - [anon_sym_friend] = ACTIONS(3570), - [anon_sym_private] = ACTIONS(3570), - [anon_sym_protected] = ACTIONS(3570), - [anon_sym_using] = ACTIONS(3570), - [anon_sym_COLON_COLON] = ACTIONS(3568), - [sym_operator_name] = ACTIONS(3568), - }, [1043] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3572), - [sym_comment] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3576), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3574), + [anon_sym_typedef] = ACTIONS(3576), + [anon_sym_extern] = ACTIONS(3576), + [anon_sym_RBRACE] = ACTIONS(3574), + [anon_sym_STAR] = ACTIONS(3574), + [anon_sym_static] = ACTIONS(3576), + [anon_sym_register] = ACTIONS(3576), + [anon_sym_inline] = ACTIONS(3576), + [anon_sym_const] = ACTIONS(3576), + [anon_sym_restrict] = ACTIONS(3576), + [anon_sym_volatile] = ACTIONS(3576), + [anon_sym__Atomic] = ACTIONS(3576), + [anon_sym_mutable] = ACTIONS(3576), + [anon_sym_explicit] = ACTIONS(3576), + [anon_sym_constexpr] = ACTIONS(3576), + [anon_sym_unsigned] = ACTIONS(3576), + [anon_sym_long] = ACTIONS(3576), + [anon_sym_short] = ACTIONS(3576), + [sym_primitive_type] = ACTIONS(3576), + [anon_sym_enum] = ACTIONS(3576), + [anon_sym_struct] = ACTIONS(3576), + [anon_sym_union] = ACTIONS(3576), + [anon_sym_AMP] = ACTIONS(3576), + [anon_sym_AMP_AMP] = ACTIONS(3574), + [anon_sym_TILDE] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3576), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3576), + [anon_sym_public] = ACTIONS(3576), + [sym_auto] = ACTIONS(3576), + [anon_sym_typename] = ACTIONS(3576), + [anon_sym_template] = ACTIONS(3576), + [anon_sym_friend] = ACTIONS(3576), + [anon_sym_private] = ACTIONS(3576), + [anon_sym_protected] = ACTIONS(3576), + [anon_sym_using] = ACTIONS(3576), + [anon_sym_COLON_COLON] = ACTIONS(3574), + [sym_operator_name] = ACTIONS(3574), }, [1044] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3574), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3578), [sym_comment] = ACTIONS(49), }, [1045] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3580), + [sym_comment] = ACTIONS(49), + }, + [1046] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(1643), - [sym_preproc_elif_in_field_declaration_list] = STATE(1644), - [sym_type_definition] = STATE(1634), + [sym_preproc_else_in_field_declaration_list] = STATE(1646), + [sym_preproc_elif_in_field_declaration_list] = STATE(1647), + [sym_type_definition] = STATE(1637), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -46284,36 +46345,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1634), - [sym_field_declaration] = STATE(1634), + [sym__field_declaration_list_item] = STATE(1637), + [sym_field_declaration] = STATE(1637), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1634), + [sym_template_declaration] = STATE(1637), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1634), - [sym_access_specifier] = STATE(1634), + [sym_friend_declaration] = STATE(1637), + [sym_access_specifier] = STATE(1637), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1634), - [sym_alias_declaration] = STATE(1634), + [sym_using_declaration] = STATE(1637), + [sym_alias_declaration] = STATE(1637), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1634), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1637), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3576), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3582), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -46351,15 +46412,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1046] = { + [1047] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3578), + [anon_sym_SEMI] = ACTIONS(3584), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [1047] = { - [sym__type_declarator] = STATE(1646), + [1048] = { + [sym__type_declarator] = STATE(1649), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -46368,7 +46429,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [1048] = { + [1049] = { [anon_sym_LPAREN] = ACTIONS(1137), [anon_sym_SEMI] = ACTIONS(1140), [anon_sym_extern] = ACTIONS(1142), @@ -46393,7 +46454,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), [sym_operator_name] = ACTIONS(1140), }, - [1049] = { + [1050] = { [anon_sym_LPAREN] = ACTIONS(1198), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1200), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1198), @@ -46439,21 +46500,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1198), [sym_operator_name] = ACTIONS(1198), }, - [1050] = { - [sym__declarator] = STATE(1051), - [sym_pointer_declarator] = STATE(1051), - [sym_function_declarator] = STATE(1051), - [sym_array_declarator] = STATE(1051), - [sym_init_declarator] = STATE(1052), - [sym_reference_declarator] = STATE(1051), + [1051] = { + [sym__declarator] = STATE(1052), + [sym_pointer_declarator] = STATE(1052), + [sym_function_declarator] = STATE(1052), + [sym_array_declarator] = STATE(1052), + [sym_init_declarator] = STATE(1053), + [sym_reference_declarator] = STATE(1052), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1051), - [sym_destructor_name] = STATE(1051), + [sym_template_function] = STATE(1052), + [sym_destructor_name] = STATE(1052), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(3580), + [anon_sym_SEMI] = ACTIONS(3586), [anon_sym_STAR] = ACTIONS(196), [anon_sym_AMP] = ACTIONS(526), [anon_sym_AMP_AMP] = ACTIONS(528), @@ -46461,75 +46522,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(2042), + [sym_operator_name] = ACTIONS(2044), }, - [1051] = { - [sym_compound_statement] = STATE(1650), + [1052] = { + [sym_compound_statement] = STATE(1653), [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(1651), + [aux_sym_declaration_repeat1] = STATE(1654), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3582), - [anon_sym_LBRACE] = ACTIONS(3584), + [anon_sym_SEMI] = ACTIONS(3588), + [anon_sym_LBRACE] = ACTIONS(3590), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [1052] = { - [aux_sym_declaration_repeat1] = STATE(1651), + [1053] = { + [aux_sym_declaration_repeat1] = STATE(1654), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(3582), + [anon_sym_SEMI] = ACTIONS(3588), [sym_comment] = ACTIONS(49), }, - [1053] = { - [anon_sym_LPAREN] = ACTIONS(3586), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3588), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3586), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3586), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3586), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3586), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3586), - [anon_sym_typedef] = ACTIONS(3588), - [anon_sym_extern] = ACTIONS(3588), - [anon_sym_RBRACE] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(3586), - [anon_sym_static] = ACTIONS(3588), - [anon_sym_register] = ACTIONS(3588), - [anon_sym_inline] = ACTIONS(3588), - [anon_sym_const] = ACTIONS(3588), - [anon_sym_restrict] = ACTIONS(3588), - [anon_sym_volatile] = ACTIONS(3588), - [anon_sym__Atomic] = ACTIONS(3588), - [anon_sym_mutable] = ACTIONS(3588), - [anon_sym_explicit] = ACTIONS(3588), - [anon_sym_constexpr] = ACTIONS(3588), - [anon_sym_unsigned] = ACTIONS(3588), - [anon_sym_long] = ACTIONS(3588), - [anon_sym_short] = ACTIONS(3588), - [sym_primitive_type] = ACTIONS(3588), - [anon_sym_enum] = ACTIONS(3588), - [anon_sym_struct] = ACTIONS(3588), - [anon_sym_union] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3588), - [anon_sym_AMP_AMP] = ACTIONS(3586), - [anon_sym_TILDE] = ACTIONS(3586), - [sym_identifier] = ACTIONS(3588), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3588), - [anon_sym_public] = ACTIONS(3588), - [sym_auto] = ACTIONS(3588), - [anon_sym_typename] = ACTIONS(3588), - [anon_sym_template] = ACTIONS(3588), - [anon_sym_friend] = ACTIONS(3588), - [anon_sym_private] = ACTIONS(3588), - [anon_sym_protected] = ACTIONS(3588), - [anon_sym_using] = ACTIONS(3588), - [anon_sym_COLON_COLON] = ACTIONS(3586), - [sym_operator_name] = ACTIONS(3586), - }, [1054] = { + [anon_sym_LPAREN] = ACTIONS(3592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3594), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3592), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3592), + [anon_sym_typedef] = ACTIONS(3594), + [anon_sym_extern] = ACTIONS(3594), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym_STAR] = ACTIONS(3592), + [anon_sym_static] = ACTIONS(3594), + [anon_sym_register] = ACTIONS(3594), + [anon_sym_inline] = ACTIONS(3594), + [anon_sym_const] = ACTIONS(3594), + [anon_sym_restrict] = ACTIONS(3594), + [anon_sym_volatile] = ACTIONS(3594), + [anon_sym__Atomic] = ACTIONS(3594), + [anon_sym_mutable] = ACTIONS(3594), + [anon_sym_explicit] = ACTIONS(3594), + [anon_sym_constexpr] = ACTIONS(3594), + [anon_sym_unsigned] = ACTIONS(3594), + [anon_sym_long] = ACTIONS(3594), + [anon_sym_short] = ACTIONS(3594), + [sym_primitive_type] = ACTIONS(3594), + [anon_sym_enum] = ACTIONS(3594), + [anon_sym_struct] = ACTIONS(3594), + [anon_sym_union] = ACTIONS(3594), + [anon_sym_AMP] = ACTIONS(3594), + [anon_sym_AMP_AMP] = ACTIONS(3592), + [anon_sym_TILDE] = ACTIONS(3592), + [sym_identifier] = ACTIONS(3594), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3594), + [anon_sym_public] = ACTIONS(3594), + [sym_auto] = ACTIONS(3594), + [anon_sym_typename] = ACTIONS(3594), + [anon_sym_template] = ACTIONS(3594), + [anon_sym_friend] = ACTIONS(3594), + [anon_sym_private] = ACTIONS(3594), + [anon_sym_protected] = ACTIONS(3594), + [anon_sym_using] = ACTIONS(3594), + [anon_sym_COLON_COLON] = ACTIONS(3592), + [sym_operator_name] = ACTIONS(3592), + }, + [1055] = { [anon_sym_LPAREN] = ACTIONS(1227), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1229), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1227), @@ -46575,14 +46636,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1227), [sym_operator_name] = ACTIONS(1227), }, - [1055] = { + [1056] = { [sym_type_qualifier] = STATE(638), [sym__type_specifier] = STATE(636), [sym_sized_type_specifier] = STATE(636), [sym_enum_specifier] = STATE(636), [sym_struct_specifier] = STATE(636), [sym_union_specifier] = STATE(636), - [sym_type_descriptor] = STATE(1652), + [sym_type_descriptor] = STATE(1655), [sym_macro_type_specifier] = STATE(636), [sym_class_specifier] = STATE(636), [sym_dependent_type] = STATE(636), @@ -46612,257 +46673,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(1235), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1056] = { + [1057] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(3590), + [anon_sym_SEMI] = ACTIONS(3596), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, - [1057] = { - [anon_sym_SEMI] = ACTIONS(3590), + [1058] = { + [anon_sym_SEMI] = ACTIONS(3596), [sym_comment] = ACTIONS(49), }, - [1058] = { - [sym__field_declarator] = STATE(1654), + [1059] = { + [sym__field_declarator] = STATE(1657), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1654), - [sym_scoped_field_identifier] = STATE(1061), + [sym_template_method] = STATE(1657), + [sym_scoped_field_identifier] = STATE(1062), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2058), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(3592), + [sym_operator_name] = ACTIONS(3598), }, - [1059] = { - [sym__field_declarator] = STATE(1655), + [1060] = { + [sym__field_declarator] = STATE(1658), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1655), - [sym_scoped_field_identifier] = STATE(1061), + [sym_template_method] = STATE(1658), + [sym_scoped_field_identifier] = STATE(1062), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2054), - [anon_sym_AMP_AMP] = ACTIONS(2056), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2056), + [anon_sym_AMP_AMP] = ACTIONS(2058), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(3594), + [sym_operator_name] = ACTIONS(3600), }, - [1060] = { - [sym_parameter_list] = STATE(1657), + [1061] = { + [sym_parameter_list] = STATE(1660), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3596), - [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(3602), + [anon_sym_LBRACK] = ACTIONS(2086), [sym_comment] = ACTIONS(49), }, - [1061] = { - [sym_template_argument_list] = STATE(1077), + [1062] = { + [sym_template_argument_list] = STATE(1078), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), }, - [1062] = { - [sym_parameter_list] = STATE(1073), + [1063] = { + [sym_parameter_list] = STATE(1074), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACE] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_LBRACE] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(3604), [sym_comment] = ACTIONS(49), }, - [1063] = { + [1064] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(3600), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1064] = { - [sym_parameter_list] = STATE(1073), + [1065] = { + [sym_parameter_list] = STATE(1074), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACE] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_LBRACE] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(3608), [sym_comment] = ACTIONS(49), }, - [1065] = { - [sym_destructor_name] = STATE(1531), + [1066] = { + [sym_destructor_name] = STATE(1534), [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(3604), + [sym_identifier] = ACTIONS(3610), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3316), + [sym_operator_name] = ACTIONS(3322), }, - [1066] = { - [anon_sym_LPAREN] = ACTIONS(3606), - [anon_sym_COMMA] = ACTIONS(3606), - [anon_sym_RPAREN] = ACTIONS(3606), - [anon_sym_SEMI] = ACTIONS(3606), - [anon_sym_LBRACE] = ACTIONS(3606), - [anon_sym_RBRACE] = ACTIONS(3606), - [anon_sym_STAR] = ACTIONS(3608), - [anon_sym_LBRACK] = ACTIONS(3606), - [anon_sym_RBRACK] = ACTIONS(3606), - [anon_sym_EQ] = ACTIONS(3608), - [anon_sym_COLON] = ACTIONS(3608), - [anon_sym_QMARK] = ACTIONS(3606), - [anon_sym_STAR_EQ] = ACTIONS(3606), - [anon_sym_SLASH_EQ] = ACTIONS(3606), - [anon_sym_PERCENT_EQ] = ACTIONS(3606), - [anon_sym_PLUS_EQ] = ACTIONS(3606), - [anon_sym_DASH_EQ] = ACTIONS(3606), - [anon_sym_LT_LT_EQ] = ACTIONS(3606), - [anon_sym_GT_GT_EQ] = ACTIONS(3606), - [anon_sym_AMP_EQ] = ACTIONS(3606), - [anon_sym_CARET_EQ] = ACTIONS(3606), - [anon_sym_PIPE_EQ] = ACTIONS(3606), - [anon_sym_AMP] = ACTIONS(3608), - [anon_sym_PIPE_PIPE] = ACTIONS(3606), - [anon_sym_AMP_AMP] = ACTIONS(3606), - [anon_sym_PIPE] = ACTIONS(3608), - [anon_sym_CARET] = ACTIONS(3608), - [anon_sym_EQ_EQ] = ACTIONS(3606), - [anon_sym_BANG_EQ] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(3608), - [anon_sym_GT] = ACTIONS(3608), - [anon_sym_LT_EQ] = ACTIONS(3606), - [anon_sym_GT_EQ] = ACTIONS(3606), - [anon_sym_LT_LT] = ACTIONS(3608), - [anon_sym_GT_GT] = ACTIONS(3608), - [anon_sym_PLUS] = ACTIONS(3608), - [anon_sym_DASH] = ACTIONS(3608), - [anon_sym_SLASH] = ACTIONS(3608), - [anon_sym_PERCENT] = ACTIONS(3608), - [anon_sym_DASH_DASH] = ACTIONS(3606), - [anon_sym_PLUS_PLUS] = ACTIONS(3606), - [anon_sym_DOT] = ACTIONS(3606), - [anon_sym_DASH_GT] = ACTIONS(3606), + [1067] = { + [anon_sym_LPAREN] = ACTIONS(3612), + [anon_sym_COMMA] = ACTIONS(3612), + [anon_sym_RPAREN] = ACTIONS(3612), + [anon_sym_SEMI] = ACTIONS(3612), + [anon_sym_LBRACE] = ACTIONS(3612), + [anon_sym_RBRACE] = ACTIONS(3612), + [anon_sym_STAR] = ACTIONS(3614), + [anon_sym_LBRACK] = ACTIONS(3612), + [anon_sym_RBRACK] = ACTIONS(3612), + [anon_sym_EQ] = ACTIONS(3614), + [anon_sym_COLON] = ACTIONS(3614), + [anon_sym_QMARK] = ACTIONS(3612), + [anon_sym_STAR_EQ] = ACTIONS(3612), + [anon_sym_SLASH_EQ] = ACTIONS(3612), + [anon_sym_PERCENT_EQ] = ACTIONS(3612), + [anon_sym_PLUS_EQ] = ACTIONS(3612), + [anon_sym_DASH_EQ] = ACTIONS(3612), + [anon_sym_LT_LT_EQ] = ACTIONS(3612), + [anon_sym_GT_GT_EQ] = ACTIONS(3612), + [anon_sym_AMP_EQ] = ACTIONS(3612), + [anon_sym_CARET_EQ] = ACTIONS(3612), + [anon_sym_PIPE_EQ] = ACTIONS(3612), + [anon_sym_AMP] = ACTIONS(3614), + [anon_sym_PIPE_PIPE] = ACTIONS(3612), + [anon_sym_AMP_AMP] = ACTIONS(3612), + [anon_sym_PIPE] = ACTIONS(3614), + [anon_sym_CARET] = ACTIONS(3614), + [anon_sym_EQ_EQ] = ACTIONS(3612), + [anon_sym_BANG_EQ] = ACTIONS(3612), + [anon_sym_LT] = ACTIONS(3614), + [anon_sym_GT] = ACTIONS(3614), + [anon_sym_LT_EQ] = ACTIONS(3612), + [anon_sym_GT_EQ] = ACTIONS(3612), + [anon_sym_LT_LT] = ACTIONS(3614), + [anon_sym_GT_GT] = ACTIONS(3614), + [anon_sym_PLUS] = ACTIONS(3614), + [anon_sym_DASH] = ACTIONS(3614), + [anon_sym_SLASH] = ACTIONS(3614), + [anon_sym_PERCENT] = ACTIONS(3614), + [anon_sym_DASH_DASH] = ACTIONS(3612), + [anon_sym_PLUS_PLUS] = ACTIONS(3612), + [anon_sym_DOT] = ACTIONS(3612), + [anon_sym_DASH_GT] = ACTIONS(3612), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(447), }, - [1067] = { - [anon_sym_LT] = ACTIONS(3610), + [1068] = { + [anon_sym_LT] = ACTIONS(3616), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(516), }, - [1068] = { - [sym__field_declarator] = STATE(1662), + [1069] = { + [sym__field_declarator] = STATE(1665), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1662), + [sym_template_method] = STATE(1665), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3623), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(3619), - }, - [1069] = { - [anon_sym_LPAREN] = ACTIONS(3621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3621), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3621), - [anon_sym_typedef] = ACTIONS(3623), - [anon_sym_extern] = ACTIONS(3623), - [anon_sym_RBRACE] = ACTIONS(3621), - [anon_sym_STAR] = ACTIONS(3621), - [anon_sym_static] = ACTIONS(3623), - [anon_sym_register] = ACTIONS(3623), - [anon_sym_inline] = ACTIONS(3623), - [anon_sym_const] = ACTIONS(3623), - [anon_sym_restrict] = ACTIONS(3623), - [anon_sym_volatile] = ACTIONS(3623), - [anon_sym__Atomic] = ACTIONS(3623), - [anon_sym_mutable] = ACTIONS(3623), - [anon_sym_explicit] = ACTIONS(3623), - [anon_sym_constexpr] = ACTIONS(3623), - [anon_sym_unsigned] = ACTIONS(3623), - [anon_sym_long] = ACTIONS(3623), - [anon_sym_short] = ACTIONS(3623), - [sym_primitive_type] = ACTIONS(3623), - [anon_sym_enum] = ACTIONS(3623), - [anon_sym_struct] = ACTIONS(3623), - [anon_sym_union] = ACTIONS(3623), - [anon_sym_AMP] = ACTIONS(3623), - [anon_sym_AMP_AMP] = ACTIONS(3621), - [anon_sym_TILDE] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3623), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3623), - [anon_sym_public] = ACTIONS(3623), - [sym_auto] = ACTIONS(3623), - [anon_sym_typename] = ACTIONS(3623), - [anon_sym_template] = ACTIONS(3623), - [anon_sym_friend] = ACTIONS(3623), - [anon_sym_private] = ACTIONS(3623), - [anon_sym_protected] = ACTIONS(3623), - [anon_sym_using] = ACTIONS(3623), - [anon_sym_COLON_COLON] = ACTIONS(3621), - [sym_operator_name] = ACTIONS(3621), + [sym_operator_name] = ACTIONS(3625), }, [1070] = { - [sym__declaration_specifiers] = STATE(1664), + [anon_sym_LPAREN] = ACTIONS(3627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3629), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3627), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3627), + [anon_sym_typedef] = ACTIONS(3629), + [anon_sym_extern] = ACTIONS(3629), + [anon_sym_RBRACE] = ACTIONS(3627), + [anon_sym_STAR] = ACTIONS(3627), + [anon_sym_static] = ACTIONS(3629), + [anon_sym_register] = ACTIONS(3629), + [anon_sym_inline] = ACTIONS(3629), + [anon_sym_const] = ACTIONS(3629), + [anon_sym_restrict] = ACTIONS(3629), + [anon_sym_volatile] = ACTIONS(3629), + [anon_sym__Atomic] = ACTIONS(3629), + [anon_sym_mutable] = ACTIONS(3629), + [anon_sym_explicit] = ACTIONS(3629), + [anon_sym_constexpr] = ACTIONS(3629), + [anon_sym_unsigned] = ACTIONS(3629), + [anon_sym_long] = ACTIONS(3629), + [anon_sym_short] = ACTIONS(3629), + [sym_primitive_type] = ACTIONS(3629), + [anon_sym_enum] = ACTIONS(3629), + [anon_sym_struct] = ACTIONS(3629), + [anon_sym_union] = ACTIONS(3629), + [anon_sym_AMP] = ACTIONS(3629), + [anon_sym_AMP_AMP] = ACTIONS(3627), + [anon_sym_TILDE] = ACTIONS(3627), + [sym_identifier] = ACTIONS(3629), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3629), + [anon_sym_public] = ACTIONS(3629), + [sym_auto] = ACTIONS(3629), + [anon_sym_typename] = ACTIONS(3629), + [anon_sym_template] = ACTIONS(3629), + [anon_sym_friend] = ACTIONS(3629), + [anon_sym_private] = ACTIONS(3629), + [anon_sym_protected] = ACTIONS(3629), + [anon_sym_using] = ACTIONS(3629), + [anon_sym_COLON_COLON] = ACTIONS(3627), + [sym_operator_name] = ACTIONS(3627), + }, + [1071] = { + [sym__declaration_specifiers] = STATE(1667), [sym_storage_class_specifier] = STATE(374), [sym_type_qualifier] = STATE(374), [sym__type_specifier] = STATE(367), @@ -46870,44 +46931,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(367), [sym_struct_specifier] = STATE(367), [sym_union_specifier] = STATE(367), - [sym__expression] = STATE(1665), - [sym_conditional_expression] = STATE(1665), - [sym_assignment_expression] = STATE(1665), - [sym_pointer_expression] = STATE(1665), - [sym_logical_expression] = STATE(1665), - [sym_bitwise_expression] = STATE(1665), - [sym_equality_expression] = STATE(1665), - [sym_relational_expression] = STATE(1665), - [sym_shift_expression] = STATE(1665), - [sym_math_expression] = STATE(1665), - [sym_cast_expression] = STATE(1665), - [sym_sizeof_expression] = STATE(1665), - [sym_subscript_expression] = STATE(1665), - [sym_call_expression] = STATE(1665), - [sym_field_expression] = STATE(1665), - [sym_compound_literal_expression] = STATE(1665), - [sym_parenthesized_expression] = STATE(1665), - [sym_concatenated_string] = STATE(1665), + [sym__expression] = STATE(1668), + [sym_conditional_expression] = STATE(1668), + [sym_assignment_expression] = STATE(1668), + [sym_pointer_expression] = STATE(1668), + [sym_logical_expression] = STATE(1668), + [sym_bitwise_expression] = STATE(1668), + [sym_equality_expression] = STATE(1668), + [sym_relational_expression] = STATE(1668), + [sym_shift_expression] = STATE(1668), + [sym_math_expression] = STATE(1668), + [sym_cast_expression] = STATE(1668), + [sym_sizeof_expression] = STATE(1668), + [sym_subscript_expression] = STATE(1668), + [sym_call_expression] = STATE(1668), + [sym_field_expression] = STATE(1668), + [sym_compound_literal_expression] = STATE(1668), + [sym_parenthesized_expression] = STATE(1668), + [sym_concatenated_string] = STATE(1668), [sym_macro_type_specifier] = STATE(367), [sym_class_specifier] = STATE(367), [sym_dependent_type] = STATE(367), [sym_template_type] = STATE(369), - [sym_template_function] = STATE(1665), - [sym_new_expression] = STATE(1665), - [sym_delete_expression] = STATE(1665), - [sym_lambda_expression] = STATE(1665), + [sym_template_function] = STATE(1668), + [sym_new_expression] = STATE(1668), + [sym_delete_expression] = STATE(1668), + [sym_lambda_expression] = STATE(1668), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(372), [sym_scoped_namespace_identifier] = STATE(373), [aux_sym__declaration_specifiers_repeat1] = STATE(374), [aux_sym_sized_type_specifier_repeat1] = STATE(375), - [sym_raw_string_literal] = ACTIONS(3625), + [sym_raw_string_literal] = ACTIONS(3631), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3627), + [anon_sym_RBRACK] = ACTIONS(3633), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), [anon_sym_inline] = ACTIONS(154), @@ -46933,12 +46994,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(3625), - [sym_char_literal] = ACTIONS(3625), + [sym_number_literal] = ACTIONS(3631), + [sym_char_literal] = ACTIONS(3631), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(3629), - [sym_false] = ACTIONS(3629), - [sym_null] = ACTIONS(3629), + [sym_true] = ACTIONS(3635), + [sym_false] = ACTIONS(3635), + [sym_null] = ACTIONS(3635), [sym_identifier] = ACTIONS(598), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(600), @@ -46947,37 +47008,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(606), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(3629), + [sym_nullptr] = ACTIONS(3635), }, - [1071] = { - [sym__expression] = STATE(1666), - [sym_conditional_expression] = STATE(1666), - [sym_assignment_expression] = STATE(1666), - [sym_pointer_expression] = STATE(1666), - [sym_logical_expression] = STATE(1666), - [sym_bitwise_expression] = STATE(1666), - [sym_equality_expression] = STATE(1666), - [sym_relational_expression] = STATE(1666), - [sym_shift_expression] = STATE(1666), - [sym_math_expression] = STATE(1666), - [sym_cast_expression] = STATE(1666), - [sym_sizeof_expression] = STATE(1666), - [sym_subscript_expression] = STATE(1666), - [sym_call_expression] = STATE(1666), - [sym_field_expression] = STATE(1666), - [sym_compound_literal_expression] = STATE(1666), - [sym_parenthesized_expression] = STATE(1666), - [sym_concatenated_string] = STATE(1666), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1666), - [sym_new_expression] = STATE(1666), - [sym_delete_expression] = STATE(1666), - [sym_lambda_expression] = STATE(1666), + [1072] = { + [sym__expression] = STATE(1669), + [sym_conditional_expression] = STATE(1669), + [sym_assignment_expression] = STATE(1669), + [sym_pointer_expression] = STATE(1669), + [sym_logical_expression] = STATE(1669), + [sym_bitwise_expression] = STATE(1669), + [sym_equality_expression] = STATE(1669), + [sym_relational_expression] = STATE(1669), + [sym_shift_expression] = STATE(1669), + [sym_math_expression] = STATE(1669), + [sym_cast_expression] = STATE(1669), + [sym_sizeof_expression] = STATE(1669), + [sym_subscript_expression] = STATE(1669), + [sym_call_expression] = STATE(1669), + [sym_field_expression] = STATE(1669), + [sym_compound_literal_expression] = STATE(1669), + [sym_parenthesized_expression] = STATE(1669), + [sym_concatenated_string] = STATE(1669), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1669), + [sym_new_expression] = STATE(1669), + [sym_delete_expression] = STATE(1669), + [sym_lambda_expression] = STATE(1669), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3631), + [sym_raw_string_literal] = ACTIONS(3637), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -46989,74 +47050,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(3631), - [sym_char_literal] = ACTIONS(3631), + [sym_number_literal] = ACTIONS(3637), + [sym_char_literal] = ACTIONS(3637), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(3633), - [sym_false] = ACTIONS(3633), - [sym_null] = ACTIONS(3633), + [sym_true] = ACTIONS(3639), + [sym_false] = ACTIONS(3639), + [sym_null] = ACTIONS(3639), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(3633), - }, - [1072] = { - [anon_sym_LPAREN] = ACTIONS(3635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3637), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3635), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3635), - [anon_sym_typedef] = ACTIONS(3637), - [anon_sym_extern] = ACTIONS(3637), - [anon_sym_RBRACE] = ACTIONS(3635), - [anon_sym_STAR] = ACTIONS(3635), - [anon_sym_static] = ACTIONS(3637), - [anon_sym_register] = ACTIONS(3637), - [anon_sym_inline] = ACTIONS(3637), - [anon_sym_const] = ACTIONS(3637), - [anon_sym_restrict] = ACTIONS(3637), - [anon_sym_volatile] = ACTIONS(3637), - [anon_sym__Atomic] = ACTIONS(3637), - [anon_sym_mutable] = ACTIONS(3637), - [anon_sym_explicit] = ACTIONS(3637), - [anon_sym_constexpr] = ACTIONS(3637), - [anon_sym_unsigned] = ACTIONS(3637), - [anon_sym_long] = ACTIONS(3637), - [anon_sym_short] = ACTIONS(3637), - [sym_primitive_type] = ACTIONS(3637), - [anon_sym_enum] = ACTIONS(3637), - [anon_sym_struct] = ACTIONS(3637), - [anon_sym_union] = ACTIONS(3637), - [anon_sym_AMP] = ACTIONS(3637), - [anon_sym_AMP_AMP] = ACTIONS(3635), - [anon_sym_TILDE] = ACTIONS(3635), - [sym_identifier] = ACTIONS(3637), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3637), - [anon_sym_public] = ACTIONS(3637), - [sym_auto] = ACTIONS(3637), - [anon_sym_typename] = ACTIONS(3637), - [anon_sym_template] = ACTIONS(3637), - [anon_sym_friend] = ACTIONS(3637), - [anon_sym_private] = ACTIONS(3637), - [anon_sym_protected] = ACTIONS(3637), - [anon_sym_using] = ACTIONS(3637), - [anon_sym_COLON_COLON] = ACTIONS(3635), - [sym_operator_name] = ACTIONS(3635), + [sym_nullptr] = ACTIONS(3639), }, [1073] = { - [sym_type_qualifier] = STATE(1668), - [sym_trailing_return_type] = STATE(1668), - [aux_sym_function_declarator_repeat1] = STATE(1668), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3639), - [anon_sym_SEMI] = ACTIONS(3639), - [anon_sym_LBRACE] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), + [anon_sym_LPAREN] = ACTIONS(3641), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3643), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3641), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3641), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3641), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3641), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3641), + [anon_sym_typedef] = ACTIONS(3643), + [anon_sym_extern] = ACTIONS(3643), + [anon_sym_RBRACE] = ACTIONS(3641), + [anon_sym_STAR] = ACTIONS(3641), + [anon_sym_static] = ACTIONS(3643), + [anon_sym_register] = ACTIONS(3643), + [anon_sym_inline] = ACTIONS(3643), + [anon_sym_const] = ACTIONS(3643), + [anon_sym_restrict] = ACTIONS(3643), + [anon_sym_volatile] = ACTIONS(3643), + [anon_sym__Atomic] = ACTIONS(3643), + [anon_sym_mutable] = ACTIONS(3643), + [anon_sym_explicit] = ACTIONS(3643), + [anon_sym_constexpr] = ACTIONS(3643), + [anon_sym_unsigned] = ACTIONS(3643), + [anon_sym_long] = ACTIONS(3643), + [anon_sym_short] = ACTIONS(3643), + [sym_primitive_type] = ACTIONS(3643), + [anon_sym_enum] = ACTIONS(3643), + [anon_sym_struct] = ACTIONS(3643), + [anon_sym_union] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(3643), + [anon_sym_AMP_AMP] = ACTIONS(3641), + [anon_sym_TILDE] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3643), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3643), + [anon_sym_public] = ACTIONS(3643), + [sym_auto] = ACTIONS(3643), + [anon_sym_typename] = ACTIONS(3643), + [anon_sym_template] = ACTIONS(3643), + [anon_sym_friend] = ACTIONS(3643), + [anon_sym_private] = ACTIONS(3643), + [anon_sym_protected] = ACTIONS(3643), + [anon_sym_using] = ACTIONS(3643), + [anon_sym_COLON_COLON] = ACTIONS(3641), + [sym_operator_name] = ACTIONS(3641), + }, + [1074] = { + [sym_type_qualifier] = STATE(1671), + [sym_trailing_return_type] = STATE(1671), + [aux_sym_function_declarator_repeat1] = STATE(1671), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_LBRACE] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3645), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -47064,34 +47125,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(3641), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3643), - }, - [1074] = { - [aux_sym_field_declaration_repeat1] = STATE(1670), - [anon_sym_COMMA] = ACTIONS(2080), - [anon_sym_SEMI] = ACTIONS(3600), [anon_sym_COLON] = ACTIONS(3645), + [anon_sym_DASH_GT] = ACTIONS(3647), [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3649), }, [1075] = { - [sym_destructor_name] = STATE(1535), - [anon_sym_TILDE] = ACTIONS(45), - [sym_identifier] = ACTIONS(3647), + [aux_sym_field_declaration_repeat1] = STATE(1673), + [anon_sym_COMMA] = ACTIONS(2082), + [anon_sym_SEMI] = ACTIONS(3606), + [anon_sym_COLON] = ACTIONS(3651), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3328), }, [1076] = { + [sym_destructor_name] = STATE(1538), + [anon_sym_TILDE] = ACTIONS(45), + [sym_identifier] = ACTIONS(3653), + [sym_comment] = ACTIONS(49), + [sym_operator_name] = ACTIONS(3334), + }, + [1077] = { [sym_type_qualifier] = STATE(279), [sym__type_specifier] = STATE(277), [sym_sized_type_specifier] = STATE(277), [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1673), - [sym_parenthesized_expression] = STATE(1673), + [sym_type_descriptor] = STATE(1676), + [sym_parenthesized_expression] = STATE(1676), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -47115,7 +47176,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(3649), + [anon_sym_GT] = ACTIONS(3655), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), @@ -47123,83 +47184,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(438), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1077] = { - [anon_sym_LPAREN] = ACTIONS(3651), - [anon_sym_COMMA] = ACTIONS(3651), - [anon_sym_RPAREN] = ACTIONS(3651), - [anon_sym_SEMI] = ACTIONS(3651), - [anon_sym_LBRACE] = ACTIONS(3651), - [anon_sym_RBRACE] = ACTIONS(3651), - [anon_sym_STAR] = ACTIONS(3653), - [anon_sym_LBRACK] = ACTIONS(3651), - [anon_sym_RBRACK] = ACTIONS(3651), - [anon_sym_EQ] = ACTIONS(3653), - [anon_sym_COLON] = ACTIONS(3651), - [anon_sym_QMARK] = ACTIONS(3651), - [anon_sym_STAR_EQ] = ACTIONS(3651), - [anon_sym_SLASH_EQ] = ACTIONS(3651), - [anon_sym_PERCENT_EQ] = ACTIONS(3651), - [anon_sym_PLUS_EQ] = ACTIONS(3651), - [anon_sym_DASH_EQ] = ACTIONS(3651), - [anon_sym_LT_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_GT_EQ] = ACTIONS(3651), - [anon_sym_AMP_EQ] = ACTIONS(3651), - [anon_sym_CARET_EQ] = ACTIONS(3651), - [anon_sym_PIPE_EQ] = ACTIONS(3651), - [anon_sym_AMP] = ACTIONS(3653), - [anon_sym_PIPE_PIPE] = ACTIONS(3651), - [anon_sym_AMP_AMP] = ACTIONS(3651), - [anon_sym_PIPE] = ACTIONS(3653), - [anon_sym_CARET] = ACTIONS(3653), - [anon_sym_EQ_EQ] = ACTIONS(3651), - [anon_sym_BANG_EQ] = ACTIONS(3651), - [anon_sym_LT] = ACTIONS(3653), - [anon_sym_GT] = ACTIONS(3653), - [anon_sym_LT_EQ] = ACTIONS(3651), - [anon_sym_GT_EQ] = ACTIONS(3651), - [anon_sym_LT_LT] = ACTIONS(3653), - [anon_sym_GT_GT] = ACTIONS(3653), - [anon_sym_PLUS] = ACTIONS(3653), - [anon_sym_DASH] = ACTIONS(3653), - [anon_sym_SLASH] = ACTIONS(3653), - [anon_sym_PERCENT] = ACTIONS(3653), - [anon_sym_DASH_DASH] = ACTIONS(3651), - [anon_sym_PLUS_PLUS] = ACTIONS(3651), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_DASH_GT] = ACTIONS(3651), + [1078] = { + [anon_sym_LPAREN] = ACTIONS(3657), + [anon_sym_COMMA] = ACTIONS(3657), + [anon_sym_RPAREN] = ACTIONS(3657), + [anon_sym_SEMI] = ACTIONS(3657), + [anon_sym_LBRACE] = ACTIONS(3657), + [anon_sym_RBRACE] = ACTIONS(3657), + [anon_sym_STAR] = ACTIONS(3659), + [anon_sym_LBRACK] = ACTIONS(3657), + [anon_sym_RBRACK] = ACTIONS(3657), + [anon_sym_EQ] = ACTIONS(3659), + [anon_sym_COLON] = ACTIONS(3657), + [anon_sym_QMARK] = ACTIONS(3657), + [anon_sym_STAR_EQ] = ACTIONS(3657), + [anon_sym_SLASH_EQ] = ACTIONS(3657), + [anon_sym_PERCENT_EQ] = ACTIONS(3657), + [anon_sym_PLUS_EQ] = ACTIONS(3657), + [anon_sym_DASH_EQ] = ACTIONS(3657), + [anon_sym_LT_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_GT_EQ] = ACTIONS(3657), + [anon_sym_AMP_EQ] = ACTIONS(3657), + [anon_sym_CARET_EQ] = ACTIONS(3657), + [anon_sym_PIPE_EQ] = ACTIONS(3657), + [anon_sym_AMP] = ACTIONS(3659), + [anon_sym_PIPE_PIPE] = ACTIONS(3657), + [anon_sym_AMP_AMP] = ACTIONS(3657), + [anon_sym_PIPE] = ACTIONS(3659), + [anon_sym_CARET] = ACTIONS(3659), + [anon_sym_EQ_EQ] = ACTIONS(3657), + [anon_sym_BANG_EQ] = ACTIONS(3657), + [anon_sym_LT] = ACTIONS(3659), + [anon_sym_GT] = ACTIONS(3659), + [anon_sym_LT_EQ] = ACTIONS(3657), + [anon_sym_GT_EQ] = ACTIONS(3657), + [anon_sym_LT_LT] = ACTIONS(3659), + [anon_sym_GT_GT] = ACTIONS(3659), + [anon_sym_PLUS] = ACTIONS(3659), + [anon_sym_DASH] = ACTIONS(3659), + [anon_sym_SLASH] = ACTIONS(3659), + [anon_sym_PERCENT] = ACTIONS(3659), + [anon_sym_DASH_DASH] = ACTIONS(3657), + [anon_sym_PLUS_PLUS] = ACTIONS(3657), + [anon_sym_DOT] = ACTIONS(3657), + [anon_sym_DASH_GT] = ACTIONS(3657), [sym_comment] = ACTIONS(49), }, - [1078] = { - [sym__type_specifier] = STATE(1675), - [sym_sized_type_specifier] = STATE(1675), - [sym_enum_specifier] = STATE(1675), - [sym_struct_specifier] = STATE(1675), - [sym_union_specifier] = STATE(1675), - [sym_macro_type_specifier] = STATE(1675), - [sym_class_specifier] = STATE(1675), - [sym_dependent_type] = STATE(1675), + [1079] = { + [sym__type_specifier] = STATE(1678), + [sym_sized_type_specifier] = STATE(1678), + [sym_enum_specifier] = STATE(1678), + [sym_struct_specifier] = STATE(1678), + [sym_union_specifier] = STATE(1678), + [sym_macro_type_specifier] = STATE(1678), + [sym_class_specifier] = STATE(1678), + [sym_dependent_type] = STATE(1678), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1676), - [anon_sym_unsigned] = ACTIONS(3655), - [anon_sym_long] = ACTIONS(3655), - [anon_sym_short] = ACTIONS(3655), - [sym_primitive_type] = ACTIONS(3657), + [aux_sym_sized_type_specifier_repeat1] = STATE(1679), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(3663), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(3657), - [anon_sym_typename] = ACTIONS(3659), + [sym_auto] = ACTIONS(3663), + [anon_sym_typename] = ACTIONS(3665), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1079] = { - [sym_type_qualifier] = STATE(1677), - [sym_trailing_return_type] = STATE(1677), - [aux_sym_function_declarator_repeat1] = STATE(1677), + [1080] = { + [sym_type_qualifier] = STATE(1680), + [sym_trailing_return_type] = STATE(1680), + [aux_sym_function_declarator_repeat1] = STATE(1680), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1596), @@ -47212,11 +47273,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_COLON] = ACTIONS(1596), - [anon_sym_DASH_GT] = ACTIONS(2100), + [anon_sym_DASH_GT] = ACTIONS(2102), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3661), + [sym_noexcept] = ACTIONS(3667), }, - [1080] = { + [1081] = { [anon_sym_LPAREN] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1622), @@ -47262,17 +47323,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [1081] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [1082] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -47280,18 +47341,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -47311,14 +47372,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -47326,7 +47387,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -47341,7 +47402,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(3663), + [anon_sym_RBRACE] = ACTIONS(3669), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -47396,70 +47457,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1082] = { - [anon_sym_LPAREN] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1786), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_restrict] = ACTIONS(1788), - [anon_sym_volatile] = ACTIONS(1788), - [anon_sym__Atomic] = ACTIONS(1788), - [anon_sym_mutable] = ACTIONS(1788), - [anon_sym_explicit] = ACTIONS(1788), - [anon_sym_constexpr] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [sym_auto] = ACTIONS(1788), - [anon_sym_typename] = ACTIONS(1788), - [anon_sym_template] = ACTIONS(1788), - [anon_sym_friend] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_protected] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [sym_operator_name] = ACTIONS(1786), - }, [1083] = { - [sym_storage_class_specifier] = STATE(1083), - [sym_type_qualifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(1083), - [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_SEMI] = ACTIONS(798), + [anon_sym_LPAREN] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1788), + [anon_sym_typedef] = ACTIONS(1790), [anon_sym_extern] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(798), + [anon_sym_RBRACE] = ACTIONS(1788), + [anon_sym_STAR] = ACTIONS(1788), [anon_sym_static] = ACTIONS(1790), [anon_sym_register] = ACTIONS(1790), [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_restrict] = ACTIONS(1790), + [anon_sym_volatile] = ACTIONS(1790), + [anon_sym__Atomic] = ACTIONS(1790), + [anon_sym_mutable] = ACTIONS(1790), + [anon_sym_explicit] = ACTIONS(1790), + [anon_sym_constexpr] = ACTIONS(1790), + [anon_sym_unsigned] = ACTIONS(1790), + [anon_sym_long] = ACTIONS(1790), + [anon_sym_short] = ACTIONS(1790), + [sym_primitive_type] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1790), + [anon_sym_public] = ACTIONS(1790), + [sym_auto] = ACTIONS(1790), + [anon_sym_typename] = ACTIONS(1790), + [anon_sym_template] = ACTIONS(1790), + [anon_sym_friend] = ACTIONS(1790), + [anon_sym_private] = ACTIONS(1790), + [anon_sym_protected] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [sym_operator_name] = ACTIONS(1788), + }, + [1084] = { + [sym_storage_class_specifier] = STATE(1084), + [sym_type_qualifier] = STATE(1084), + [aux_sym__declaration_specifiers_repeat1] = STATE(1084), + [anon_sym_LPAREN] = ACTIONS(798), + [anon_sym_SEMI] = ACTIONS(798), + [anon_sym_extern] = ACTIONS(1792), + [anon_sym_STAR] = ACTIONS(798), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_COLON] = ACTIONS(806), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), @@ -47468,44 +47529,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(798), [sym_operator_name] = ACTIONS(798), }, - [1084] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1796), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), - }, [1085] = { - [sym_compound_statement] = STATE(1679), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), + }, + [1086] = { + [sym_compound_statement] = STATE(1682), [anon_sym_LBRACE] = ACTIONS(1049), [sym_comment] = ACTIONS(49), }, - [1086] = { - [sym_storage_class_specifier] = STATE(1083), - [sym_type_qualifier] = STATE(1083), - [aux_sym__declaration_specifiers_repeat1] = STATE(1083), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), + [1087] = { + [sym_storage_class_specifier] = STATE(1084), + [sym_type_qualifier] = STATE(1084), + [aux_sym__declaration_specifiers_repeat1] = STATE(1084), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -47516,22 +47577,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_COLON] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), + [anon_sym_COLON] = ACTIONS(1813), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, - [1087] = { - [aux_sym_base_class_clause_repeat1] = STATE(1090), + [1088] = { + [aux_sym_base_class_clause_repeat1] = STATE(1091), [anon_sym_COMMA] = ACTIONS(1069), - [anon_sym_LBRACE] = ACTIONS(3665), + [anon_sym_LBRACE] = ACTIONS(3671), [sym_comment] = ACTIONS(49), }, - [1088] = { - [sym__class_name] = STATE(1680), + [1089] = { + [sym__class_name] = STATE(1683), [sym_template_type] = STATE(196), [sym_scoped_type_identifier] = STATE(80), [sym_scoped_namespace_identifier] = STATE(64), @@ -47539,22 +47600,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1089] = { - [anon_sym_COMMA] = ACTIONS(3667), - [anon_sym_LBRACE] = ACTIONS(3667), - [sym_comment] = ACTIONS(49), - }, [1090] = { - [aux_sym_base_class_clause_repeat1] = STATE(1090), - [anon_sym_COMMA] = ACTIONS(3669), - [anon_sym_LBRACE] = ACTIONS(3667), + [anon_sym_COMMA] = ACTIONS(3673), + [anon_sym_LBRACE] = ACTIONS(3673), [sym_comment] = ACTIONS(49), }, [1091] = { - [anon_sym_RPAREN] = ACTIONS(3672), + [aux_sym_base_class_clause_repeat1] = STATE(1091), + [anon_sym_COMMA] = ACTIONS(3675), + [anon_sym_LBRACE] = ACTIONS(3673), [sym_comment] = ACTIONS(49), }, [1092] = { + [anon_sym_RPAREN] = ACTIONS(3678), + [sym_comment] = ACTIONS(49), + }, + [1093] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -47573,7 +47634,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1682), + [sym_type_descriptor] = STATE(1685), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -47637,99 +47698,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1093] = { + [1094] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1094] = { - [aux_sym_concatenated_string_repeat1] = STATE(1683), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(3674), + [1095] = { + [aux_sym_concatenated_string_repeat1] = STATE(1686), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(3680), [sym_comment] = ACTIONS(49), }, - [1095] = { + [1096] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3676), + [sym_identifier] = ACTIONS(3682), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, - [1096] = { + [1097] = { [anon_sym_LPAREN] = ACTIONS(704), [anon_sym_COMMA] = ACTIONS(704), [anon_sym_RPAREN] = ACTIONS(704), @@ -47776,7 +47837,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(447), }, - [1097] = { + [1098] = { [anon_sym_LPAREN] = ACTIONS(518), [anon_sym_COMMA] = ACTIONS(518), [anon_sym_RPAREN] = ACTIONS(518), @@ -47806,7 +47867,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(520), [anon_sym_EQ_EQ] = ACTIONS(518), [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), [anon_sym_GT] = ACTIONS(520), [anon_sym_LT_EQ] = ACTIONS(518), [anon_sym_GT_EQ] = ACTIONS(518), @@ -47823,38 +47884,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(516), }, - [1098] = { - [sym__expression] = STATE(1686), - [sym_conditional_expression] = STATE(1686), - [sym_assignment_expression] = STATE(1686), - [sym_pointer_expression] = STATE(1686), - [sym_logical_expression] = STATE(1686), - [sym_bitwise_expression] = STATE(1686), - [sym_equality_expression] = STATE(1686), - [sym_relational_expression] = STATE(1686), - [sym_shift_expression] = STATE(1686), - [sym_math_expression] = STATE(1686), - [sym_cast_expression] = STATE(1686), - [sym_sizeof_expression] = STATE(1686), - [sym_subscript_expression] = STATE(1686), - [sym_call_expression] = STATE(1686), - [sym_field_expression] = STATE(1686), - [sym_compound_literal_expression] = STATE(1686), - [sym_parenthesized_expression] = STATE(1686), - [sym_concatenated_string] = STATE(1686), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1686), - [sym_new_expression] = STATE(1686), - [sym_delete_expression] = STATE(1686), - [sym_lambda_expression] = STATE(1686), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3678), + [1099] = { + [sym__expression] = STATE(1689), + [sym_conditional_expression] = STATE(1689), + [sym_assignment_expression] = STATE(1689), + [sym_pointer_expression] = STATE(1689), + [sym_logical_expression] = STATE(1689), + [sym_bitwise_expression] = STATE(1689), + [sym_equality_expression] = STATE(1689), + [sym_relational_expression] = STATE(1689), + [sym_shift_expression] = STATE(1689), + [sym_math_expression] = STATE(1689), + [sym_cast_expression] = STATE(1689), + [sym_sizeof_expression] = STATE(1689), + [sym_subscript_expression] = STATE(1689), + [sym_call_expression] = STATE(1689), + [sym_field_expression] = STATE(1689), + [sym_compound_literal_expression] = STATE(1689), + [sym_parenthesized_expression] = STATE(1689), + [sym_concatenated_string] = STATE(1689), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1689), + [sym_new_expression] = STATE(1689), + [sym_delete_expression] = STATE(1689), + [sym_lambda_expression] = STATE(1689), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3684), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(3680), + [anon_sym_LBRACK] = ACTIONS(3686), [anon_sym_AMP] = ACTIONS(1089), [anon_sym_BANG] = ACTIONS(1091), [anon_sym_TILDE] = ACTIONS(1093), @@ -47863,20 +47924,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3678), - [sym_char_literal] = ACTIONS(3678), + [sym_number_literal] = ACTIONS(3684), + [sym_char_literal] = ACTIONS(3684), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3682), - [sym_false] = ACTIONS(3682), - [sym_null] = ACTIONS(3682), + [sym_true] = ACTIONS(3688), + [sym_false] = ACTIONS(3688), + [sym_null] = ACTIONS(3688), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3682), + [sym_nullptr] = ACTIONS(3688), }, - [1099] = { + [1100] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -47909,7 +47970,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3684), + [anon_sym_RBRACK] = ACTIONS(3690), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -47932,186 +47993,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1100] = { + [1101] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1101] = { - [sym__expression] = STATE(1688), - [sym_comma_expression] = STATE(1517), - [sym_conditional_expression] = STATE(1688), - [sym_assignment_expression] = STATE(1688), - [sym_pointer_expression] = STATE(1688), - [sym_logical_expression] = STATE(1688), - [sym_bitwise_expression] = STATE(1688), - [sym_equality_expression] = STATE(1688), - [sym_relational_expression] = STATE(1688), - [sym_shift_expression] = STATE(1688), - [sym_math_expression] = STATE(1688), - [sym_cast_expression] = STATE(1688), - [sym_sizeof_expression] = STATE(1688), - [sym_subscript_expression] = STATE(1688), - [sym_call_expression] = STATE(1688), - [sym_field_expression] = STATE(1688), - [sym_compound_literal_expression] = STATE(1688), - [sym_parenthesized_expression] = STATE(1688), - [sym_concatenated_string] = STATE(1688), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1688), - [sym_new_expression] = STATE(1688), - [sym_delete_expression] = STATE(1688), - [sym_lambda_expression] = STATE(1688), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3686), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1097), - [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3686), - [sym_char_literal] = ACTIONS(3686), - [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3688), - [sym_false] = ACTIONS(3688), - [sym_null] = ACTIONS(3688), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3688), - }, [1102] = { - [anon_sym_COMMA] = ACTIONS(3690), - [anon_sym_GT] = ACTIONS(3690), - [sym_identifier] = ACTIONS(3690), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(3690), - }, - [1103] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1097), - [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(2748), - }, - [1104] = { - [sym__expression] = STATE(1689), - [sym_conditional_expression] = STATE(1689), - [sym_assignment_expression] = STATE(1689), - [sym_pointer_expression] = STATE(1689), - [sym_logical_expression] = STATE(1689), - [sym_bitwise_expression] = STATE(1689), - [sym_equality_expression] = STATE(1689), - [sym_relational_expression] = STATE(1689), - [sym_shift_expression] = STATE(1689), - [sym_math_expression] = STATE(1689), - [sym_cast_expression] = STATE(1689), - [sym_sizeof_expression] = STATE(1689), - [sym_subscript_expression] = STATE(1689), - [sym_call_expression] = STATE(1689), - [sym_field_expression] = STATE(1689), - [sym_compound_literal_expression] = STATE(1689), - [sym_parenthesized_expression] = STATE(1689), - [sym_concatenated_string] = STATE(1689), + [sym__expression] = STATE(1691), + [sym_comma_expression] = STATE(1520), + [sym_conditional_expression] = STATE(1691), + [sym_assignment_expression] = STATE(1691), + [sym_pointer_expression] = STATE(1691), + [sym_logical_expression] = STATE(1691), + [sym_bitwise_expression] = STATE(1691), + [sym_equality_expression] = STATE(1691), + [sym_relational_expression] = STATE(1691), + [sym_shift_expression] = STATE(1691), + [sym_math_expression] = STATE(1691), + [sym_cast_expression] = STATE(1691), + [sym_sizeof_expression] = STATE(1691), + [sym_subscript_expression] = STATE(1691), + [sym_call_expression] = STATE(1691), + [sym_field_expression] = STATE(1691), + [sym_compound_literal_expression] = STATE(1691), + [sym_parenthesized_expression] = STATE(1691), + [sym_concatenated_string] = STATE(1691), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1689), - [sym_new_expression] = STATE(1689), - [sym_delete_expression] = STATE(1689), - [sym_lambda_expression] = STATE(1689), + [sym_template_function] = STATE(1691), + [sym_new_expression] = STATE(1691), + [sym_delete_expression] = STATE(1691), + [sym_lambda_expression] = STATE(1691), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), @@ -48141,88 +48089,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(3694), }, - [1105] = { - [sym__expression] = STATE(1690), - [sym_conditional_expression] = STATE(1690), - [sym_assignment_expression] = STATE(1690), - [sym_pointer_expression] = STATE(1690), - [sym_logical_expression] = STATE(1690), - [sym_bitwise_expression] = STATE(1690), - [sym_equality_expression] = STATE(1690), - [sym_relational_expression] = STATE(1690), - [sym_shift_expression] = STATE(1690), - [sym_math_expression] = STATE(1690), - [sym_cast_expression] = STATE(1690), - [sym_sizeof_expression] = STATE(1690), - [sym_subscript_expression] = STATE(1690), - [sym_call_expression] = STATE(1690), - [sym_field_expression] = STATE(1690), - [sym_compound_literal_expression] = STATE(1690), - [sym_parenthesized_expression] = STATE(1690), - [sym_concatenated_string] = STATE(1690), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1690), - [sym_new_expression] = STATE(1690), - [sym_delete_expression] = STATE(1690), - [sym_lambda_expression] = STATE(1690), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3696), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(3696), - [sym_char_literal] = ACTIONS(3696), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(3698), - [sym_false] = ACTIONS(3698), - [sym_null] = ACTIONS(3698), - [sym_identifier] = ACTIONS(1105), + [1103] = { + [anon_sym_COMMA] = ACTIONS(3696), + [anon_sym_GT] = ACTIONS(3696), + [sym_identifier] = ACTIONS(3696), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(3698), + [anon_sym_COLON_COLON] = ACTIONS(3696), }, - [1106] = { - [sym__expression] = STATE(1691), - [sym_conditional_expression] = STATE(1691), - [sym_assignment_expression] = STATE(1691), - [sym_pointer_expression] = STATE(1691), - [sym_logical_expression] = STATE(1691), - [sym_bitwise_expression] = STATE(1691), - [sym_equality_expression] = STATE(1691), - [sym_relational_expression] = STATE(1691), - [sym_shift_expression] = STATE(1691), - [sym_math_expression] = STATE(1691), - [sym_cast_expression] = STATE(1691), - [sym_sizeof_expression] = STATE(1691), - [sym_subscript_expression] = STATE(1691), - [sym_call_expression] = STATE(1691), - [sym_field_expression] = STATE(1691), - [sym_compound_literal_expression] = STATE(1691), - [sym_parenthesized_expression] = STATE(1691), - [sym_concatenated_string] = STATE(1691), + [1104] = { + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1691), - [sym_new_expression] = STATE(1691), - [sym_delete_expression] = STATE(1691), - [sym_lambda_expression] = STATE(1691), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3700), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48234,20 +48136,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3700), - [sym_char_literal] = ACTIONS(3700), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3702), - [sym_false] = ACTIONS(3702), - [sym_null] = ACTIONS(3702), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3702), + [sym_nullptr] = ACTIONS(2750), }, - [1107] = { + [1105] = { [sym__expression] = STATE(1692), [sym_conditional_expression] = STATE(1692), [sym_assignment_expression] = STATE(1692), @@ -48275,7 +48177,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3704), + [sym_raw_string_literal] = ACTIONS(3698), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48287,20 +48189,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3704), - [sym_char_literal] = ACTIONS(3704), + [sym_number_literal] = ACTIONS(3698), + [sym_char_literal] = ACTIONS(3698), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3706), - [sym_false] = ACTIONS(3706), - [sym_null] = ACTIONS(3706), + [sym_true] = ACTIONS(3700), + [sym_false] = ACTIONS(3700), + [sym_null] = ACTIONS(3700), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3706), + [sym_nullptr] = ACTIONS(3700), }, - [1108] = { + [1106] = { [sym__expression] = STATE(1693), [sym_conditional_expression] = STATE(1693), [sym_assignment_expression] = STATE(1693), @@ -48325,35 +48227,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1693), [sym_lambda_expression] = STATE(1693), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3708), - [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_STAR] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1089), - [anon_sym_BANG] = ACTIONS(1091), - [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_PLUS] = ACTIONS(1095), - [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_DASH_DASH] = ACTIONS(1097), - [anon_sym_PLUS_PLUS] = ACTIONS(1097), - [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3708), - [sym_char_literal] = ACTIONS(3708), - [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3710), - [sym_false] = ACTIONS(3710), - [sym_null] = ACTIONS(3710), + [sym_raw_string_literal] = ACTIONS(3702), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(3702), + [sym_char_literal] = ACTIONS(3702), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(3704), + [sym_false] = ACTIONS(3704), + [sym_null] = ACTIONS(3704), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1107), - [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3710), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(3704), }, - [1109] = { + [1107] = { [sym__expression] = STATE(1694), [sym_conditional_expression] = STATE(1694), [sym_assignment_expression] = STATE(1694), @@ -48381,7 +48283,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3712), + [sym_raw_string_literal] = ACTIONS(3706), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48393,20 +48295,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3712), - [sym_char_literal] = ACTIONS(3712), + [sym_number_literal] = ACTIONS(3706), + [sym_char_literal] = ACTIONS(3706), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3714), - [sym_false] = ACTIONS(3714), - [sym_null] = ACTIONS(3714), + [sym_true] = ACTIONS(3708), + [sym_false] = ACTIONS(3708), + [sym_null] = ACTIONS(3708), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3714), + [sym_nullptr] = ACTIONS(3708), }, - [1110] = { + [1108] = { [sym__expression] = STATE(1695), [sym_conditional_expression] = STATE(1695), [sym_assignment_expression] = STATE(1695), @@ -48434,7 +48336,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3716), + [sym_raw_string_literal] = ACTIONS(3710), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48446,20 +48348,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3716), - [sym_char_literal] = ACTIONS(3716), + [sym_number_literal] = ACTIONS(3710), + [sym_char_literal] = ACTIONS(3710), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3718), - [sym_false] = ACTIONS(3718), - [sym_null] = ACTIONS(3718), + [sym_true] = ACTIONS(3712), + [sym_false] = ACTIONS(3712), + [sym_null] = ACTIONS(3712), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3718), + [sym_nullptr] = ACTIONS(3712), }, - [1111] = { + [1109] = { [sym__expression] = STATE(1696), [sym_conditional_expression] = STATE(1696), [sym_assignment_expression] = STATE(1696), @@ -48487,7 +48389,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3720), + [sym_raw_string_literal] = ACTIONS(3714), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48499,20 +48401,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3720), - [sym_char_literal] = ACTIONS(3720), + [sym_number_literal] = ACTIONS(3714), + [sym_char_literal] = ACTIONS(3714), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3722), - [sym_false] = ACTIONS(3722), - [sym_null] = ACTIONS(3722), + [sym_true] = ACTIONS(3716), + [sym_false] = ACTIONS(3716), + [sym_null] = ACTIONS(3716), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3722), + [sym_nullptr] = ACTIONS(3716), }, - [1112] = { + [1110] = { [sym__expression] = STATE(1697), [sym_conditional_expression] = STATE(1697), [sym_assignment_expression] = STATE(1697), @@ -48540,7 +48442,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3724), + [sym_raw_string_literal] = ACTIONS(3718), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48552,20 +48454,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3724), - [sym_char_literal] = ACTIONS(3724), + [sym_number_literal] = ACTIONS(3718), + [sym_char_literal] = ACTIONS(3718), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3726), - [sym_false] = ACTIONS(3726), - [sym_null] = ACTIONS(3726), + [sym_true] = ACTIONS(3720), + [sym_false] = ACTIONS(3720), + [sym_null] = ACTIONS(3720), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3726), + [sym_nullptr] = ACTIONS(3720), }, - [1113] = { + [1111] = { [sym__expression] = STATE(1698), [sym_conditional_expression] = STATE(1698), [sym_assignment_expression] = STATE(1698), @@ -48593,7 +48495,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3728), + [sym_raw_string_literal] = ACTIONS(3722), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48605,20 +48507,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3728), - [sym_char_literal] = ACTIONS(3728), + [sym_number_literal] = ACTIONS(3722), + [sym_char_literal] = ACTIONS(3722), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3730), - [sym_false] = ACTIONS(3730), - [sym_null] = ACTIONS(3730), + [sym_true] = ACTIONS(3724), + [sym_false] = ACTIONS(3724), + [sym_null] = ACTIONS(3724), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3730), + [sym_nullptr] = ACTIONS(3724), }, - [1114] = { + [1112] = { [sym__expression] = STATE(1699), [sym_conditional_expression] = STATE(1699), [sym_assignment_expression] = STATE(1699), @@ -48646,7 +48548,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3732), + [sym_raw_string_literal] = ACTIONS(3726), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -48658,70 +48560,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3732), - [sym_char_literal] = ACTIONS(3732), + [sym_number_literal] = ACTIONS(3726), + [sym_char_literal] = ACTIONS(3726), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3734), - [sym_false] = ACTIONS(3734), - [sym_null] = ACTIONS(3734), + [sym_true] = ACTIONS(3728), + [sym_false] = ACTIONS(3728), + [sym_null] = ACTIONS(3728), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3734), + [sym_nullptr] = ACTIONS(3728), + }, + [1113] = { + [sym__expression] = STATE(1700), + [sym_conditional_expression] = STATE(1700), + [sym_assignment_expression] = STATE(1700), + [sym_pointer_expression] = STATE(1700), + [sym_logical_expression] = STATE(1700), + [sym_bitwise_expression] = STATE(1700), + [sym_equality_expression] = STATE(1700), + [sym_relational_expression] = STATE(1700), + [sym_shift_expression] = STATE(1700), + [sym_math_expression] = STATE(1700), + [sym_cast_expression] = STATE(1700), + [sym_sizeof_expression] = STATE(1700), + [sym_subscript_expression] = STATE(1700), + [sym_call_expression] = STATE(1700), + [sym_field_expression] = STATE(1700), + [sym_compound_literal_expression] = STATE(1700), + [sym_parenthesized_expression] = STATE(1700), + [sym_concatenated_string] = STATE(1700), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1700), + [sym_new_expression] = STATE(1700), + [sym_delete_expression] = STATE(1700), + [sym_lambda_expression] = STATE(1700), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3730), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1089), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_sizeof] = ACTIONS(1099), + [sym_number_literal] = ACTIONS(3730), + [sym_char_literal] = ACTIONS(3730), + [sym_string_literal] = ACTIONS(1101), + [sym_true] = ACTIONS(3732), + [sym_false] = ACTIONS(3732), + [sym_null] = ACTIONS(3732), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1109), + [sym_nullptr] = ACTIONS(3732), + }, + [1114] = { + [sym__expression] = STATE(1701), + [sym_conditional_expression] = STATE(1701), + [sym_assignment_expression] = STATE(1701), + [sym_pointer_expression] = STATE(1701), + [sym_logical_expression] = STATE(1701), + [sym_bitwise_expression] = STATE(1701), + [sym_equality_expression] = STATE(1701), + [sym_relational_expression] = STATE(1701), + [sym_shift_expression] = STATE(1701), + [sym_math_expression] = STATE(1701), + [sym_cast_expression] = STATE(1701), + [sym_sizeof_expression] = STATE(1701), + [sym_subscript_expression] = STATE(1701), + [sym_call_expression] = STATE(1701), + [sym_field_expression] = STATE(1701), + [sym_compound_literal_expression] = STATE(1701), + [sym_parenthesized_expression] = STATE(1701), + [sym_concatenated_string] = STATE(1701), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1701), + [sym_new_expression] = STATE(1701), + [sym_delete_expression] = STATE(1701), + [sym_lambda_expression] = STATE(1701), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3734), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1089), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_sizeof] = ACTIONS(1099), + [sym_number_literal] = ACTIONS(3734), + [sym_char_literal] = ACTIONS(3734), + [sym_string_literal] = ACTIONS(1101), + [sym_true] = ACTIONS(3736), + [sym_false] = ACTIONS(3736), + [sym_null] = ACTIONS(3736), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1109), + [sym_nullptr] = ACTIONS(3736), }, [1115] = { + [sym__expression] = STATE(1702), + [sym_conditional_expression] = STATE(1702), + [sym_assignment_expression] = STATE(1702), + [sym_pointer_expression] = STATE(1702), + [sym_logical_expression] = STATE(1702), + [sym_bitwise_expression] = STATE(1702), + [sym_equality_expression] = STATE(1702), + [sym_relational_expression] = STATE(1702), + [sym_shift_expression] = STATE(1702), + [sym_math_expression] = STATE(1702), + [sym_cast_expression] = STATE(1702), + [sym_sizeof_expression] = STATE(1702), + [sym_subscript_expression] = STATE(1702), + [sym_call_expression] = STATE(1702), + [sym_field_expression] = STATE(1702), + [sym_compound_literal_expression] = STATE(1702), + [sym_parenthesized_expression] = STATE(1702), + [sym_concatenated_string] = STATE(1702), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1702), + [sym_new_expression] = STATE(1702), + [sym_delete_expression] = STATE(1702), + [sym_lambda_expression] = STATE(1702), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3738), + [anon_sym_LPAREN] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1089), + [anon_sym_BANG] = ACTIONS(1091), + [anon_sym_TILDE] = ACTIONS(1093), + [anon_sym_PLUS] = ACTIONS(1095), + [anon_sym_DASH] = ACTIONS(1095), + [anon_sym_DASH_DASH] = ACTIONS(1097), + [anon_sym_PLUS_PLUS] = ACTIONS(1097), + [anon_sym_sizeof] = ACTIONS(1099), + [sym_number_literal] = ACTIONS(3738), + [sym_char_literal] = ACTIONS(3738), + [sym_string_literal] = ACTIONS(1101), + [sym_true] = ACTIONS(3740), + [sym_false] = ACTIONS(3740), + [sym_null] = ACTIONS(3740), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1107), + [anon_sym_delete] = ACTIONS(1109), + [sym_nullptr] = ACTIONS(3740), + }, + [1116] = { [sym_destructor_name] = STATE(428), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3736), + [sym_identifier] = ACTIONS(3742), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(702), }, - [1116] = { - [sym__abstract_declarator] = STATE(1701), - [sym_abstract_pointer_declarator] = STATE(1701), - [sym_abstract_function_declarator] = STATE(1701), - [sym_abstract_array_declarator] = STATE(1701), - [sym_parameter_list] = STATE(1119), - [sym_abstract_reference_declarator] = STATE(1701), + [1117] = { + [sym__abstract_declarator] = STATE(1704), + [sym_abstract_pointer_declarator] = STATE(1704), + [sym_abstract_function_declarator] = STATE(1704), + [sym_abstract_array_declarator] = STATE(1704), + [sym_parameter_list] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(1704), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_comment] = ACTIONS(49), }, - [1117] = { - [sym__abstract_declarator] = STATE(1702), - [sym_abstract_pointer_declarator] = STATE(1702), - [sym_abstract_function_declarator] = STATE(1702), - [sym_abstract_array_declarator] = STATE(1702), - [sym_parameter_list] = STATE(1119), - [sym_abstract_reference_declarator] = STATE(1702), + [1118] = { + [sym__abstract_declarator] = STATE(1705), + [sym_abstract_pointer_declarator] = STATE(1705), + [sym_abstract_function_declarator] = STATE(1705), + [sym_abstract_array_declarator] = STATE(1705), + [sym_parameter_list] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(1705), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_comment] = ACTIONS(49), }, - [1118] = { - [sym_parameter_list] = STATE(1704), + [1119] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3738), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(3744), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1119] = { - [sym_type_qualifier] = STATE(1706), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1706), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), + [1120] = { + [sym_type_qualifier] = STATE(1709), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1709), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -48729,72 +48790,72 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3740), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3742), - }, - [1120] = { - [sym_parameter_list] = STATE(1126), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(3744), + [anon_sym_DASH_GT] = ACTIONS(3746), [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3748), }, [1121] = { - [anon_sym_LPAREN] = ACTIONS(3746), - [anon_sym_COMMA] = ACTIONS(3746), - [anon_sym_RPAREN] = ACTIONS(3746), - [anon_sym_SEMI] = ACTIONS(3746), - [anon_sym_LBRACE] = ACTIONS(3746), - [anon_sym_LBRACK] = ACTIONS(3746), - [anon_sym_EQ] = ACTIONS(3746), - [anon_sym_const] = ACTIONS(3748), - [anon_sym_restrict] = ACTIONS(3746), - [anon_sym_volatile] = ACTIONS(3746), - [anon_sym__Atomic] = ACTIONS(3746), - [anon_sym_mutable] = ACTIONS(3746), - [anon_sym_explicit] = ACTIONS(3746), - [anon_sym_constexpr] = ACTIONS(3746), - [anon_sym_COLON] = ACTIONS(3746), - [anon_sym_GT] = ACTIONS(3746), - [anon_sym_DASH_GT] = ACTIONS(3746), + [sym_parameter_list] = STATE(1127), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(3750), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3746), }, [1122] = { - [sym__expression] = STATE(1708), - [sym_conditional_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_pointer_expression] = STATE(1708), - [sym_logical_expression] = STATE(1708), - [sym_bitwise_expression] = STATE(1708), - [sym_equality_expression] = STATE(1708), - [sym_relational_expression] = STATE(1708), - [sym_shift_expression] = STATE(1708), - [sym_math_expression] = STATE(1708), - [sym_cast_expression] = STATE(1708), - [sym_sizeof_expression] = STATE(1708), - [sym_subscript_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_field_expression] = STATE(1708), - [sym_compound_literal_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_concatenated_string] = STATE(1708), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1708), - [sym_new_expression] = STATE(1708), - [sym_delete_expression] = STATE(1708), - [sym_lambda_expression] = STATE(1708), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3750), + [anon_sym_LPAREN] = ACTIONS(3752), + [anon_sym_COMMA] = ACTIONS(3752), + [anon_sym_RPAREN] = ACTIONS(3752), + [anon_sym_SEMI] = ACTIONS(3752), + [anon_sym_LBRACE] = ACTIONS(3752), + [anon_sym_LBRACK] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(3752), + [anon_sym_const] = ACTIONS(3754), + [anon_sym_restrict] = ACTIONS(3752), + [anon_sym_volatile] = ACTIONS(3752), + [anon_sym__Atomic] = ACTIONS(3752), + [anon_sym_mutable] = ACTIONS(3752), + [anon_sym_explicit] = ACTIONS(3752), + [anon_sym_constexpr] = ACTIONS(3752), + [anon_sym_COLON] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3752), + [anon_sym_DASH_GT] = ACTIONS(3752), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3752), + }, + [1123] = { + [sym__expression] = STATE(1711), + [sym_conditional_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_pointer_expression] = STATE(1711), + [sym_logical_expression] = STATE(1711), + [sym_bitwise_expression] = STATE(1711), + [sym_equality_expression] = STATE(1711), + [sym_relational_expression] = STATE(1711), + [sym_shift_expression] = STATE(1711), + [sym_math_expression] = STATE(1711), + [sym_cast_expression] = STATE(1711), + [sym_sizeof_expression] = STATE(1711), + [sym_subscript_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_field_expression] = STATE(1711), + [sym_compound_literal_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_concatenated_string] = STATE(1711), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1711), + [sym_new_expression] = STATE(1711), + [sym_delete_expression] = STATE(1711), + [sym_lambda_expression] = STATE(1711), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3756), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3752), + [anon_sym_RBRACK] = ACTIONS(3758), [anon_sym_AMP] = ACTIONS(568), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), @@ -48803,25 +48864,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(3750), - [sym_char_literal] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3756), + [sym_char_literal] = ACTIONS(3756), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(3754), - [sym_false] = ACTIONS(3754), - [sym_null] = ACTIONS(3754), + [sym_true] = ACTIONS(3760), + [sym_false] = ACTIONS(3760), + [sym_null] = ACTIONS(3760), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(3754), + [sym_nullptr] = ACTIONS(3760), }, - [1123] = { + [1124] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(3752), + [anon_sym_RBRACK] = ACTIONS(3758), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -48857,16 +48918,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1124] = { - [sym_parameter_list] = STATE(1126), + [1125] = { + [sym_parameter_list] = STATE(1127), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(3762), [sym_comment] = ACTIONS(49), }, - [1125] = { - [sym__declaration_specifiers] = STATE(1709), + [1126] = { + [sym__declaration_specifiers] = STATE(1712), [sym_storage_class_specifier] = STATE(374), [sym_type_qualifier] = STATE(374), [sym__type_specifier] = STATE(367), @@ -48874,44 +48935,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(367), [sym_struct_specifier] = STATE(367), [sym_union_specifier] = STATE(367), - [sym__expression] = STATE(1708), - [sym_conditional_expression] = STATE(1708), - [sym_assignment_expression] = STATE(1708), - [sym_pointer_expression] = STATE(1708), - [sym_logical_expression] = STATE(1708), - [sym_bitwise_expression] = STATE(1708), - [sym_equality_expression] = STATE(1708), - [sym_relational_expression] = STATE(1708), - [sym_shift_expression] = STATE(1708), - [sym_math_expression] = STATE(1708), - [sym_cast_expression] = STATE(1708), - [sym_sizeof_expression] = STATE(1708), - [sym_subscript_expression] = STATE(1708), - [sym_call_expression] = STATE(1708), - [sym_field_expression] = STATE(1708), - [sym_compound_literal_expression] = STATE(1708), - [sym_parenthesized_expression] = STATE(1708), - [sym_concatenated_string] = STATE(1708), + [sym__expression] = STATE(1711), + [sym_conditional_expression] = STATE(1711), + [sym_assignment_expression] = STATE(1711), + [sym_pointer_expression] = STATE(1711), + [sym_logical_expression] = STATE(1711), + [sym_bitwise_expression] = STATE(1711), + [sym_equality_expression] = STATE(1711), + [sym_relational_expression] = STATE(1711), + [sym_shift_expression] = STATE(1711), + [sym_math_expression] = STATE(1711), + [sym_cast_expression] = STATE(1711), + [sym_sizeof_expression] = STATE(1711), + [sym_subscript_expression] = STATE(1711), + [sym_call_expression] = STATE(1711), + [sym_field_expression] = STATE(1711), + [sym_compound_literal_expression] = STATE(1711), + [sym_parenthesized_expression] = STATE(1711), + [sym_concatenated_string] = STATE(1711), [sym_macro_type_specifier] = STATE(367), [sym_class_specifier] = STATE(367), [sym_dependent_type] = STATE(367), [sym_template_type] = STATE(369), - [sym_template_function] = STATE(1708), - [sym_new_expression] = STATE(1708), - [sym_delete_expression] = STATE(1708), - [sym_lambda_expression] = STATE(1708), + [sym_template_function] = STATE(1711), + [sym_new_expression] = STATE(1711), + [sym_delete_expression] = STATE(1711), + [sym_lambda_expression] = STATE(1711), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(372), [sym_scoped_namespace_identifier] = STATE(373), [aux_sym__declaration_specifiers_repeat1] = STATE(374), [aux_sym_sized_type_specifier_repeat1] = STATE(375), - [sym_raw_string_literal] = ACTIONS(3750), + [sym_raw_string_literal] = ACTIONS(3756), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3752), + [anon_sym_RBRACK] = ACTIONS(3758), [anon_sym_static] = ACTIONS(154), [anon_sym_register] = ACTIONS(154), [anon_sym_inline] = ACTIONS(154), @@ -48937,12 +48998,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(3750), - [sym_char_literal] = ACTIONS(3750), + [sym_number_literal] = ACTIONS(3756), + [sym_char_literal] = ACTIONS(3756), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(3754), - [sym_false] = ACTIONS(3754), - [sym_null] = ACTIONS(3754), + [sym_true] = ACTIONS(3760), + [sym_false] = ACTIONS(3760), + [sym_null] = ACTIONS(3760), [sym_identifier] = ACTIONS(598), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(600), @@ -48951,15 +49012,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(606), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(3754), + [sym_nullptr] = ACTIONS(3760), }, - [1126] = { - [sym_type_qualifier] = STATE(1711), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1711), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1127] = { + [sym_type_qualifier] = STATE(1714), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1714), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -48967,20 +49028,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(2286), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3760), + [sym_noexcept] = ACTIONS(3766), }, - [1127] = { - [sym__type_specifier] = STATE(1712), - [sym_sized_type_specifier] = STATE(1712), - [sym_enum_specifier] = STATE(1712), - [sym_struct_specifier] = STATE(1712), - [sym_union_specifier] = STATE(1712), - [sym_macro_type_specifier] = STATE(1712), - [sym_class_specifier] = STATE(1712), - [sym_dependent_type] = STATE(1712), + [1128] = { + [sym__type_specifier] = STATE(1715), + [sym_sized_type_specifier] = STATE(1715), + [sym_enum_specifier] = STATE(1715), + [sym_struct_specifier] = STATE(1715), + [sym_union_specifier] = STATE(1715), + [sym_macro_type_specifier] = STATE(1715), + [sym_class_specifier] = STATE(1715), + [sym_dependent_type] = STATE(1715), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), @@ -48988,45 +49049,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(424), [anon_sym_long] = ACTIONS(424), [anon_sym_short] = ACTIONS(424), - [sym_primitive_type] = ACTIONS(3762), + [sym_primitive_type] = ACTIONS(3768), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(3762), + [sym_auto] = ACTIONS(3768), [anon_sym_typename] = ACTIONS(438), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1128] = { - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), - }, [1129] = { - [sym_type_qualifier] = STATE(1713), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1713), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), + }, + [1130] = { + [sym_type_qualifier] = STATE(1716), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1716), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -49034,99 +49095,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(2284), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3766), - }, - [1130] = { - [anon_sym_COMMA] = ACTIONS(3768), - [anon_sym_GT] = ACTIONS(3768), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(2286), [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3772), }, [1131] = { - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), - [anon_sym_RPAREN] = ACTIONS(3770), - [anon_sym_SEMI] = ACTIONS(3770), - [anon_sym_extern] = ACTIONS(3772), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3770), - [anon_sym_static] = ACTIONS(3772), - [anon_sym_register] = ACTIONS(3772), - [anon_sym_inline] = ACTIONS(3772), - [anon_sym_const] = ACTIONS(3772), - [anon_sym_restrict] = ACTIONS(3772), - [anon_sym_volatile] = ACTIONS(3772), - [anon_sym__Atomic] = ACTIONS(3772), - [anon_sym_mutable] = ACTIONS(3772), - [anon_sym_explicit] = ACTIONS(3772), - [anon_sym_constexpr] = ACTIONS(3772), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_AMP] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3770), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_GT] = ACTIONS(3770), - [sym_identifier] = ACTIONS(3772), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(3770), - [sym_operator_name] = ACTIONS(3770), - }, - [1132] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), [anon_sym_COMMA] = ACTIONS(3774), - [anon_sym_GT] = ACTIONS(3768), + [anon_sym_GT] = ACTIONS(3774), [sym_comment] = ACTIONS(49), }, + [1132] = { + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3778), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [sym_operator_name] = ACTIONS(3776), + }, [1133] = { - [sym_parameter_list] = STATE(1126), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(3777), + [aux_sym_template_argument_list_repeat1] = STATE(1133), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_GT] = ACTIONS(3774), [sym_comment] = ACTIONS(49), }, [1134] = { - [sym__type_specifier] = STATE(1715), - [sym_sized_type_specifier] = STATE(1715), - [sym_enum_specifier] = STATE(1715), - [sym_struct_specifier] = STATE(1715), - [sym_union_specifier] = STATE(1715), - [sym_macro_type_specifier] = STATE(1715), - [sym_class_specifier] = STATE(1715), - [sym_dependent_type] = STATE(1715), + [sym_parameter_list] = STATE(1127), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_COMMA] = ACTIONS(3783), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(3783), + [sym_comment] = ACTIONS(49), + }, + [1135] = { + [sym__type_specifier] = STATE(1718), + [sym_sized_type_specifier] = STATE(1718), + [sym_enum_specifier] = STATE(1718), + [sym_struct_specifier] = STATE(1718), + [sym_union_specifier] = STATE(1718), + [sym_macro_type_specifier] = STATE(1718), + [sym_class_specifier] = STATE(1718), + [sym_dependent_type] = STATE(1718), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1716), - [anon_sym_unsigned] = ACTIONS(3779), - [anon_sym_long] = ACTIONS(3779), - [anon_sym_short] = ACTIONS(3779), - [sym_primitive_type] = ACTIONS(3781), + [aux_sym_sized_type_specifier_repeat1] = STATE(1719), + [anon_sym_unsigned] = ACTIONS(3785), + [anon_sym_long] = ACTIONS(3785), + [anon_sym_short] = ACTIONS(3785), + [sym_primitive_type] = ACTIONS(3787), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(3781), - [anon_sym_typename] = ACTIONS(3783), + [sym_auto] = ACTIONS(3787), + [anon_sym_typename] = ACTIONS(3789), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1135] = { + [1136] = { [sym__declarator] = STATE(153), - [sym__abstract_declarator] = STATE(1701), + [sym__abstract_declarator] = STATE(1704), [sym_pointer_declarator] = STATE(153), - [sym_abstract_pointer_declarator] = STATE(1701), + [sym_abstract_pointer_declarator] = STATE(1704), [sym_function_declarator] = STATE(153), - [sym_abstract_function_declarator] = STATE(1701), + [sym_abstract_function_declarator] = STATE(1704), [sym_array_declarator] = STATE(153), - [sym_abstract_array_declarator] = STATE(1701), - [sym_parameter_list] = STATE(1119), + [sym_abstract_array_declarator] = STATE(1704), + [sym_parameter_list] = STATE(1120), [sym_reference_declarator] = STATE(153), - [sym_abstract_reference_declarator] = STATE(1701), + [sym_abstract_reference_declarator] = STATE(1704), [sym_template_type] = STATE(46), [sym_template_function] = STATE(153), [sym_destructor_name] = STATE(153), @@ -49134,29 +49195,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2307), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2311), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), [sym_operator_name] = ACTIONS(259), }, - [1136] = { + [1137] = { [sym__declarator] = STATE(154), - [sym__abstract_declarator] = STATE(1702), + [sym__abstract_declarator] = STATE(1705), [sym_pointer_declarator] = STATE(154), - [sym_abstract_pointer_declarator] = STATE(1702), + [sym_abstract_pointer_declarator] = STATE(1705), [sym_function_declarator] = STATE(154), - [sym_abstract_function_declarator] = STATE(1702), + [sym_abstract_function_declarator] = STATE(1705), [sym_array_declarator] = STATE(154), - [sym_abstract_array_declarator] = STATE(1702), - [sym_parameter_list] = STATE(1119), + [sym_abstract_array_declarator] = STATE(1705), + [sym_parameter_list] = STATE(1120), [sym_reference_declarator] = STATE(154), - [sym_abstract_reference_declarator] = STATE(1702), + [sym_abstract_reference_declarator] = STATE(1705), [sym_template_type] = STATE(46), [sym_template_function] = STATE(154), [sym_destructor_name] = STATE(154), @@ -49164,19 +49225,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(1162), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(2307), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2307), - [anon_sym_AMP_AMP] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_AMP_AMP] = ACTIONS(2311), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), [sym_operator_name] = ACTIONS(261), }, - [1137] = { - [sym_parameter_list] = STATE(1144), + [1138] = { + [sym_parameter_list] = STATE(1145), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(837), [anon_sym_LBRACE] = ACTIONS(837), @@ -49185,8 +49246,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(837), [sym_comment] = ACTIONS(49), }, - [1138] = { - [sym_parameter_list] = STATE(1144), + [1139] = { + [sym_parameter_list] = STATE(1145), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(839), [anon_sym_LBRACE] = ACTIONS(839), @@ -49195,14 +49256,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(839), [sym_comment] = ACTIONS(49), }, - [1139] = { - [sym_destructor_name] = STATE(1717), + [1140] = { + [sym_destructor_name] = STATE(1720), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(841), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3785), + [sym_operator_name] = ACTIONS(3791), }, - [1140] = { + [1141] = { [anon_sym_LPAREN] = ACTIONS(518), [anon_sym_COMMA] = ACTIONS(518), [anon_sym_LBRACE] = ACTIONS(518), @@ -49212,7 +49273,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(518), [sym_comment] = ACTIONS(49), }, - [1141] = { + [1142] = { [sym__declaration_specifiers] = STATE(344), [sym_storage_class_specifier] = STATE(346), [sym_type_qualifier] = STATE(346), @@ -49222,40 +49283,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_struct_specifier] = STATE(345), [sym_union_specifier] = STATE(345), [sym_parameter_declaration] = STATE(341), - [sym__expression] = STATE(1718), - [sym_conditional_expression] = STATE(1718), - [sym_assignment_expression] = STATE(1718), - [sym_pointer_expression] = STATE(1718), - [sym_logical_expression] = STATE(1718), - [sym_bitwise_expression] = STATE(1718), - [sym_equality_expression] = STATE(1718), - [sym_relational_expression] = STATE(1718), - [sym_shift_expression] = STATE(1718), - [sym_math_expression] = STATE(1718), - [sym_cast_expression] = STATE(1718), - [sym_sizeof_expression] = STATE(1718), - [sym_subscript_expression] = STATE(1718), - [sym_call_expression] = STATE(1718), - [sym_field_expression] = STATE(1718), - [sym_compound_literal_expression] = STATE(1718), - [sym_parenthesized_expression] = STATE(1718), - [sym_initializer_list] = STATE(1719), - [sym_concatenated_string] = STATE(1718), + [sym__expression] = STATE(1721), + [sym_conditional_expression] = STATE(1721), + [sym_assignment_expression] = STATE(1721), + [sym_pointer_expression] = STATE(1721), + [sym_logical_expression] = STATE(1721), + [sym_bitwise_expression] = STATE(1721), + [sym_equality_expression] = STATE(1721), + [sym_relational_expression] = STATE(1721), + [sym_shift_expression] = STATE(1721), + [sym_math_expression] = STATE(1721), + [sym_cast_expression] = STATE(1721), + [sym_sizeof_expression] = STATE(1721), + [sym_subscript_expression] = STATE(1721), + [sym_call_expression] = STATE(1721), + [sym_field_expression] = STATE(1721), + [sym_compound_literal_expression] = STATE(1721), + [sym_parenthesized_expression] = STATE(1721), + [sym_initializer_list] = STATE(1722), + [sym_concatenated_string] = STATE(1721), [sym_macro_type_specifier] = STATE(345), [sym_class_specifier] = STATE(345), [sym_dependent_type] = STATE(345), [sym_template_type] = STATE(651), - [sym_template_function] = STATE(1718), - [sym_new_expression] = STATE(1718), - [sym_delete_expression] = STATE(1718), - [sym_lambda_expression] = STATE(1718), + [sym_template_function] = STATE(1721), + [sym_new_expression] = STATE(1721), + [sym_delete_expression] = STATE(1721), + [sym_lambda_expression] = STATE(1721), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(652), [aux_sym__declaration_specifiers_repeat1] = STATE(346), [aux_sym_sized_type_specifier_repeat1] = STATE(347), - [sym_raw_string_literal] = ACTIONS(3787), + [sym_raw_string_literal] = ACTIONS(3793), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_DOT_DOT_DOT] = ACTIONS(554), [anon_sym_RPAREN] = ACTIONS(1251), @@ -49288,12 +49349,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3787), - [sym_char_literal] = ACTIONS(3787), + [sym_number_literal] = ACTIONS(3793), + [sym_char_literal] = ACTIONS(3793), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3789), - [sym_false] = ACTIONS(3789), - [sym_null] = ACTIONS(3789), + [sym_true] = ACTIONS(3795), + [sym_false] = ACTIONS(3795), + [sym_null] = ACTIONS(3795), [sym_identifier] = ACTIONS(1255), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), @@ -49302,46 +49363,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1257), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3789), + [sym_nullptr] = ACTIONS(3795), }, - [1142] = { - [sym__expression] = STATE(1722), - [sym_conditional_expression] = STATE(1722), - [sym_assignment_expression] = STATE(1722), - [sym_pointer_expression] = STATE(1722), - [sym_logical_expression] = STATE(1722), - [sym_bitwise_expression] = STATE(1722), - [sym_equality_expression] = STATE(1722), - [sym_relational_expression] = STATE(1722), - [sym_shift_expression] = STATE(1722), - [sym_math_expression] = STATE(1722), - [sym_cast_expression] = STATE(1722), - [sym_sizeof_expression] = STATE(1722), - [sym_subscript_expression] = STATE(1722), - [sym_call_expression] = STATE(1722), - [sym_field_expression] = STATE(1722), - [sym_compound_literal_expression] = STATE(1722), - [sym_parenthesized_expression] = STATE(1722), - [sym_initializer_list] = STATE(1723), - [sym_initializer_pair] = STATE(1723), + [1143] = { + [sym__expression] = STATE(1725), + [sym_conditional_expression] = STATE(1725), + [sym_assignment_expression] = STATE(1725), + [sym_pointer_expression] = STATE(1725), + [sym_logical_expression] = STATE(1725), + [sym_bitwise_expression] = STATE(1725), + [sym_equality_expression] = STATE(1725), + [sym_relational_expression] = STATE(1725), + [sym_shift_expression] = STATE(1725), + [sym_math_expression] = STATE(1725), + [sym_cast_expression] = STATE(1725), + [sym_sizeof_expression] = STATE(1725), + [sym_subscript_expression] = STATE(1725), + [sym_call_expression] = STATE(1725), + [sym_field_expression] = STATE(1725), + [sym_compound_literal_expression] = STATE(1725), + [sym_parenthesized_expression] = STATE(1725), + [sym_initializer_list] = STATE(1726), + [sym_initializer_pair] = STATE(1726), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1722), + [sym_concatenated_string] = STATE(1725), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1722), - [sym_new_expression] = STATE(1722), - [sym_delete_expression] = STATE(1722), - [sym_lambda_expression] = STATE(1722), + [sym_template_function] = STATE(1725), + [sym_new_expression] = STATE(1725), + [sym_delete_expression] = STATE(1725), + [sym_lambda_expression] = STATE(1725), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3791), + [sym_raw_string_literal] = ACTIONS(3797), [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(3793), + [anon_sym_COMMA] = ACTIONS(3799), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(3795), + [anon_sym_RBRACE] = ACTIONS(3801), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1325), @@ -49353,78 +49414,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3791), - [sym_char_literal] = ACTIONS(3791), + [sym_number_literal] = ACTIONS(3797), + [sym_char_literal] = ACTIONS(3797), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3797), - [sym_false] = ACTIONS(3797), - [sym_null] = ACTIONS(3797), + [sym_true] = ACTIONS(3803), + [sym_false] = ACTIONS(3803), + [sym_null] = ACTIONS(3803), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3797), + [sym_nullptr] = ACTIONS(3803), }, - [1143] = { - [sym__expression] = STATE(1733), - [sym_conditional_expression] = STATE(1733), - [sym_assignment_expression] = STATE(1733), - [sym_pointer_expression] = STATE(1733), - [sym_logical_expression] = STATE(1733), - [sym_bitwise_expression] = STATE(1733), - [sym_equality_expression] = STATE(1733), - [sym_relational_expression] = STATE(1733), - [sym_shift_expression] = STATE(1733), - [sym_math_expression] = STATE(1733), - [sym_cast_expression] = STATE(1733), - [sym_sizeof_expression] = STATE(1733), - [sym_subscript_expression] = STATE(1733), - [sym_call_expression] = STATE(1733), - [sym_field_expression] = STATE(1733), - [sym_compound_literal_expression] = STATE(1733), - [sym_parenthesized_expression] = STATE(1733), + [1144] = { + [sym__expression] = STATE(1736), + [sym_conditional_expression] = STATE(1736), + [sym_assignment_expression] = STATE(1736), + [sym_pointer_expression] = STATE(1736), + [sym_logical_expression] = STATE(1736), + [sym_bitwise_expression] = STATE(1736), + [sym_equality_expression] = STATE(1736), + [sym_relational_expression] = STATE(1736), + [sym_shift_expression] = STATE(1736), + [sym_math_expression] = STATE(1736), + [sym_cast_expression] = STATE(1736), + [sym_sizeof_expression] = STATE(1736), + [sym_subscript_expression] = STATE(1736), + [sym_call_expression] = STATE(1736), + [sym_field_expression] = STATE(1736), + [sym_compound_literal_expression] = STATE(1736), + [sym_parenthesized_expression] = STATE(1736), [sym_initializer_list] = STATE(674), - [sym_concatenated_string] = STATE(1733), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1733), - [sym_new_expression] = STATE(1733), - [sym_delete_expression] = STATE(1733), - [sym_lambda_expression] = STATE(1733), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3799), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(3799), - [sym_char_literal] = ACTIONS(3799), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(3817), - [sym_false] = ACTIONS(3817), - [sym_null] = ACTIONS(3817), + [sym_concatenated_string] = STATE(1736), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1736), + [sym_new_expression] = STATE(1736), + [sym_delete_expression] = STATE(1736), + [sym_lambda_expression] = STATE(1736), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3805), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(3805), + [sym_char_literal] = ACTIONS(3805), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(3823), + [sym_false] = ACTIONS(3823), + [sym_null] = ACTIONS(3823), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(3817), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(3823), }, - [1144] = { - [sym_type_qualifier] = STATE(1735), - [sym_trailing_return_type] = STATE(1735), - [aux_sym_function_declarator_repeat1] = STATE(1735), + [1145] = { + [sym_type_qualifier] = STATE(1738), + [sym_trailing_return_type] = STATE(1738), + [aux_sym_function_declarator_repeat1] = STATE(1738), [anon_sym_LPAREN] = ACTIONS(610), [anon_sym_COMMA] = ACTIONS(610), [anon_sym_LBRACE] = ACTIONS(610), @@ -49438,18 +49499,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_GT] = ACTIONS(610), - [anon_sym_DASH_GT] = ACTIONS(3823), + [anon_sym_DASH_GT] = ACTIONS(3829), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3825), + [sym_noexcept] = ACTIONS(3831), }, - [1145] = { - [sym_destructor_name] = STATE(1736), + [1146] = { + [sym_destructor_name] = STATE(1739), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(849), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(3827), + [sym_operator_name] = ACTIONS(3833), }, - [1146] = { + [1147] = { [anon_sym_LPAREN] = ACTIONS(704), [anon_sym_COMMA] = ACTIONS(704), [anon_sym_LBRACE] = ACTIONS(704), @@ -49458,25 +49519,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(704), [sym_comment] = ACTIONS(49), }, - [1147] = { - [sym_storage_class_specifier] = STATE(1147), - [sym_type_qualifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(1147), + [1148] = { + [sym_storage_class_specifier] = STATE(1148), + [sym_type_qualifier] = STATE(1148), + [aux_sym__declaration_specifiers_repeat1] = STATE(1148), [anon_sym_LPAREN] = ACTIONS(798), [anon_sym_COMMA] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), [anon_sym_STAR] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -49486,52 +49547,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(798), [sym_operator_name] = ACTIONS(798), }, - [1148] = { - [anon_sym_COMMA] = ACTIONS(3829), - [anon_sym_GT] = ACTIONS(3829), - [sym_comment] = ACTIONS(49), - }, [1149] = { - [anon_sym_extern] = ACTIONS(3831), - [anon_sym_static] = ACTIONS(3831), - [anon_sym_register] = ACTIONS(3831), - [anon_sym_inline] = ACTIONS(3831), - [anon_sym_const] = ACTIONS(3831), - [anon_sym_restrict] = ACTIONS(3831), - [anon_sym_volatile] = ACTIONS(3831), - [anon_sym__Atomic] = ACTIONS(3831), - [anon_sym_mutable] = ACTIONS(3831), - [anon_sym_explicit] = ACTIONS(3831), - [anon_sym_constexpr] = ACTIONS(3831), - [anon_sym_unsigned] = ACTIONS(3831), - [anon_sym_long] = ACTIONS(3831), - [anon_sym_short] = ACTIONS(3831), - [sym_primitive_type] = ACTIONS(3831), - [anon_sym_enum] = ACTIONS(3831), - [anon_sym_struct] = ACTIONS(3831), - [anon_sym_union] = ACTIONS(3831), - [sym_identifier] = ACTIONS(3831), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3831), - [sym_auto] = ACTIONS(3831), - [anon_sym_typename] = ACTIONS(3831), - [anon_sym_COLON_COLON] = ACTIONS(3833), - }, - [1150] = { - [aux_sym_template_parameter_list_repeat1] = STATE(1150), [anon_sym_COMMA] = ACTIONS(3835), - [anon_sym_GT] = ACTIONS(3829), + [anon_sym_GT] = ACTIONS(3835), [sym_comment] = ACTIONS(49), }, + [1150] = { + [anon_sym_extern] = ACTIONS(3837), + [anon_sym_static] = ACTIONS(3837), + [anon_sym_register] = ACTIONS(3837), + [anon_sym_inline] = ACTIONS(3837), + [anon_sym_const] = ACTIONS(3837), + [anon_sym_restrict] = ACTIONS(3837), + [anon_sym_volatile] = ACTIONS(3837), + [anon_sym__Atomic] = ACTIONS(3837), + [anon_sym_mutable] = ACTIONS(3837), + [anon_sym_explicit] = ACTIONS(3837), + [anon_sym_constexpr] = ACTIONS(3837), + [anon_sym_unsigned] = ACTIONS(3837), + [anon_sym_long] = ACTIONS(3837), + [anon_sym_short] = ACTIONS(3837), + [sym_primitive_type] = ACTIONS(3837), + [anon_sym_enum] = ACTIONS(3837), + [anon_sym_struct] = ACTIONS(3837), + [anon_sym_union] = ACTIONS(3837), + [sym_identifier] = ACTIONS(3837), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3837), + [sym_auto] = ACTIONS(3837), + [anon_sym_typename] = ACTIONS(3837), + [anon_sym_COLON_COLON] = ACTIONS(3839), + }, [1151] = { - [sym_storage_class_specifier] = STATE(1147), - [sym_type_qualifier] = STATE(1147), - [aux_sym__declaration_specifiers_repeat1] = STATE(1147), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), + [aux_sym_template_parameter_list_repeat1] = STATE(1151), + [anon_sym_COMMA] = ACTIONS(3841), + [anon_sym_GT] = ACTIONS(3835), + [sym_comment] = ACTIONS(49), + }, + [1152] = { + [sym_storage_class_specifier] = STATE(1148), + [sym_type_qualifier] = STATE(1148), + [aux_sym__declaration_specifiers_repeat1] = STATE(1148), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -49542,68 +49603,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_GT] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_GT] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, - [1152] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [1153] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1154), - [anon_sym_unsigned] = ACTIONS(2342), - [anon_sym_long] = ACTIONS(2342), - [anon_sym_short] = ACTIONS(2342), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1155), + [anon_sym_unsigned] = ACTIONS(2344), + [anon_sym_long] = ACTIONS(2344), + [anon_sym_short] = ACTIONS(2344), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(1835), + [anon_sym_union] = ACTIONS(1837), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1837), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2346), + [anon_sym_class] = ACTIONS(1839), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2348), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1153] = { - [sym__abstract_declarator] = STATE(1739), - [sym_abstract_pointer_declarator] = STATE(1739), - [sym_abstract_function_declarator] = STATE(1739), - [sym_abstract_array_declarator] = STATE(1739), - [sym_parameter_list] = STATE(1740), - [sym_abstract_reference_declarator] = STATE(1739), + [1154] = { + [sym__abstract_declarator] = STATE(1742), + [sym_abstract_pointer_declarator] = STATE(1742), + [sym_abstract_function_declarator] = STATE(1742), + [sym_abstract_array_declarator] = STATE(1742), + [sym_parameter_list] = STATE(1743), + [sym_abstract_reference_declarator] = STATE(1742), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(3844), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_AMP_AMP] = ACTIONS(3848), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [1154] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1741), + [1155] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1744), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), @@ -49615,53 +49676,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(3844), - [anon_sym_long] = ACTIONS(3844), - [anon_sym_short] = ACTIONS(3844), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(3850), + [anon_sym_long] = ACTIONS(3850), + [anon_sym_short] = ACTIONS(3850), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [1155] = { - [sym_type_qualifier] = STATE(1155), - [sym_trailing_return_type] = STATE(1155), - [aux_sym_function_declarator_repeat1] = STATE(1155), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(3846), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3849), - }, [1156] = { - [sym_storage_class_specifier] = STATE(1156), [sym_type_qualifier] = STATE(1156), - [aux_sym__declaration_specifiers_repeat1] = STATE(1156), + [sym_trailing_return_type] = STATE(1156), + [aux_sym_function_declarator_repeat1] = STATE(1156), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(3852), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3855), + }, + [1157] = { + [sym_storage_class_specifier] = STATE(1157), + [sym_type_qualifier] = STATE(1157), + [aux_sym__declaration_specifiers_repeat1] = STATE(1157), [anon_sym_LPAREN] = ACTIONS(798), [anon_sym_SEMI] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), [anon_sym_STAR] = ACTIONS(798), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -49670,14 +49731,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(798), [sym_operator_name] = ACTIONS(798), }, - [1157] = { - [sym_storage_class_specifier] = STATE(1156), - [sym_type_qualifier] = STATE(1156), - [aux_sym__declaration_specifiers_repeat1] = STATE(1156), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1809), + [1158] = { + [sym_storage_class_specifier] = STATE(1157), + [sym_type_qualifier] = STATE(1157), + [aux_sym__declaration_specifiers_repeat1] = STATE(1157), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_SEMI] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -49688,58 +49749,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), - }, - [1158] = { - [sym__abstract_declarator] = STATE(1742), - [sym_abstract_pointer_declarator] = STATE(1742), - [sym_abstract_function_declarator] = STATE(1742), - [sym_abstract_array_declarator] = STATE(1742), - [sym_parameter_list] = STATE(1161), - [sym_abstract_reference_declarator] = STATE(1742), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2357), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, [1159] = { - [sym__abstract_declarator] = STATE(1743), - [sym_abstract_pointer_declarator] = STATE(1743), - [sym_abstract_function_declarator] = STATE(1743), - [sym_abstract_array_declarator] = STATE(1743), - [sym_parameter_list] = STATE(1161), - [sym_abstract_reference_declarator] = STATE(1743), + [sym__abstract_declarator] = STATE(1745), + [sym_abstract_pointer_declarator] = STATE(1745), + [sym_abstract_function_declarator] = STATE(1745), + [sym_abstract_array_declarator] = STATE(1745), + [sym_parameter_list] = STATE(1162), + [sym_abstract_reference_declarator] = STATE(1745), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2363), [sym_comment] = ACTIONS(49), }, [1160] = { - [sym_parameter_list] = STATE(1744), - [anon_sym_LPAREN] = ACTIONS(206), + [sym__abstract_declarator] = STATE(1746), + [sym_abstract_pointer_declarator] = STATE(1746), + [sym_abstract_function_declarator] = STATE(1746), + [sym_abstract_array_declarator] = STATE(1746), + [sym_parameter_list] = STATE(1162), + [sym_abstract_reference_declarator] = STATE(1746), + [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2359), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2363), [sym_comment] = ACTIONS(49), }, [1161] = { - [sym_type_qualifier] = STATE(1746), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1746), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), + [sym_parameter_list] = STATE(1747), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(2280), [anon_sym_LBRACK] = ACTIONS(2282), + [sym_comment] = ACTIONS(49), + }, + [1162] = { + [sym_type_qualifier] = STATE(1749), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1749), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -49747,115 +49808,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3858), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3854), - }, - [1162] = { - [ts_builtin_sym_end] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3858), - [sym_preproc_directive] = ACTIONS(3858), - [anon_sym_typedef] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym_RBRACE] = ACTIONS(3856), - [anon_sym_STAR] = ACTIONS(3856), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_explicit] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_unsigned] = ACTIONS(3858), - [anon_sym_long] = ACTIONS(3858), - [anon_sym_short] = ACTIONS(3858), - [sym_primitive_type] = ACTIONS(3858), - [anon_sym_enum] = ACTIONS(3858), - [anon_sym_struct] = ACTIONS(3858), - [anon_sym_union] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_TILDE] = ACTIONS(3856), - [sym_identifier] = ACTIONS(3858), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3858), - [sym_auto] = ACTIONS(3858), - [anon_sym_typename] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_namespace] = ACTIONS(3858), - [anon_sym_using] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3856), - [sym_operator_name] = ACTIONS(3856), + [sym_noexcept] = ACTIONS(3860), }, [1163] = { - [sym__abstract_declarator] = STATE(1747), - [sym_abstract_pointer_declarator] = STATE(1747), - [sym_abstract_function_declarator] = STATE(1747), - [sym_abstract_array_declarator] = STATE(1747), - [sym_parameter_list] = STATE(1161), - [sym_abstract_reference_declarator] = STATE(1747), + [ts_builtin_sym_end] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3862), + [anon_sym_TILDE] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3864), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3864), + [sym_auto] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3862), + [sym_operator_name] = ACTIONS(3862), + }, + [1164] = { + [sym__abstract_declarator] = STATE(1750), + [sym_abstract_pointer_declarator] = STATE(1750), + [sym_abstract_function_declarator] = STATE(1750), + [sym_abstract_array_declarator] = STATE(1750), + [sym_parameter_list] = STATE(1162), + [sym_abstract_reference_declarator] = STATE(1750), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2363), [sym_comment] = ACTIONS(49), }, - [1164] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1164), + [1165] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1165), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(3860), - [anon_sym_long] = ACTIONS(3860), - [anon_sym_short] = ACTIONS(3860), + [anon_sym_unsigned] = ACTIONS(3866), + [anon_sym_long] = ACTIONS(3866), + [anon_sym_short] = ACTIONS(3866), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [1165] = { - [anon_sym_COMMA] = ACTIONS(3863), - [anon_sym_RBRACK] = ACTIONS(3863), - [sym_comment] = ACTIONS(49), - }, [1166] = { - [anon_sym_LPAREN] = ACTIONS(3865), - [anon_sym_LBRACE] = ACTIONS(3865), - [anon_sym_EQ] = ACTIONS(3865), + [anon_sym_COMMA] = ACTIONS(3869), + [anon_sym_RBRACK] = ACTIONS(3869), [sym_comment] = ACTIONS(49), }, [1167] = { - [aux_sym_structured_binding_declarator_repeat1] = STATE(1167), - [anon_sym_COMMA] = ACTIONS(3867), - [anon_sym_RBRACK] = ACTIONS(3863), + [anon_sym_LPAREN] = ACTIONS(3871), + [anon_sym_LBRACE] = ACTIONS(3871), + [anon_sym_EQ] = ACTIONS(3871), [sym_comment] = ACTIONS(49), }, [1168] = { + [aux_sym_structured_binding_declarator_repeat1] = STATE(1168), + [anon_sym_COMMA] = ACTIONS(3873), + [anon_sym_RBRACK] = ACTIONS(3869), + [sym_comment] = ACTIONS(49), + }, + [1169] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3870), + [sym_identifier] = ACTIONS(3876), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, - [1169] = { + [1170] = { [anon_sym_LPAREN] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(444), [anon_sym_RPAREN] = ACTIONS(444), [anon_sym_extern] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2720), [anon_sym_LBRACK] = ACTIONS(444), [anon_sym_EQ] = ACTIONS(706), [anon_sym_static] = ACTIONS(449), @@ -49879,7 +49940,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(704), [anon_sym_CARET_EQ] = ACTIONS(704), [anon_sym_PIPE_EQ] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), [anon_sym_PIPE_PIPE] = ACTIONS(704), [anon_sym_AMP_AMP] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(706), @@ -49906,13 +49967,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(447), [sym_operator_name] = ACTIONS(447), }, - [1170] = { + [1171] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COMMA] = ACTIONS(509), [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_extern] = ACTIONS(514), [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2729), [anon_sym_LBRACK] = ACTIONS(509), [anon_sym_EQ] = ACTIONS(520), [anon_sym_static] = ACTIONS(514), @@ -49936,7 +49997,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(518), [anon_sym_CARET_EQ] = ACTIONS(518), [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), [anon_sym_PIPE_PIPE] = ACTIONS(518), [anon_sym_AMP_AMP] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(520), @@ -49944,7 +50005,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(512), [anon_sym_EQ_EQ] = ACTIONS(518), [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), [anon_sym_GT] = ACTIONS(520), [anon_sym_LT_EQ] = ACTIONS(518), [anon_sym_GT_EQ] = ACTIONS(518), @@ -49963,36 +50024,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(516), [sym_operator_name] = ACTIONS(512), }, - [1171] = { - [sym__expression] = STATE(1749), - [sym_conditional_expression] = STATE(1749), - [sym_assignment_expression] = STATE(1749), - [sym_pointer_expression] = STATE(1749), - [sym_logical_expression] = STATE(1749), - [sym_bitwise_expression] = STATE(1749), - [sym_equality_expression] = STATE(1749), - [sym_relational_expression] = STATE(1749), - [sym_shift_expression] = STATE(1749), - [sym_math_expression] = STATE(1749), - [sym_cast_expression] = STATE(1749), - [sym_sizeof_expression] = STATE(1749), - [sym_subscript_expression] = STATE(1749), - [sym_call_expression] = STATE(1749), - [sym_field_expression] = STATE(1749), - [sym_compound_literal_expression] = STATE(1749), - [sym_parenthesized_expression] = STATE(1749), - [sym_initializer_list] = STATE(1750), - [sym_concatenated_string] = STATE(1749), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1749), - [sym_new_expression] = STATE(1749), - [sym_delete_expression] = STATE(1749), - [sym_lambda_expression] = STATE(1749), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3872), + [1172] = { + [sym__expression] = STATE(1752), + [sym_conditional_expression] = STATE(1752), + [sym_assignment_expression] = STATE(1752), + [sym_pointer_expression] = STATE(1752), + [sym_logical_expression] = STATE(1752), + [sym_bitwise_expression] = STATE(1752), + [sym_equality_expression] = STATE(1752), + [sym_relational_expression] = STATE(1752), + [sym_shift_expression] = STATE(1752), + [sym_math_expression] = STATE(1752), + [sym_cast_expression] = STATE(1752), + [sym_sizeof_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_call_expression] = STATE(1752), + [sym_field_expression] = STATE(1752), + [sym_compound_literal_expression] = STATE(1752), + [sym_parenthesized_expression] = STATE(1752), + [sym_initializer_list] = STATE(1753), + [sym_concatenated_string] = STATE(1752), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1752), + [sym_new_expression] = STATE(1752), + [sym_delete_expression] = STATE(1752), + [sym_lambda_expression] = STATE(1752), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3878), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1089), @@ -50005,134 +50066,134 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(3872), - [sym_char_literal] = ACTIONS(3872), + [sym_number_literal] = ACTIONS(3878), + [sym_char_literal] = ACTIONS(3878), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(3874), - [sym_false] = ACTIONS(3874), - [sym_null] = ACTIONS(3874), + [sym_true] = ACTIONS(3880), + [sym_false] = ACTIONS(3880), + [sym_null] = ACTIONS(3880), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(3874), - }, - [1172] = { - [anon_sym_LPAREN] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3876), - [anon_sym_RPAREN] = ACTIONS(3876), - [anon_sym_SEMI] = ACTIONS(3876), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_RBRACE] = ACTIONS(3876), - [anon_sym_STAR] = ACTIONS(3878), - [anon_sym_LBRACK] = ACTIONS(3876), - [anon_sym_RBRACK] = ACTIONS(3876), - [anon_sym_EQ] = ACTIONS(3878), - [anon_sym_COLON] = ACTIONS(3876), - [anon_sym_QMARK] = ACTIONS(3876), - [anon_sym_STAR_EQ] = ACTIONS(3876), - [anon_sym_SLASH_EQ] = ACTIONS(3876), - [anon_sym_PERCENT_EQ] = ACTIONS(3876), - [anon_sym_PLUS_EQ] = ACTIONS(3876), - [anon_sym_DASH_EQ] = ACTIONS(3876), - [anon_sym_LT_LT_EQ] = ACTIONS(3876), - [anon_sym_GT_GT_EQ] = ACTIONS(3876), - [anon_sym_AMP_EQ] = ACTIONS(3876), - [anon_sym_CARET_EQ] = ACTIONS(3876), - [anon_sym_PIPE_EQ] = ACTIONS(3876), - [anon_sym_AMP] = ACTIONS(3878), - [anon_sym_PIPE_PIPE] = ACTIONS(3876), - [anon_sym_AMP_AMP] = ACTIONS(3876), - [anon_sym_PIPE] = ACTIONS(3878), - [anon_sym_CARET] = ACTIONS(3878), - [anon_sym_EQ_EQ] = ACTIONS(3876), - [anon_sym_BANG_EQ] = ACTIONS(3876), - [anon_sym_LT] = ACTIONS(3878), - [anon_sym_GT] = ACTIONS(3878), - [anon_sym_LT_EQ] = ACTIONS(3876), - [anon_sym_GT_EQ] = ACTIONS(3876), - [anon_sym_LT_LT] = ACTIONS(3878), - [anon_sym_GT_GT] = ACTIONS(3878), - [anon_sym_PLUS] = ACTIONS(3878), - [anon_sym_DASH] = ACTIONS(3878), - [anon_sym_SLASH] = ACTIONS(3878), - [anon_sym_PERCENT] = ACTIONS(3878), - [anon_sym_DASH_DASH] = ACTIONS(3876), - [anon_sym_PLUS_PLUS] = ACTIONS(3876), - [anon_sym_DOT] = ACTIONS(3876), - [anon_sym_DASH_GT] = ACTIONS(3876), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(3880), }, [1173] = { - [aux_sym_argument_list_repeat1] = STATE(1752), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(3880), + [anon_sym_LPAREN] = ACTIONS(3882), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RPAREN] = ACTIONS(3882), + [anon_sym_SEMI] = ACTIONS(3882), + [anon_sym_LBRACE] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3882), + [anon_sym_STAR] = ACTIONS(3884), + [anon_sym_LBRACK] = ACTIONS(3882), + [anon_sym_RBRACK] = ACTIONS(3882), + [anon_sym_EQ] = ACTIONS(3884), + [anon_sym_COLON] = ACTIONS(3882), + [anon_sym_QMARK] = ACTIONS(3882), + [anon_sym_STAR_EQ] = ACTIONS(3882), + [anon_sym_SLASH_EQ] = ACTIONS(3882), + [anon_sym_PERCENT_EQ] = ACTIONS(3882), + [anon_sym_PLUS_EQ] = ACTIONS(3882), + [anon_sym_DASH_EQ] = ACTIONS(3882), + [anon_sym_LT_LT_EQ] = ACTIONS(3882), + [anon_sym_GT_GT_EQ] = ACTIONS(3882), + [anon_sym_AMP_EQ] = ACTIONS(3882), + [anon_sym_CARET_EQ] = ACTIONS(3882), + [anon_sym_PIPE_EQ] = ACTIONS(3882), + [anon_sym_AMP] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3882), + [anon_sym_AMP_AMP] = ACTIONS(3882), + [anon_sym_PIPE] = ACTIONS(3884), + [anon_sym_CARET] = ACTIONS(3884), + [anon_sym_EQ_EQ] = ACTIONS(3882), + [anon_sym_BANG_EQ] = ACTIONS(3882), + [anon_sym_LT] = ACTIONS(3884), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_LT_EQ] = ACTIONS(3882), + [anon_sym_GT_EQ] = ACTIONS(3882), + [anon_sym_LT_LT] = ACTIONS(3884), + [anon_sym_GT_GT] = ACTIONS(3884), + [anon_sym_PLUS] = ACTIONS(3884), + [anon_sym_DASH] = ACTIONS(3884), + [anon_sym_SLASH] = ACTIONS(3884), + [anon_sym_PERCENT] = ACTIONS(3884), + [anon_sym_DASH_DASH] = ACTIONS(3882), + [anon_sym_PLUS_PLUS] = ACTIONS(3882), + [anon_sym_DOT] = ACTIONS(3882), + [anon_sym_DASH_GT] = ACTIONS(3882), [sym_comment] = ACTIONS(49), }, [1174] = { - [sym_destructor_name] = STATE(428), - [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(3882), + [aux_sym_argument_list_repeat1] = STATE(1755), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(49), - [sym_operator_name] = ACTIONS(702), }, [1175] = { - [anon_sym_RPAREN] = ACTIONS(3884), + [sym_destructor_name] = STATE(428), + [anon_sym_TILDE] = ACTIONS(1500), + [sym_identifier] = ACTIONS(3888), [sym_comment] = ACTIONS(49), + [sym_operator_name] = ACTIONS(702), }, [1176] = { - [anon_sym_LPAREN] = ACTIONS(3886), - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_RPAREN] = ACTIONS(3886), - [anon_sym_SEMI] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3886), - [anon_sym_RBRACE] = ACTIONS(3886), - [anon_sym_STAR] = ACTIONS(3888), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_RBRACK] = ACTIONS(3886), - [anon_sym_EQ] = ACTIONS(3888), - [anon_sym_COLON] = ACTIONS(3886), - [anon_sym_QMARK] = ACTIONS(3886), - [anon_sym_STAR_EQ] = ACTIONS(3886), - [anon_sym_SLASH_EQ] = ACTIONS(3886), - [anon_sym_PERCENT_EQ] = ACTIONS(3886), - [anon_sym_PLUS_EQ] = ACTIONS(3886), - [anon_sym_DASH_EQ] = ACTIONS(3886), - [anon_sym_LT_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_GT_EQ] = ACTIONS(3886), - [anon_sym_AMP_EQ] = ACTIONS(3886), - [anon_sym_CARET_EQ] = ACTIONS(3886), - [anon_sym_PIPE_EQ] = ACTIONS(3886), - [anon_sym_AMP] = ACTIONS(3888), - [anon_sym_PIPE_PIPE] = ACTIONS(3886), - [anon_sym_AMP_AMP] = ACTIONS(3886), - [anon_sym_PIPE] = ACTIONS(3888), - [anon_sym_CARET] = ACTIONS(3888), - [anon_sym_EQ_EQ] = ACTIONS(3886), - [anon_sym_BANG_EQ] = ACTIONS(3886), - [anon_sym_LT] = ACTIONS(3888), - [anon_sym_GT] = ACTIONS(3888), - [anon_sym_LT_EQ] = ACTIONS(3886), - [anon_sym_GT_EQ] = ACTIONS(3886), - [anon_sym_LT_LT] = ACTIONS(3888), - [anon_sym_GT_GT] = ACTIONS(3888), - [anon_sym_PLUS] = ACTIONS(3888), - [anon_sym_DASH] = ACTIONS(3888), - [anon_sym_SLASH] = ACTIONS(3888), - [anon_sym_PERCENT] = ACTIONS(3888), - [anon_sym_DASH_DASH] = ACTIONS(3886), - [anon_sym_PLUS_PLUS] = ACTIONS(3886), - [anon_sym_DOT] = ACTIONS(3886), - [anon_sym_DASH_GT] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3890), [sym_comment] = ACTIONS(49), }, [1177] = { + [anon_sym_LPAREN] = ACTIONS(3892), + [anon_sym_COMMA] = ACTIONS(3892), + [anon_sym_RPAREN] = ACTIONS(3892), + [anon_sym_SEMI] = ACTIONS(3892), + [anon_sym_LBRACE] = ACTIONS(3892), + [anon_sym_RBRACE] = ACTIONS(3892), + [anon_sym_STAR] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3892), + [anon_sym_RBRACK] = ACTIONS(3892), + [anon_sym_EQ] = ACTIONS(3894), + [anon_sym_COLON] = ACTIONS(3892), + [anon_sym_QMARK] = ACTIONS(3892), + [anon_sym_STAR_EQ] = ACTIONS(3892), + [anon_sym_SLASH_EQ] = ACTIONS(3892), + [anon_sym_PERCENT_EQ] = ACTIONS(3892), + [anon_sym_PLUS_EQ] = ACTIONS(3892), + [anon_sym_DASH_EQ] = ACTIONS(3892), + [anon_sym_LT_LT_EQ] = ACTIONS(3892), + [anon_sym_GT_GT_EQ] = ACTIONS(3892), + [anon_sym_AMP_EQ] = ACTIONS(3892), + [anon_sym_CARET_EQ] = ACTIONS(3892), + [anon_sym_PIPE_EQ] = ACTIONS(3892), + [anon_sym_AMP] = ACTIONS(3894), + [anon_sym_PIPE_PIPE] = ACTIONS(3892), + [anon_sym_AMP_AMP] = ACTIONS(3892), + [anon_sym_PIPE] = ACTIONS(3894), + [anon_sym_CARET] = ACTIONS(3894), + [anon_sym_EQ_EQ] = ACTIONS(3892), + [anon_sym_BANG_EQ] = ACTIONS(3892), + [anon_sym_LT] = ACTIONS(3894), + [anon_sym_GT] = ACTIONS(3894), + [anon_sym_LT_EQ] = ACTIONS(3892), + [anon_sym_GT_EQ] = ACTIONS(3892), + [anon_sym_LT_LT] = ACTIONS(3894), + [anon_sym_GT_GT] = ACTIONS(3894), + [anon_sym_PLUS] = ACTIONS(3894), + [anon_sym_DASH] = ACTIONS(3894), + [anon_sym_SLASH] = ACTIONS(3894), + [anon_sym_PERCENT] = ACTIONS(3894), + [anon_sym_DASH_DASH] = ACTIONS(3892), + [anon_sym_PLUS_PLUS] = ACTIONS(3892), + [anon_sym_DOT] = ACTIONS(3892), + [anon_sym_DASH_GT] = ACTIONS(3892), + [sym_comment] = ACTIONS(49), + }, + [1178] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2400), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1624), @@ -50141,7 +50202,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_LBRACE] = ACTIONS(1622), - [anon_sym_RBRACE] = ACTIONS(2398), + [anon_sym_RBRACE] = ACTIONS(2400), [anon_sym_STAR] = ACTIONS(1622), [anon_sym_LBRACK] = ACTIONS(1622), [anon_sym_static] = ACTIONS(1624), @@ -50196,58 +50257,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [1178] = { + [1179] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2416), + [anon_sym_delete] = ACTIONS(2418), [sym_operator_name] = ACTIONS(190), }, - [1179] = { + [1180] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(1292), + [aux_sym_for_statement_repeat1] = STATE(1293), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2644), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(3890), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2652), - [anon_sym_STAR_EQ] = ACTIONS(2654), - [anon_sym_SLASH_EQ] = ACTIONS(2654), - [anon_sym_PERCENT_EQ] = ACTIONS(2654), - [anon_sym_PLUS_EQ] = ACTIONS(2654), - [anon_sym_DASH_EQ] = ACTIONS(2654), - [anon_sym_LT_LT_EQ] = ACTIONS(2654), - [anon_sym_GT_GT_EQ] = ACTIONS(2654), - [anon_sym_AMP_EQ] = ACTIONS(2654), - [anon_sym_CARET_EQ] = ACTIONS(2654), - [anon_sym_PIPE_EQ] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(3896), + [anon_sym_EQ] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2654), + [anon_sym_STAR_EQ] = ACTIONS(2656), + [anon_sym_SLASH_EQ] = ACTIONS(2656), + [anon_sym_PERCENT_EQ] = ACTIONS(2656), + [anon_sym_PLUS_EQ] = ACTIONS(2656), + [anon_sym_DASH_EQ] = ACTIONS(2656), + [anon_sym_LT_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_GT_EQ] = ACTIONS(2656), + [anon_sym_AMP_EQ] = ACTIONS(2656), + [anon_sym_CARET_EQ] = ACTIONS(2656), + [anon_sym_PIPE_EQ] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1180] = { + [1181] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -50266,7 +50327,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1756), + [sym_type_descriptor] = STATE(1759), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -50330,131 +50391,131 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1181] = { + [1182] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1182] = { - [anon_sym_LBRACK] = ACTIONS(3892), - [anon_sym_EQ] = ACTIONS(3892), - [anon_sym_DOT] = ACTIONS(3892), - [sym_comment] = ACTIONS(49), - }, [1183] = { - [aux_sym_concatenated_string_repeat1] = STATE(1757), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(3894), + [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_EQ] = ACTIONS(3898), + [anon_sym_DOT] = ACTIONS(3898), [sym_comment] = ACTIONS(49), }, [1184] = { - [sym__expression] = STATE(1759), - [sym_conditional_expression] = STATE(1759), - [sym_assignment_expression] = STATE(1759), - [sym_pointer_expression] = STATE(1759), - [sym_logical_expression] = STATE(1759), - [sym_bitwise_expression] = STATE(1759), - [sym_equality_expression] = STATE(1759), - [sym_relational_expression] = STATE(1759), - [sym_shift_expression] = STATE(1759), - [sym_math_expression] = STATE(1759), - [sym_cast_expression] = STATE(1759), - [sym_sizeof_expression] = STATE(1759), - [sym_subscript_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_field_expression] = STATE(1759), - [sym_compound_literal_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_concatenated_string] = STATE(1759), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1759), - [sym_new_expression] = STATE(1759), - [sym_delete_expression] = STATE(1759), - [sym_lambda_expression] = STATE(1759), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3896), + [aux_sym_concatenated_string_repeat1] = STATE(1760), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(3900), + [sym_comment] = ACTIONS(49), + }, + [1185] = { + [sym__expression] = STATE(1762), + [sym_conditional_expression] = STATE(1762), + [sym_assignment_expression] = STATE(1762), + [sym_pointer_expression] = STATE(1762), + [sym_logical_expression] = STATE(1762), + [sym_bitwise_expression] = STATE(1762), + [sym_equality_expression] = STATE(1762), + [sym_relational_expression] = STATE(1762), + [sym_shift_expression] = STATE(1762), + [sym_math_expression] = STATE(1762), + [sym_cast_expression] = STATE(1762), + [sym_sizeof_expression] = STATE(1762), + [sym_subscript_expression] = STATE(1762), + [sym_call_expression] = STATE(1762), + [sym_field_expression] = STATE(1762), + [sym_compound_literal_expression] = STATE(1762), + [sym_parenthesized_expression] = STATE(1762), + [sym_concatenated_string] = STATE(1762), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1762), + [sym_new_expression] = STATE(1762), + [sym_delete_expression] = STATE(1762), + [sym_lambda_expression] = STATE(1762), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3902), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(3898), + [anon_sym_LBRACK] = ACTIONS(3904), [anon_sym_AMP] = ACTIONS(1275), [anon_sym_BANG] = ACTIONS(1279), [anon_sym_TILDE] = ACTIONS(1281), @@ -50463,20 +50524,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3896), - [sym_char_literal] = ACTIONS(3896), + [sym_number_literal] = ACTIONS(3902), + [sym_char_literal] = ACTIONS(3902), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3900), - [sym_false] = ACTIONS(3900), - [sym_null] = ACTIONS(3900), + [sym_true] = ACTIONS(3906), + [sym_false] = ACTIONS(3906), + [sym_null] = ACTIONS(3906), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3900), + [sym_nullptr] = ACTIONS(3906), }, - [1185] = { + [1186] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -50509,7 +50570,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(3902), + [anon_sym_RBRACK] = ACTIONS(3908), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -50532,87 +50593,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1186] = { + [1187] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1187] = { - [sym__expression] = STATE(1762), - [sym_comma_expression] = STATE(1517), - [sym_conditional_expression] = STATE(1762), - [sym_assignment_expression] = STATE(1762), - [sym_pointer_expression] = STATE(1762), - [sym_logical_expression] = STATE(1762), - [sym_bitwise_expression] = STATE(1762), - [sym_equality_expression] = STATE(1762), - [sym_relational_expression] = STATE(1762), - [sym_shift_expression] = STATE(1762), - [sym_math_expression] = STATE(1762), - [sym_cast_expression] = STATE(1762), - [sym_sizeof_expression] = STATE(1762), - [sym_subscript_expression] = STATE(1762), - [sym_call_expression] = STATE(1762), - [sym_field_expression] = STATE(1762), - [sym_compound_literal_expression] = STATE(1762), - [sym_parenthesized_expression] = STATE(1762), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), + [1188] = { + [sym__expression] = STATE(1765), + [sym_comma_expression] = STATE(1520), + [sym_conditional_expression] = STATE(1765), + [sym_assignment_expression] = STATE(1765), + [sym_pointer_expression] = STATE(1765), + [sym_logical_expression] = STATE(1765), + [sym_bitwise_expression] = STATE(1765), + [sym_equality_expression] = STATE(1765), + [sym_relational_expression] = STATE(1765), + [sym_shift_expression] = STATE(1765), + [sym_math_expression] = STATE(1765), + [sym_cast_expression] = STATE(1765), + [sym_sizeof_expression] = STATE(1765), + [sym_subscript_expression] = STATE(1765), + [sym_call_expression] = STATE(1765), + [sym_field_expression] = STATE(1765), + [sym_compound_literal_expression] = STATE(1765), + [sym_parenthesized_expression] = STATE(1765), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1762), + [sym_concatenated_string] = STATE(1765), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1762), - [sym_new_expression] = STATE(1762), - [sym_delete_expression] = STATE(1762), - [sym_lambda_expression] = STATE(1762), + [sym_template_function] = STATE(1765), + [sym_new_expression] = STATE(1765), + [sym_delete_expression] = STATE(1765), + [sym_lambda_expression] = STATE(1765), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3904), + [sym_raw_string_literal] = ACTIONS(3910), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3912), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1275), @@ -50624,101 +50685,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3904), - [sym_char_literal] = ACTIONS(3904), - [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3908), - [sym_false] = ACTIONS(3908), - [sym_null] = ACTIONS(3908), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3908), - }, - [1188] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), + [sym_number_literal] = ACTIONS(3910), + [sym_char_literal] = ACTIONS(3910), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), + [sym_true] = ACTIONS(3914), + [sym_false] = ACTIONS(3914), + [sym_null] = ACTIONS(3914), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(2748), + [sym_nullptr] = ACTIONS(3914), }, [1189] = { - [sym__expression] = STATE(1764), - [sym_conditional_expression] = STATE(1764), - [sym_assignment_expression] = STATE(1764), - [sym_pointer_expression] = STATE(1764), - [sym_logical_expression] = STATE(1764), - [sym_bitwise_expression] = STATE(1764), - [sym_equality_expression] = STATE(1764), - [sym_relational_expression] = STATE(1764), - [sym_shift_expression] = STATE(1764), - [sym_math_expression] = STATE(1764), - [sym_cast_expression] = STATE(1764), - [sym_sizeof_expression] = STATE(1764), - [sym_subscript_expression] = STATE(1764), - [sym_call_expression] = STATE(1764), - [sym_field_expression] = STATE(1764), - [sym_compound_literal_expression] = STATE(1764), - [sym_parenthesized_expression] = STATE(1764), - [sym_concatenated_string] = STATE(1764), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1764), - [sym_new_expression] = STATE(1764), - [sym_delete_expression] = STATE(1764), - [sym_lambda_expression] = STATE(1764), + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3910), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -50730,126 +50738,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3910), - [sym_char_literal] = ACTIONS(3910), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3912), - [sym_false] = ACTIONS(3912), - [sym_null] = ACTIONS(3912), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3912), + [sym_nullptr] = ACTIONS(2750), }, [1190] = { - [sym__expression] = STATE(1765), - [sym_conditional_expression] = STATE(1765), - [sym_assignment_expression] = STATE(1765), - [sym_pointer_expression] = STATE(1765), - [sym_logical_expression] = STATE(1765), - [sym_bitwise_expression] = STATE(1765), - [sym_equality_expression] = STATE(1765), - [sym_relational_expression] = STATE(1765), - [sym_shift_expression] = STATE(1765), - [sym_math_expression] = STATE(1765), - [sym_cast_expression] = STATE(1765), - [sym_sizeof_expression] = STATE(1765), - [sym_subscript_expression] = STATE(1765), - [sym_call_expression] = STATE(1765), - [sym_field_expression] = STATE(1765), - [sym_compound_literal_expression] = STATE(1765), - [sym_parenthesized_expression] = STATE(1765), - [sym_concatenated_string] = STATE(1765), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1765), - [sym_new_expression] = STATE(1765), - [sym_delete_expression] = STATE(1765), - [sym_lambda_expression] = STATE(1765), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3914), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(3914), - [sym_char_literal] = ACTIONS(3914), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(3916), - [sym_false] = ACTIONS(3916), - [sym_null] = ACTIONS(3916), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(3916), - }, - [1191] = { - [sym__expression] = STATE(1766), - [sym_conditional_expression] = STATE(1766), - [sym_assignment_expression] = STATE(1766), - [sym_pointer_expression] = STATE(1766), - [sym_logical_expression] = STATE(1766), - [sym_bitwise_expression] = STATE(1766), - [sym_equality_expression] = STATE(1766), - [sym_relational_expression] = STATE(1766), - [sym_shift_expression] = STATE(1766), - [sym_math_expression] = STATE(1766), - [sym_cast_expression] = STATE(1766), - [sym_sizeof_expression] = STATE(1766), - [sym_subscript_expression] = STATE(1766), - [sym_call_expression] = STATE(1766), - [sym_field_expression] = STATE(1766), - [sym_compound_literal_expression] = STATE(1766), - [sym_parenthesized_expression] = STATE(1766), - [sym_concatenated_string] = STATE(1766), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1766), - [sym_new_expression] = STATE(1766), - [sym_delete_expression] = STATE(1766), - [sym_lambda_expression] = STATE(1766), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3918), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3918), - [sym_char_literal] = ACTIONS(3918), - [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3920), - [sym_false] = ACTIONS(3920), - [sym_null] = ACTIONS(3920), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3920), - }, - [1192] = { [sym__expression] = STATE(1767), [sym_conditional_expression] = STATE(1767), [sym_assignment_expression] = STATE(1767), @@ -50877,7 +50779,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3922), + [sym_raw_string_literal] = ACTIONS(3916), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -50889,20 +50791,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3922), - [sym_char_literal] = ACTIONS(3922), + [sym_number_literal] = ACTIONS(3916), + [sym_char_literal] = ACTIONS(3916), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3924), - [sym_false] = ACTIONS(3924), - [sym_null] = ACTIONS(3924), + [sym_true] = ACTIONS(3918), + [sym_false] = ACTIONS(3918), + [sym_null] = ACTIONS(3918), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3924), + [sym_nullptr] = ACTIONS(3918), }, - [1193] = { + [1191] = { [sym__expression] = STATE(1768), [sym_conditional_expression] = STATE(1768), [sym_assignment_expression] = STATE(1768), @@ -50927,35 +50829,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1768), [sym_lambda_expression] = STATE(1768), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3926), - [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1275), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1275), - [anon_sym_BANG] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_PLUS] = ACTIONS(1283), - [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_DASH_DASH] = ACTIONS(1285), - [anon_sym_PLUS_PLUS] = ACTIONS(1285), - [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3926), - [sym_char_literal] = ACTIONS(3926), - [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3928), - [sym_false] = ACTIONS(3928), - [sym_null] = ACTIONS(3928), + [sym_raw_string_literal] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(3920), + [sym_char_literal] = ACTIONS(3920), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(3922), + [sym_false] = ACTIONS(3922), + [sym_null] = ACTIONS(3922), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), - [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3928), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(3922), }, - [1194] = { + [1192] = { [sym__expression] = STATE(1769), [sym_conditional_expression] = STATE(1769), [sym_assignment_expression] = STATE(1769), @@ -50983,7 +50885,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3930), + [sym_raw_string_literal] = ACTIONS(3924), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -50995,20 +50897,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3930), - [sym_char_literal] = ACTIONS(3930), + [sym_number_literal] = ACTIONS(3924), + [sym_char_literal] = ACTIONS(3924), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3932), - [sym_false] = ACTIONS(3932), - [sym_null] = ACTIONS(3932), + [sym_true] = ACTIONS(3926), + [sym_false] = ACTIONS(3926), + [sym_null] = ACTIONS(3926), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3932), + [sym_nullptr] = ACTIONS(3926), }, - [1195] = { + [1193] = { [sym__expression] = STATE(1770), [sym_conditional_expression] = STATE(1770), [sym_assignment_expression] = STATE(1770), @@ -51036,7 +50938,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3934), + [sym_raw_string_literal] = ACTIONS(3928), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -51048,20 +50950,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3934), - [sym_char_literal] = ACTIONS(3934), + [sym_number_literal] = ACTIONS(3928), + [sym_char_literal] = ACTIONS(3928), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3936), - [sym_false] = ACTIONS(3936), - [sym_null] = ACTIONS(3936), + [sym_true] = ACTIONS(3930), + [sym_false] = ACTIONS(3930), + [sym_null] = ACTIONS(3930), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3936), + [sym_nullptr] = ACTIONS(3930), }, - [1196] = { + [1194] = { [sym__expression] = STATE(1771), [sym_conditional_expression] = STATE(1771), [sym_assignment_expression] = STATE(1771), @@ -51089,7 +50991,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3938), + [sym_raw_string_literal] = ACTIONS(3932), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -51101,20 +51003,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3938), - [sym_char_literal] = ACTIONS(3938), + [sym_number_literal] = ACTIONS(3932), + [sym_char_literal] = ACTIONS(3932), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3940), - [sym_false] = ACTIONS(3940), - [sym_null] = ACTIONS(3940), + [sym_true] = ACTIONS(3934), + [sym_false] = ACTIONS(3934), + [sym_null] = ACTIONS(3934), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3940), + [sym_nullptr] = ACTIONS(3934), }, - [1197] = { + [1195] = { [sym__expression] = STATE(1772), [sym_conditional_expression] = STATE(1772), [sym_assignment_expression] = STATE(1772), @@ -51142,7 +51044,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3942), + [sym_raw_string_literal] = ACTIONS(3936), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -51154,20 +51056,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3942), - [sym_char_literal] = ACTIONS(3942), + [sym_number_literal] = ACTIONS(3936), + [sym_char_literal] = ACTIONS(3936), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3944), - [sym_false] = ACTIONS(3944), - [sym_null] = ACTIONS(3944), + [sym_true] = ACTIONS(3938), + [sym_false] = ACTIONS(3938), + [sym_null] = ACTIONS(3938), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3944), + [sym_nullptr] = ACTIONS(3938), }, - [1198] = { + [1196] = { [sym__expression] = STATE(1773), [sym_conditional_expression] = STATE(1773), [sym_assignment_expression] = STATE(1773), @@ -51195,7 +51097,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3946), + [sym_raw_string_literal] = ACTIONS(3940), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -51207,20 +51109,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3946), - [sym_char_literal] = ACTIONS(3946), + [sym_number_literal] = ACTIONS(3940), + [sym_char_literal] = ACTIONS(3940), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3948), - [sym_false] = ACTIONS(3948), - [sym_null] = ACTIONS(3948), + [sym_true] = ACTIONS(3942), + [sym_false] = ACTIONS(3942), + [sym_null] = ACTIONS(3942), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3948), + [sym_nullptr] = ACTIONS(3942), }, - [1199] = { + [1197] = { [sym__expression] = STATE(1774), [sym_conditional_expression] = STATE(1774), [sym_assignment_expression] = STATE(1774), @@ -51248,7 +51150,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3950), + [sym_raw_string_literal] = ACTIONS(3944), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -51260,26 +51162,126 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(3950), - [sym_char_literal] = ACTIONS(3950), + [sym_number_literal] = ACTIONS(3944), + [sym_char_literal] = ACTIONS(3944), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(3952), - [sym_false] = ACTIONS(3952), - [sym_null] = ACTIONS(3952), + [sym_true] = ACTIONS(3946), + [sym_false] = ACTIONS(3946), + [sym_null] = ACTIONS(3946), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(3952), + [sym_nullptr] = ACTIONS(3946), }, - [1200] = { - [aux_sym_initializer_list_repeat1] = STATE(1776), - [anon_sym_COMMA] = ACTIONS(3954), - [anon_sym_RBRACE] = ACTIONS(3906), + [1198] = { + [sym__expression] = STATE(1775), + [sym_conditional_expression] = STATE(1775), + [sym_assignment_expression] = STATE(1775), + [sym_pointer_expression] = STATE(1775), + [sym_logical_expression] = STATE(1775), + [sym_bitwise_expression] = STATE(1775), + [sym_equality_expression] = STATE(1775), + [sym_relational_expression] = STATE(1775), + [sym_shift_expression] = STATE(1775), + [sym_math_expression] = STATE(1775), + [sym_cast_expression] = STATE(1775), + [sym_sizeof_expression] = STATE(1775), + [sym_subscript_expression] = STATE(1775), + [sym_call_expression] = STATE(1775), + [sym_field_expression] = STATE(1775), + [sym_compound_literal_expression] = STATE(1775), + [sym_parenthesized_expression] = STATE(1775), + [sym_concatenated_string] = STATE(1775), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1775), + [sym_new_expression] = STATE(1775), + [sym_delete_expression] = STATE(1775), + [sym_lambda_expression] = STATE(1775), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3948), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(3948), + [sym_char_literal] = ACTIONS(3948), + [sym_string_literal] = ACTIONS(1291), + [sym_true] = ACTIONS(3950), + [sym_false] = ACTIONS(3950), + [sym_null] = ACTIONS(3950), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(1297), + [sym_nullptr] = ACTIONS(3950), }, - [1201] = { + [1199] = { + [sym__expression] = STATE(1776), + [sym_conditional_expression] = STATE(1776), + [sym_assignment_expression] = STATE(1776), + [sym_pointer_expression] = STATE(1776), + [sym_logical_expression] = STATE(1776), + [sym_bitwise_expression] = STATE(1776), + [sym_equality_expression] = STATE(1776), + [sym_relational_expression] = STATE(1776), + [sym_shift_expression] = STATE(1776), + [sym_math_expression] = STATE(1776), + [sym_cast_expression] = STATE(1776), + [sym_sizeof_expression] = STATE(1776), + [sym_subscript_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_field_expression] = STATE(1776), + [sym_compound_literal_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_concatenated_string] = STATE(1776), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1776), + [sym_new_expression] = STATE(1776), + [sym_delete_expression] = STATE(1776), + [sym_lambda_expression] = STATE(1776), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3952), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(3952), + [sym_char_literal] = ACTIONS(3952), + [sym_string_literal] = ACTIONS(1291), + [sym_true] = ACTIONS(3954), + [sym_false] = ACTIONS(3954), + [sym_null] = ACTIONS(3954), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(1297), + [sym_nullptr] = ACTIONS(3954), + }, + [1200] = { [sym__expression] = STATE(1777), [sym_conditional_expression] = STATE(1777), [sym_assignment_expression] = STATE(1777), @@ -51297,10 +51299,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_field_expression] = STATE(1777), [sym_compound_literal_expression] = STATE(1777), [sym_parenthesized_expression] = STATE(1777), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), - [sym_subscript_designator] = STATE(671), - [sym_field_designator] = STATE(671), [sym_concatenated_string] = STATE(1777), [sym_template_type] = STATE(586), [sym_template_function] = STATE(1777), @@ -51311,11 +51309,74 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [aux_sym_initializer_pair_repeat1] = STATE(671), [sym_raw_string_literal] = ACTIONS(3956), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1275), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1275), + [anon_sym_BANG] = ACTIONS(1279), + [anon_sym_TILDE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_DASH_DASH] = ACTIONS(1285), + [anon_sym_PLUS_PLUS] = ACTIONS(1285), + [anon_sym_sizeof] = ACTIONS(1287), + [sym_number_literal] = ACTIONS(3956), + [sym_char_literal] = ACTIONS(3956), + [sym_string_literal] = ACTIONS(1291), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [sym_null] = ACTIONS(3958), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2402), + [anon_sym_delete] = ACTIONS(1297), + [sym_nullptr] = ACTIONS(3958), + }, + [1201] = { + [aux_sym_initializer_list_repeat1] = STATE(1779), + [anon_sym_COMMA] = ACTIONS(3960), + [anon_sym_RBRACE] = ACTIONS(3912), + [sym_comment] = ACTIONS(49), + }, + [1202] = { + [sym__expression] = STATE(1780), + [sym_conditional_expression] = STATE(1780), + [sym_assignment_expression] = STATE(1780), + [sym_pointer_expression] = STATE(1780), + [sym_logical_expression] = STATE(1780), + [sym_bitwise_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_relational_expression] = STATE(1780), + [sym_shift_expression] = STATE(1780), + [sym_math_expression] = STATE(1780), + [sym_cast_expression] = STATE(1780), + [sym_sizeof_expression] = STATE(1780), + [sym_subscript_expression] = STATE(1780), + [sym_call_expression] = STATE(1780), + [sym_field_expression] = STATE(1780), + [sym_compound_literal_expression] = STATE(1780), + [sym_parenthesized_expression] = STATE(1780), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), + [sym_subscript_designator] = STATE(671), + [sym_field_designator] = STATE(671), + [sym_concatenated_string] = STATE(1780), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1780), + [sym_new_expression] = STATE(1780), + [sym_delete_expression] = STATE(1780), + [sym_lambda_expression] = STATE(1780), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [aux_sym_initializer_pair_repeat1] = STATE(671), + [sym_raw_string_literal] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(3906), + [anon_sym_RBRACE] = ACTIONS(3912), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1325), @@ -51327,48 +51388,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3956), - [sym_char_literal] = ACTIONS(3956), + [sym_number_literal] = ACTIONS(3962), + [sym_char_literal] = ACTIONS(3962), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_null] = ACTIONS(3958), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_null] = ACTIONS(3964), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3958), + [sym_nullptr] = ACTIONS(3964), }, - [1202] = { - [sym__expression] = STATE(1778), - [sym_conditional_expression] = STATE(1778), - [sym_assignment_expression] = STATE(1778), - [sym_pointer_expression] = STATE(1778), - [sym_logical_expression] = STATE(1778), - [sym_bitwise_expression] = STATE(1778), - [sym_equality_expression] = STATE(1778), - [sym_relational_expression] = STATE(1778), - [sym_shift_expression] = STATE(1778), - [sym_math_expression] = STATE(1778), - [sym_cast_expression] = STATE(1778), - [sym_sizeof_expression] = STATE(1778), - [sym_subscript_expression] = STATE(1778), - [sym_call_expression] = STATE(1778), - [sym_field_expression] = STATE(1778), - [sym_compound_literal_expression] = STATE(1778), - [sym_parenthesized_expression] = STATE(1778), - [sym_concatenated_string] = STATE(1778), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1778), - [sym_new_expression] = STATE(1778), - [sym_delete_expression] = STATE(1778), - [sym_lambda_expression] = STATE(1778), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3960), + [1203] = { + [sym__expression] = STATE(1781), + [sym_conditional_expression] = STATE(1781), + [sym_assignment_expression] = STATE(1781), + [sym_pointer_expression] = STATE(1781), + [sym_logical_expression] = STATE(1781), + [sym_bitwise_expression] = STATE(1781), + [sym_equality_expression] = STATE(1781), + [sym_relational_expression] = STATE(1781), + [sym_shift_expression] = STATE(1781), + [sym_math_expression] = STATE(1781), + [sym_cast_expression] = STATE(1781), + [sym_sizeof_expression] = STATE(1781), + [sym_subscript_expression] = STATE(1781), + [sym_call_expression] = STATE(1781), + [sym_field_expression] = STATE(1781), + [sym_compound_literal_expression] = STATE(1781), + [sym_parenthesized_expression] = STATE(1781), + [sym_concatenated_string] = STATE(1781), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1781), + [sym_new_expression] = STATE(1781), + [sym_delete_expression] = STATE(1781), + [sym_lambda_expression] = STATE(1781), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3966), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -51380,49 +51441,49 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(3960), - [sym_char_literal] = ACTIONS(3960), + [sym_number_literal] = ACTIONS(3966), + [sym_char_literal] = ACTIONS(3966), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(3962), - [sym_false] = ACTIONS(3962), - [sym_null] = ACTIONS(3962), + [sym_true] = ACTIONS(3968), + [sym_false] = ACTIONS(3968), + [sym_null] = ACTIONS(3968), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(3962), + [sym_nullptr] = ACTIONS(3968), }, - [1203] = { - [sym__expression] = STATE(1779), - [sym_conditional_expression] = STATE(1779), - [sym_assignment_expression] = STATE(1779), - [sym_pointer_expression] = STATE(1779), - [sym_logical_expression] = STATE(1779), - [sym_bitwise_expression] = STATE(1779), - [sym_equality_expression] = STATE(1779), - [sym_relational_expression] = STATE(1779), - [sym_shift_expression] = STATE(1779), - [sym_math_expression] = STATE(1779), - [sym_cast_expression] = STATE(1779), - [sym_sizeof_expression] = STATE(1779), - [sym_subscript_expression] = STATE(1779), - [sym_call_expression] = STATE(1779), - [sym_field_expression] = STATE(1779), - [sym_compound_literal_expression] = STATE(1779), - [sym_parenthesized_expression] = STATE(1779), - [sym_initializer_list] = STATE(1780), - [sym_concatenated_string] = STATE(1779), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1779), - [sym_new_expression] = STATE(1779), - [sym_delete_expression] = STATE(1779), - [sym_lambda_expression] = STATE(1779), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3964), + [1204] = { + [sym__expression] = STATE(1782), + [sym_conditional_expression] = STATE(1782), + [sym_assignment_expression] = STATE(1782), + [sym_pointer_expression] = STATE(1782), + [sym_logical_expression] = STATE(1782), + [sym_bitwise_expression] = STATE(1782), + [sym_equality_expression] = STATE(1782), + [sym_relational_expression] = STATE(1782), + [sym_shift_expression] = STATE(1782), + [sym_math_expression] = STATE(1782), + [sym_cast_expression] = STATE(1782), + [sym_sizeof_expression] = STATE(1782), + [sym_subscript_expression] = STATE(1782), + [sym_call_expression] = STATE(1782), + [sym_field_expression] = STATE(1782), + [sym_compound_literal_expression] = STATE(1782), + [sym_parenthesized_expression] = STATE(1782), + [sym_initializer_list] = STATE(1783), + [sym_concatenated_string] = STATE(1782), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1782), + [sym_new_expression] = STATE(1782), + [sym_delete_expression] = STATE(1782), + [sym_lambda_expression] = STATE(1782), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(3970), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1325), @@ -51435,123 +51496,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(3964), - [sym_char_literal] = ACTIONS(3964), + [sym_number_literal] = ACTIONS(3970), + [sym_char_literal] = ACTIONS(3970), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3966), - [sym_false] = ACTIONS(3966), - [sym_null] = ACTIONS(3966), + [sym_true] = ACTIONS(3972), + [sym_false] = ACTIONS(3972), + [sym_null] = ACTIONS(3972), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3966), + [sym_nullptr] = ACTIONS(3972), }, - [1204] = { - [sym_subscript_designator] = STATE(1204), - [sym_field_designator] = STATE(1204), - [aux_sym_initializer_pair_repeat1] = STATE(1204), - [anon_sym_LBRACK] = ACTIONS(3968), - [anon_sym_EQ] = ACTIONS(3971), - [anon_sym_DOT] = ACTIONS(3973), + [1205] = { + [sym_subscript_designator] = STATE(1205), + [sym_field_designator] = STATE(1205), + [aux_sym_initializer_pair_repeat1] = STATE(1205), + [anon_sym_LBRACK] = ACTIONS(3974), + [anon_sym_EQ] = ACTIONS(3977), + [anon_sym_DOT] = ACTIONS(3979), [sym_comment] = ACTIONS(49), }, - [1205] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(1781), - [sym_base_class_clause] = STATE(1362), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [1206] = { + [sym_field_declaration_list] = STATE(1361), + [sym__class_name] = STATE(1784), + [sym_base_class_clause] = STATE(1363), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1206] = { - [sym_field_declaration_list] = STATE(1365), - [sym__class_name] = STATE(1782), - [sym_base_class_clause] = STATE(1367), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [1207] = { + [sym_field_declaration_list] = STATE(1366), + [sym__class_name] = STATE(1785), + [sym_base_class_clause] = STATE(1368), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1207] = { - [sym_field_declaration_list] = STATE(1371), - [sym__class_name] = STATE(1783), - [sym_base_class_clause] = STATE(1373), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [1208] = { + [sym_field_declaration_list] = STATE(1372), + [sym__class_name] = STATE(1786), + [sym_base_class_clause] = STATE(1374), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1208] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [1209] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1210), - [anon_sym_unsigned] = ACTIONS(2462), - [anon_sym_long] = ACTIONS(2462), - [anon_sym_short] = ACTIONS(2462), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1211), + [anon_sym_unsigned] = ACTIONS(2464), + [anon_sym_long] = ACTIONS(2464), + [anon_sym_short] = ACTIONS(2464), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(2472), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(2474), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1209] = { - [sym__abstract_declarator] = STATE(1786), - [sym_abstract_pointer_declarator] = STATE(1786), - [sym_abstract_function_declarator] = STATE(1786), - [sym_abstract_array_declarator] = STATE(1786), - [sym_parameter_list] = STATE(1787), - [sym_abstract_reference_declarator] = STATE(1786), + [1210] = { + [sym__abstract_declarator] = STATE(1789), + [sym_abstract_pointer_declarator] = STATE(1789), + [sym_abstract_function_declarator] = STATE(1789), + [sym_abstract_array_declarator] = STATE(1789), + [sym_parameter_list] = STATE(1790), + [sym_abstract_reference_declarator] = STATE(1789), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(3982), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [1210] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1788), + [1211] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1791), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), @@ -51566,43 +51627,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(3982), - [anon_sym_long] = ACTIONS(3982), - [anon_sym_short] = ACTIONS(3982), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(3988), + [anon_sym_long] = ACTIONS(3988), + [anon_sym_short] = ACTIONS(3988), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [1211] = { - [sym_type_qualifier] = STATE(1211), - [sym_trailing_return_type] = STATE(1211), - [aux_sym_function_declarator_repeat1] = STATE(1211), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_EQ] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(3984), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3987), - }, [1212] = { - [anon_sym_RPAREN] = ACTIONS(3990), - [sym_comment] = ACTIONS(49), + [sym_type_qualifier] = STATE(1212), + [sym_trailing_return_type] = STATE(1212), + [aux_sym_function_declarator_repeat1] = STATE(1212), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(3990), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3993), }, [1213] = { + [anon_sym_RPAREN] = ACTIONS(3996), + [sym_comment] = ACTIONS(49), + }, + [1214] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -51621,7 +51682,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1790), + [sym_type_descriptor] = STATE(1793), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -51685,123 +51746,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1214] = { + [1215] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1215] = { - [aux_sym_concatenated_string_repeat1] = STATE(1791), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(3992), + [1216] = { + [aux_sym_concatenated_string_repeat1] = STATE(1794), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_RBRACE] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(3998), [sym_comment] = ACTIONS(49), }, - [1216] = { - [sym__expression] = STATE(1793), - [sym_conditional_expression] = STATE(1793), - [sym_assignment_expression] = STATE(1793), - [sym_pointer_expression] = STATE(1793), - [sym_logical_expression] = STATE(1793), - [sym_bitwise_expression] = STATE(1793), - [sym_equality_expression] = STATE(1793), - [sym_relational_expression] = STATE(1793), - [sym_shift_expression] = STATE(1793), - [sym_math_expression] = STATE(1793), - [sym_cast_expression] = STATE(1793), - [sym_sizeof_expression] = STATE(1793), - [sym_subscript_expression] = STATE(1793), - [sym_call_expression] = STATE(1793), - [sym_field_expression] = STATE(1793), - [sym_compound_literal_expression] = STATE(1793), - [sym_parenthesized_expression] = STATE(1793), - [sym_concatenated_string] = STATE(1793), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1793), - [sym_new_expression] = STATE(1793), - [sym_delete_expression] = STATE(1793), - [sym_lambda_expression] = STATE(1793), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(3994), + [1217] = { + [sym__expression] = STATE(1796), + [sym_conditional_expression] = STATE(1796), + [sym_assignment_expression] = STATE(1796), + [sym_pointer_expression] = STATE(1796), + [sym_logical_expression] = STATE(1796), + [sym_bitwise_expression] = STATE(1796), + [sym_equality_expression] = STATE(1796), + [sym_relational_expression] = STATE(1796), + [sym_shift_expression] = STATE(1796), + [sym_math_expression] = STATE(1796), + [sym_cast_expression] = STATE(1796), + [sym_sizeof_expression] = STATE(1796), + [sym_subscript_expression] = STATE(1796), + [sym_call_expression] = STATE(1796), + [sym_field_expression] = STATE(1796), + [sym_compound_literal_expression] = STATE(1796), + [sym_parenthesized_expression] = STATE(1796), + [sym_concatenated_string] = STATE(1796), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1796), + [sym_new_expression] = STATE(1796), + [sym_delete_expression] = STATE(1796), + [sym_lambda_expression] = STATE(1796), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4000), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(3996), + [anon_sym_LBRACK] = ACTIONS(4002), [anon_sym_AMP] = ACTIONS(1325), [anon_sym_BANG] = ACTIONS(1327), [anon_sym_TILDE] = ACTIONS(1329), @@ -51810,20 +51871,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(3994), - [sym_char_literal] = ACTIONS(3994), + [sym_number_literal] = ACTIONS(4000), + [sym_char_literal] = ACTIONS(4000), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3998), - [sym_false] = ACTIONS(3998), - [sym_null] = ACTIONS(3998), + [sym_true] = ACTIONS(4004), + [sym_false] = ACTIONS(4004), + [sym_null] = ACTIONS(4004), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3998), + [sym_nullptr] = ACTIONS(4004), }, - [1217] = { + [1218] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -51856,7 +51917,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4000), + [anon_sym_RBRACK] = ACTIONS(4006), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -51879,236 +51940,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1218] = { + [1219] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_RBRACE] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1219] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(2748), - }, [1220] = { - [sym__expression] = STATE(1795), - [sym_conditional_expression] = STATE(1795), - [sym_assignment_expression] = STATE(1795), - [sym_pointer_expression] = STATE(1795), - [sym_logical_expression] = STATE(1795), - [sym_bitwise_expression] = STATE(1795), - [sym_equality_expression] = STATE(1795), - [sym_relational_expression] = STATE(1795), - [sym_shift_expression] = STATE(1795), - [sym_math_expression] = STATE(1795), - [sym_cast_expression] = STATE(1795), - [sym_sizeof_expression] = STATE(1795), - [sym_subscript_expression] = STATE(1795), - [sym_call_expression] = STATE(1795), - [sym_field_expression] = STATE(1795), - [sym_compound_literal_expression] = STATE(1795), - [sym_parenthesized_expression] = STATE(1795), - [sym_concatenated_string] = STATE(1795), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1795), - [sym_new_expression] = STATE(1795), - [sym_delete_expression] = STATE(1795), - [sym_lambda_expression] = STATE(1795), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4002), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4002), - [sym_char_literal] = ACTIONS(4002), - [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4004), - [sym_false] = ACTIONS(4004), - [sym_null] = ACTIONS(4004), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4004), - }, - [1221] = { - [sym__expression] = STATE(1796), - [sym_conditional_expression] = STATE(1796), - [sym_assignment_expression] = STATE(1796), - [sym_pointer_expression] = STATE(1796), - [sym_logical_expression] = STATE(1796), - [sym_bitwise_expression] = STATE(1796), - [sym_equality_expression] = STATE(1796), - [sym_relational_expression] = STATE(1796), - [sym_shift_expression] = STATE(1796), - [sym_math_expression] = STATE(1796), - [sym_cast_expression] = STATE(1796), - [sym_sizeof_expression] = STATE(1796), - [sym_subscript_expression] = STATE(1796), - [sym_call_expression] = STATE(1796), - [sym_field_expression] = STATE(1796), - [sym_compound_literal_expression] = STATE(1796), - [sym_parenthesized_expression] = STATE(1796), - [sym_concatenated_string] = STATE(1796), + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1796), - [sym_new_expression] = STATE(1796), - [sym_delete_expression] = STATE(1796), - [sym_lambda_expression] = STATE(1796), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4006), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4006), - [sym_char_literal] = ACTIONS(4006), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4008), - [sym_false] = ACTIONS(4008), - [sym_null] = ACTIONS(4008), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4008), - }, - [1222] = { - [sym__expression] = STATE(1797), - [sym_conditional_expression] = STATE(1797), - [sym_assignment_expression] = STATE(1797), - [sym_pointer_expression] = STATE(1797), - [sym_logical_expression] = STATE(1797), - [sym_bitwise_expression] = STATE(1797), - [sym_equality_expression] = STATE(1797), - [sym_relational_expression] = STATE(1797), - [sym_shift_expression] = STATE(1797), - [sym_math_expression] = STATE(1797), - [sym_cast_expression] = STATE(1797), - [sym_sizeof_expression] = STATE(1797), - [sym_subscript_expression] = STATE(1797), - [sym_call_expression] = STATE(1797), - [sym_field_expression] = STATE(1797), - [sym_compound_literal_expression] = STATE(1797), - [sym_parenthesized_expression] = STATE(1797), - [sym_concatenated_string] = STATE(1797), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1797), - [sym_new_expression] = STATE(1797), - [sym_delete_expression] = STATE(1797), - [sym_lambda_expression] = STATE(1797), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4010), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52120,20 +52022,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4010), - [sym_char_literal] = ACTIONS(4010), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4012), - [sym_false] = ACTIONS(4012), - [sym_null] = ACTIONS(4012), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4012), + [sym_nullptr] = ACTIONS(2750), }, - [1223] = { + [1221] = { [sym__expression] = STATE(1798), [sym_conditional_expression] = STATE(1798), [sym_assignment_expression] = STATE(1798), @@ -52161,7 +52063,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4014), + [sym_raw_string_literal] = ACTIONS(4008), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52173,20 +52075,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4014), - [sym_char_literal] = ACTIONS(4014), + [sym_number_literal] = ACTIONS(4008), + [sym_char_literal] = ACTIONS(4008), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4016), - [sym_false] = ACTIONS(4016), - [sym_null] = ACTIONS(4016), + [sym_true] = ACTIONS(4010), + [sym_false] = ACTIONS(4010), + [sym_null] = ACTIONS(4010), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4016), + [sym_nullptr] = ACTIONS(4010), }, - [1224] = { + [1222] = { [sym__expression] = STATE(1799), [sym_conditional_expression] = STATE(1799), [sym_assignment_expression] = STATE(1799), @@ -52211,35 +52113,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1799), [sym_lambda_expression] = STATE(1799), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4018), - [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1325), - [anon_sym_BANG] = ACTIONS(1327), - [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_PLUS] = ACTIONS(1331), - [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_DASH_DASH] = ACTIONS(1333), - [anon_sym_PLUS_PLUS] = ACTIONS(1333), - [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4018), - [sym_char_literal] = ACTIONS(4018), - [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4020), - [sym_false] = ACTIONS(4020), - [sym_null] = ACTIONS(4020), + [sym_raw_string_literal] = ACTIONS(4012), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4012), + [sym_char_literal] = ACTIONS(4012), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4014), + [sym_false] = ACTIONS(4014), + [sym_null] = ACTIONS(4014), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1341), - [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4020), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4014), }, - [1225] = { + [1223] = { [sym__expression] = STATE(1800), [sym_conditional_expression] = STATE(1800), [sym_assignment_expression] = STATE(1800), @@ -52267,7 +52169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4022), + [sym_raw_string_literal] = ACTIONS(4016), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52279,20 +52181,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4022), - [sym_char_literal] = ACTIONS(4022), + [sym_number_literal] = ACTIONS(4016), + [sym_char_literal] = ACTIONS(4016), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4024), - [sym_false] = ACTIONS(4024), - [sym_null] = ACTIONS(4024), + [sym_true] = ACTIONS(4018), + [sym_false] = ACTIONS(4018), + [sym_null] = ACTIONS(4018), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4024), + [sym_nullptr] = ACTIONS(4018), }, - [1226] = { + [1224] = { [sym__expression] = STATE(1801), [sym_conditional_expression] = STATE(1801), [sym_assignment_expression] = STATE(1801), @@ -52320,7 +52222,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4026), + [sym_raw_string_literal] = ACTIONS(4020), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52332,20 +52234,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4026), - [sym_char_literal] = ACTIONS(4026), + [sym_number_literal] = ACTIONS(4020), + [sym_char_literal] = ACTIONS(4020), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4028), - [sym_false] = ACTIONS(4028), - [sym_null] = ACTIONS(4028), + [sym_true] = ACTIONS(4022), + [sym_false] = ACTIONS(4022), + [sym_null] = ACTIONS(4022), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4028), + [sym_nullptr] = ACTIONS(4022), }, - [1227] = { + [1225] = { [sym__expression] = STATE(1802), [sym_conditional_expression] = STATE(1802), [sym_assignment_expression] = STATE(1802), @@ -52373,7 +52275,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4030), + [sym_raw_string_literal] = ACTIONS(4024), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52385,20 +52287,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4030), - [sym_char_literal] = ACTIONS(4030), + [sym_number_literal] = ACTIONS(4024), + [sym_char_literal] = ACTIONS(4024), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4032), - [sym_false] = ACTIONS(4032), - [sym_null] = ACTIONS(4032), + [sym_true] = ACTIONS(4026), + [sym_false] = ACTIONS(4026), + [sym_null] = ACTIONS(4026), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4032), + [sym_nullptr] = ACTIONS(4026), }, - [1228] = { + [1226] = { [sym__expression] = STATE(1803), [sym_conditional_expression] = STATE(1803), [sym_assignment_expression] = STATE(1803), @@ -52426,7 +52328,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4034), + [sym_raw_string_literal] = ACTIONS(4028), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52438,20 +52340,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4034), - [sym_char_literal] = ACTIONS(4034), + [sym_number_literal] = ACTIONS(4028), + [sym_char_literal] = ACTIONS(4028), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4036), - [sym_false] = ACTIONS(4036), - [sym_null] = ACTIONS(4036), + [sym_true] = ACTIONS(4030), + [sym_false] = ACTIONS(4030), + [sym_null] = ACTIONS(4030), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4036), + [sym_nullptr] = ACTIONS(4030), }, - [1229] = { + [1227] = { [sym__expression] = STATE(1804), [sym_conditional_expression] = STATE(1804), [sym_assignment_expression] = STATE(1804), @@ -52479,7 +52381,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4038), + [sym_raw_string_literal] = ACTIONS(4032), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52491,20 +52393,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4038), - [sym_char_literal] = ACTIONS(4038), + [sym_number_literal] = ACTIONS(4032), + [sym_char_literal] = ACTIONS(4032), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4040), - [sym_false] = ACTIONS(4040), - [sym_null] = ACTIONS(4040), + [sym_true] = ACTIONS(4034), + [sym_false] = ACTIONS(4034), + [sym_null] = ACTIONS(4034), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4040), + [sym_nullptr] = ACTIONS(4034), }, - [1230] = { + [1228] = { [sym__expression] = STATE(1805), [sym_conditional_expression] = STATE(1805), [sym_assignment_expression] = STATE(1805), @@ -52532,7 +52434,60 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4042), + [sym_raw_string_literal] = ACTIONS(4036), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(4036), + [sym_char_literal] = ACTIONS(4036), + [sym_string_literal] = ACTIONS(1337), + [sym_true] = ACTIONS(4038), + [sym_false] = ACTIONS(4038), + [sym_null] = ACTIONS(4038), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_delete] = ACTIONS(1343), + [sym_nullptr] = ACTIONS(4038), + }, + [1229] = { + [sym__expression] = STATE(1806), + [sym_conditional_expression] = STATE(1806), + [sym_assignment_expression] = STATE(1806), + [sym_pointer_expression] = STATE(1806), + [sym_logical_expression] = STATE(1806), + [sym_bitwise_expression] = STATE(1806), + [sym_equality_expression] = STATE(1806), + [sym_relational_expression] = STATE(1806), + [sym_shift_expression] = STATE(1806), + [sym_math_expression] = STATE(1806), + [sym_cast_expression] = STATE(1806), + [sym_sizeof_expression] = STATE(1806), + [sym_subscript_expression] = STATE(1806), + [sym_call_expression] = STATE(1806), + [sym_field_expression] = STATE(1806), + [sym_compound_literal_expression] = STATE(1806), + [sym_parenthesized_expression] = STATE(1806), + [sym_concatenated_string] = STATE(1806), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1806), + [sym_new_expression] = STATE(1806), + [sym_delete_expression] = STATE(1806), + [sym_lambda_expression] = STATE(1806), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4040), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -52544,24 +52499,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4042), - [sym_char_literal] = ACTIONS(4042), + [sym_number_literal] = ACTIONS(4040), + [sym_char_literal] = ACTIONS(4040), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4044), - [sym_false] = ACTIONS(4044), - [sym_null] = ACTIONS(4044), + [sym_true] = ACTIONS(4042), + [sym_false] = ACTIONS(4042), + [sym_null] = ACTIONS(4042), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4044), + [sym_nullptr] = ACTIONS(4042), + }, + [1230] = { + [sym__expression] = STATE(1807), + [sym_conditional_expression] = STATE(1807), + [sym_assignment_expression] = STATE(1807), + [sym_pointer_expression] = STATE(1807), + [sym_logical_expression] = STATE(1807), + [sym_bitwise_expression] = STATE(1807), + [sym_equality_expression] = STATE(1807), + [sym_relational_expression] = STATE(1807), + [sym_shift_expression] = STATE(1807), + [sym_math_expression] = STATE(1807), + [sym_cast_expression] = STATE(1807), + [sym_sizeof_expression] = STATE(1807), + [sym_subscript_expression] = STATE(1807), + [sym_call_expression] = STATE(1807), + [sym_field_expression] = STATE(1807), + [sym_compound_literal_expression] = STATE(1807), + [sym_parenthesized_expression] = STATE(1807), + [sym_concatenated_string] = STATE(1807), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1807), + [sym_new_expression] = STATE(1807), + [sym_delete_expression] = STATE(1807), + [sym_lambda_expression] = STATE(1807), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4044), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(4044), + [sym_char_literal] = ACTIONS(4044), + [sym_string_literal] = ACTIONS(1337), + [sym_true] = ACTIONS(4046), + [sym_false] = ACTIONS(4046), + [sym_null] = ACTIONS(4046), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_delete] = ACTIONS(1343), + [sym_nullptr] = ACTIONS(4046), }, [1231] = { - [anon_sym_RPAREN] = ACTIONS(4046), + [sym__expression] = STATE(1808), + [sym_conditional_expression] = STATE(1808), + [sym_assignment_expression] = STATE(1808), + [sym_pointer_expression] = STATE(1808), + [sym_logical_expression] = STATE(1808), + [sym_bitwise_expression] = STATE(1808), + [sym_equality_expression] = STATE(1808), + [sym_relational_expression] = STATE(1808), + [sym_shift_expression] = STATE(1808), + [sym_math_expression] = STATE(1808), + [sym_cast_expression] = STATE(1808), + [sym_sizeof_expression] = STATE(1808), + [sym_subscript_expression] = STATE(1808), + [sym_call_expression] = STATE(1808), + [sym_field_expression] = STATE(1808), + [sym_compound_literal_expression] = STATE(1808), + [sym_parenthesized_expression] = STATE(1808), + [sym_concatenated_string] = STATE(1808), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1808), + [sym_new_expression] = STATE(1808), + [sym_delete_expression] = STATE(1808), + [sym_lambda_expression] = STATE(1808), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(1321), + [anon_sym_STAR] = ACTIONS(1325), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1325), + [anon_sym_BANG] = ACTIONS(1327), + [anon_sym_TILDE] = ACTIONS(1329), + [anon_sym_PLUS] = ACTIONS(1331), + [anon_sym_DASH] = ACTIONS(1331), + [anon_sym_DASH_DASH] = ACTIONS(1333), + [anon_sym_PLUS_PLUS] = ACTIONS(1333), + [anon_sym_sizeof] = ACTIONS(1335), + [sym_number_literal] = ACTIONS(4048), + [sym_char_literal] = ACTIONS(4048), + [sym_string_literal] = ACTIONS(1337), + [sym_true] = ACTIONS(4050), + [sym_false] = ACTIONS(4050), + [sym_null] = ACTIONS(4050), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1341), + [anon_sym_delete] = ACTIONS(1343), + [sym_nullptr] = ACTIONS(4050), }, [1232] = { + [anon_sym_RPAREN] = ACTIONS(4052), + [sym_comment] = ACTIONS(49), + }, + [1233] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -52580,7 +52641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1807), + [sym_type_descriptor] = STATE(1810), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -52644,121 +52705,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1233] = { + [1234] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1234] = { - [aux_sym_concatenated_string_repeat1] = STATE(1808), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(4048), + [1235] = { + [aux_sym_concatenated_string_repeat1] = STATE(1811), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_SEMI] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(4054), [sym_comment] = ACTIONS(49), }, - [1235] = { - [sym__expression] = STATE(1810), - [sym_conditional_expression] = STATE(1810), - [sym_assignment_expression] = STATE(1810), - [sym_pointer_expression] = STATE(1810), - [sym_logical_expression] = STATE(1810), - [sym_bitwise_expression] = STATE(1810), - [sym_equality_expression] = STATE(1810), - [sym_relational_expression] = STATE(1810), - [sym_shift_expression] = STATE(1810), - [sym_math_expression] = STATE(1810), - [sym_cast_expression] = STATE(1810), - [sym_sizeof_expression] = STATE(1810), - [sym_subscript_expression] = STATE(1810), - [sym_call_expression] = STATE(1810), - [sym_field_expression] = STATE(1810), - [sym_compound_literal_expression] = STATE(1810), - [sym_parenthesized_expression] = STATE(1810), - [sym_concatenated_string] = STATE(1810), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1810), - [sym_new_expression] = STATE(1810), - [sym_delete_expression] = STATE(1810), - [sym_lambda_expression] = STATE(1810), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4050), + [1236] = { + [sym__expression] = STATE(1813), + [sym_conditional_expression] = STATE(1813), + [sym_assignment_expression] = STATE(1813), + [sym_pointer_expression] = STATE(1813), + [sym_logical_expression] = STATE(1813), + [sym_bitwise_expression] = STATE(1813), + [sym_equality_expression] = STATE(1813), + [sym_relational_expression] = STATE(1813), + [sym_shift_expression] = STATE(1813), + [sym_math_expression] = STATE(1813), + [sym_cast_expression] = STATE(1813), + [sym_sizeof_expression] = STATE(1813), + [sym_subscript_expression] = STATE(1813), + [sym_call_expression] = STATE(1813), + [sym_field_expression] = STATE(1813), + [sym_compound_literal_expression] = STATE(1813), + [sym_parenthesized_expression] = STATE(1813), + [sym_concatenated_string] = STATE(1813), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1813), + [sym_new_expression] = STATE(1813), + [sym_delete_expression] = STATE(1813), + [sym_lambda_expression] = STATE(1813), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4056), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(4052), + [anon_sym_LBRACK] = ACTIONS(4058), [anon_sym_AMP] = ACTIONS(1349), [anon_sym_BANG] = ACTIONS(1351), [anon_sym_TILDE] = ACTIONS(1353), @@ -52767,20 +52828,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4050), - [sym_char_literal] = ACTIONS(4050), + [sym_number_literal] = ACTIONS(4056), + [sym_char_literal] = ACTIONS(4056), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4054), - [sym_false] = ACTIONS(4054), - [sym_null] = ACTIONS(4054), + [sym_true] = ACTIONS(4060), + [sym_false] = ACTIONS(4060), + [sym_null] = ACTIONS(4060), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4054), + [sym_nullptr] = ACTIONS(4060), }, - [1236] = { + [1237] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -52813,7 +52874,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4056), + [anon_sym_RBRACK] = ACTIONS(4062), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -52836,279 +52897,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1237] = { + [1238] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1238] = { - [ts_builtin_sym_end] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_template] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_using] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [sym_operator_name] = ACTIONS(4058), - }, [1239] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(2748), + [ts_builtin_sym_end] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [sym_operator_name] = ACTIONS(4064), }, [1240] = { - [sym__expression] = STATE(1812), - [sym_conditional_expression] = STATE(1812), - [sym_assignment_expression] = STATE(1812), - [sym_pointer_expression] = STATE(1812), - [sym_logical_expression] = STATE(1812), - [sym_bitwise_expression] = STATE(1812), - [sym_equality_expression] = STATE(1812), - [sym_relational_expression] = STATE(1812), - [sym_shift_expression] = STATE(1812), - [sym_math_expression] = STATE(1812), - [sym_cast_expression] = STATE(1812), - [sym_sizeof_expression] = STATE(1812), - [sym_subscript_expression] = STATE(1812), - [sym_call_expression] = STATE(1812), - [sym_field_expression] = STATE(1812), - [sym_compound_literal_expression] = STATE(1812), - [sym_parenthesized_expression] = STATE(1812), - [sym_concatenated_string] = STATE(1812), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1812), - [sym_new_expression] = STATE(1812), - [sym_delete_expression] = STATE(1812), - [sym_lambda_expression] = STATE(1812), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4062), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4062), - [sym_char_literal] = ACTIONS(4062), - [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4064), - [sym_false] = ACTIONS(4064), - [sym_null] = ACTIONS(4064), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4064), - }, - [1241] = { - [sym__expression] = STATE(1813), - [sym_conditional_expression] = STATE(1813), - [sym_assignment_expression] = STATE(1813), - [sym_pointer_expression] = STATE(1813), - [sym_logical_expression] = STATE(1813), - [sym_bitwise_expression] = STATE(1813), - [sym_equality_expression] = STATE(1813), - [sym_relational_expression] = STATE(1813), - [sym_shift_expression] = STATE(1813), - [sym_math_expression] = STATE(1813), - [sym_cast_expression] = STATE(1813), - [sym_sizeof_expression] = STATE(1813), - [sym_subscript_expression] = STATE(1813), - [sym_call_expression] = STATE(1813), - [sym_field_expression] = STATE(1813), - [sym_compound_literal_expression] = STATE(1813), - [sym_parenthesized_expression] = STATE(1813), - [sym_concatenated_string] = STATE(1813), + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1813), - [sym_new_expression] = STATE(1813), - [sym_delete_expression] = STATE(1813), - [sym_lambda_expression] = STATE(1813), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4066), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4066), - [sym_char_literal] = ACTIONS(4066), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4068), - [sym_false] = ACTIONS(4068), - [sym_null] = ACTIONS(4068), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4068), - }, - [1242] = { - [sym__expression] = STATE(1814), - [sym_conditional_expression] = STATE(1814), - [sym_assignment_expression] = STATE(1814), - [sym_pointer_expression] = STATE(1814), - [sym_logical_expression] = STATE(1814), - [sym_bitwise_expression] = STATE(1814), - [sym_equality_expression] = STATE(1814), - [sym_relational_expression] = STATE(1814), - [sym_shift_expression] = STATE(1814), - [sym_math_expression] = STATE(1814), - [sym_cast_expression] = STATE(1814), - [sym_sizeof_expression] = STATE(1814), - [sym_subscript_expression] = STATE(1814), - [sym_call_expression] = STATE(1814), - [sym_field_expression] = STATE(1814), - [sym_compound_literal_expression] = STATE(1814), - [sym_parenthesized_expression] = STATE(1814), - [sym_concatenated_string] = STATE(1814), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1814), - [sym_new_expression] = STATE(1814), - [sym_delete_expression] = STATE(1814), - [sym_lambda_expression] = STATE(1814), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4070), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53120,20 +53022,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4070), - [sym_char_literal] = ACTIONS(4070), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4072), - [sym_false] = ACTIONS(4072), - [sym_null] = ACTIONS(4072), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4072), + [sym_nullptr] = ACTIONS(2750), }, - [1243] = { + [1241] = { [sym__expression] = STATE(1815), [sym_conditional_expression] = STATE(1815), [sym_assignment_expression] = STATE(1815), @@ -53161,7 +53063,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4074), + [sym_raw_string_literal] = ACTIONS(4068), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53173,20 +53075,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4074), - [sym_char_literal] = ACTIONS(4074), + [sym_number_literal] = ACTIONS(4068), + [sym_char_literal] = ACTIONS(4068), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4076), - [sym_false] = ACTIONS(4076), - [sym_null] = ACTIONS(4076), + [sym_true] = ACTIONS(4070), + [sym_false] = ACTIONS(4070), + [sym_null] = ACTIONS(4070), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4076), + [sym_nullptr] = ACTIONS(4070), }, - [1244] = { + [1242] = { [sym__expression] = STATE(1816), [sym_conditional_expression] = STATE(1816), [sym_assignment_expression] = STATE(1816), @@ -53211,35 +53113,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1816), [sym_lambda_expression] = STATE(1816), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_STAR] = ACTIONS(1349), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1349), - [anon_sym_BANG] = ACTIONS(1351), - [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_DASH_DASH] = ACTIONS(1357), - [anon_sym_PLUS_PLUS] = ACTIONS(1357), - [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4078), - [sym_char_literal] = ACTIONS(4078), - [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4080), - [sym_false] = ACTIONS(4080), - [sym_null] = ACTIONS(4080), + [sym_raw_string_literal] = ACTIONS(4072), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4072), + [sym_char_literal] = ACTIONS(4072), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4074), + [sym_false] = ACTIONS(4074), + [sym_null] = ACTIONS(4074), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4080), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4074), }, - [1245] = { + [1243] = { [sym__expression] = STATE(1817), [sym_conditional_expression] = STATE(1817), [sym_assignment_expression] = STATE(1817), @@ -53267,7 +53169,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4082), + [sym_raw_string_literal] = ACTIONS(4076), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53279,20 +53181,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4082), - [sym_char_literal] = ACTIONS(4082), + [sym_number_literal] = ACTIONS(4076), + [sym_char_literal] = ACTIONS(4076), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4084), - [sym_false] = ACTIONS(4084), - [sym_null] = ACTIONS(4084), + [sym_true] = ACTIONS(4078), + [sym_false] = ACTIONS(4078), + [sym_null] = ACTIONS(4078), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4084), + [sym_nullptr] = ACTIONS(4078), }, - [1246] = { + [1244] = { [sym__expression] = STATE(1818), [sym_conditional_expression] = STATE(1818), [sym_assignment_expression] = STATE(1818), @@ -53320,7 +53222,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4086), + [sym_raw_string_literal] = ACTIONS(4080), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53332,20 +53234,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4086), - [sym_char_literal] = ACTIONS(4086), + [sym_number_literal] = ACTIONS(4080), + [sym_char_literal] = ACTIONS(4080), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4088), - [sym_false] = ACTIONS(4088), - [sym_null] = ACTIONS(4088), + [sym_true] = ACTIONS(4082), + [sym_false] = ACTIONS(4082), + [sym_null] = ACTIONS(4082), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4088), + [sym_nullptr] = ACTIONS(4082), }, - [1247] = { + [1245] = { [sym__expression] = STATE(1819), [sym_conditional_expression] = STATE(1819), [sym_assignment_expression] = STATE(1819), @@ -53373,7 +53275,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4090), + [sym_raw_string_literal] = ACTIONS(4084), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53385,20 +53287,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4090), - [sym_char_literal] = ACTIONS(4090), + [sym_number_literal] = ACTIONS(4084), + [sym_char_literal] = ACTIONS(4084), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4092), - [sym_false] = ACTIONS(4092), - [sym_null] = ACTIONS(4092), + [sym_true] = ACTIONS(4086), + [sym_false] = ACTIONS(4086), + [sym_null] = ACTIONS(4086), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4092), + [sym_nullptr] = ACTIONS(4086), }, - [1248] = { + [1246] = { [sym__expression] = STATE(1820), [sym_conditional_expression] = STATE(1820), [sym_assignment_expression] = STATE(1820), @@ -53426,7 +53328,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4094), + [sym_raw_string_literal] = ACTIONS(4088), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53438,20 +53340,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4094), - [sym_char_literal] = ACTIONS(4094), + [sym_number_literal] = ACTIONS(4088), + [sym_char_literal] = ACTIONS(4088), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4096), - [sym_false] = ACTIONS(4096), - [sym_null] = ACTIONS(4096), + [sym_true] = ACTIONS(4090), + [sym_false] = ACTIONS(4090), + [sym_null] = ACTIONS(4090), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4096), + [sym_nullptr] = ACTIONS(4090), }, - [1249] = { + [1247] = { [sym__expression] = STATE(1821), [sym_conditional_expression] = STATE(1821), [sym_assignment_expression] = STATE(1821), @@ -53479,7 +53381,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4098), + [sym_raw_string_literal] = ACTIONS(4092), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53491,20 +53393,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4098), - [sym_char_literal] = ACTIONS(4098), + [sym_number_literal] = ACTIONS(4092), + [sym_char_literal] = ACTIONS(4092), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4100), - [sym_false] = ACTIONS(4100), - [sym_null] = ACTIONS(4100), + [sym_true] = ACTIONS(4094), + [sym_false] = ACTIONS(4094), + [sym_null] = ACTIONS(4094), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4100), + [sym_nullptr] = ACTIONS(4094), }, - [1250] = { + [1248] = { [sym__expression] = STATE(1822), [sym_conditional_expression] = STATE(1822), [sym_assignment_expression] = STATE(1822), @@ -53532,7 +53434,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4102), + [sym_raw_string_literal] = ACTIONS(4096), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -53544,97 +53446,256 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4102), - [sym_char_literal] = ACTIONS(4102), + [sym_number_literal] = ACTIONS(4096), + [sym_char_literal] = ACTIONS(4096), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4104), - [sym_false] = ACTIONS(4104), - [sym_null] = ACTIONS(4104), + [sym_true] = ACTIONS(4098), + [sym_false] = ACTIONS(4098), + [sym_null] = ACTIONS(4098), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4104), + [sym_nullptr] = ACTIONS(4098), }, - [1251] = { - [ts_builtin_sym_end] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [sym_operator_name] = ACTIONS(4106), + [1249] = { + [sym__expression] = STATE(1823), + [sym_conditional_expression] = STATE(1823), + [sym_assignment_expression] = STATE(1823), + [sym_pointer_expression] = STATE(1823), + [sym_logical_expression] = STATE(1823), + [sym_bitwise_expression] = STATE(1823), + [sym_equality_expression] = STATE(1823), + [sym_relational_expression] = STATE(1823), + [sym_shift_expression] = STATE(1823), + [sym_math_expression] = STATE(1823), + [sym_cast_expression] = STATE(1823), + [sym_sizeof_expression] = STATE(1823), + [sym_subscript_expression] = STATE(1823), + [sym_call_expression] = STATE(1823), + [sym_field_expression] = STATE(1823), + [sym_compound_literal_expression] = STATE(1823), + [sym_parenthesized_expression] = STATE(1823), + [sym_concatenated_string] = STATE(1823), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1823), + [sym_new_expression] = STATE(1823), + [sym_delete_expression] = STATE(1823), + [sym_lambda_expression] = STATE(1823), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4100), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(4100), + [sym_char_literal] = ACTIONS(4100), + [sym_string_literal] = ACTIONS(1361), + [sym_true] = ACTIONS(4102), + [sym_false] = ACTIONS(4102), + [sym_null] = ACTIONS(4102), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_delete] = ACTIONS(1367), + [sym_nullptr] = ACTIONS(4102), }, - [1252] = { - [anon_sym_COMMA] = ACTIONS(4110), - [anon_sym_RPAREN] = ACTIONS(4110), + [1250] = { + [sym__expression] = STATE(1824), + [sym_conditional_expression] = STATE(1824), + [sym_assignment_expression] = STATE(1824), + [sym_pointer_expression] = STATE(1824), + [sym_logical_expression] = STATE(1824), + [sym_bitwise_expression] = STATE(1824), + [sym_equality_expression] = STATE(1824), + [sym_relational_expression] = STATE(1824), + [sym_shift_expression] = STATE(1824), + [sym_math_expression] = STATE(1824), + [sym_cast_expression] = STATE(1824), + [sym_sizeof_expression] = STATE(1824), + [sym_subscript_expression] = STATE(1824), + [sym_call_expression] = STATE(1824), + [sym_field_expression] = STATE(1824), + [sym_compound_literal_expression] = STATE(1824), + [sym_parenthesized_expression] = STATE(1824), + [sym_concatenated_string] = STATE(1824), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1824), + [sym_new_expression] = STATE(1824), + [sym_delete_expression] = STATE(1824), + [sym_lambda_expression] = STATE(1824), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4104), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(4104), + [sym_char_literal] = ACTIONS(4104), + [sym_string_literal] = ACTIONS(1361), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [sym_null] = ACTIONS(4106), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_delete] = ACTIONS(1367), + [sym_nullptr] = ACTIONS(4106), }, - [1253] = { + [1251] = { + [sym__expression] = STATE(1825), + [sym_conditional_expression] = STATE(1825), + [sym_assignment_expression] = STATE(1825), + [sym_pointer_expression] = STATE(1825), + [sym_logical_expression] = STATE(1825), + [sym_bitwise_expression] = STATE(1825), + [sym_equality_expression] = STATE(1825), + [sym_relational_expression] = STATE(1825), + [sym_shift_expression] = STATE(1825), + [sym_math_expression] = STATE(1825), + [sym_cast_expression] = STATE(1825), + [sym_sizeof_expression] = STATE(1825), + [sym_subscript_expression] = STATE(1825), + [sym_call_expression] = STATE(1825), + [sym_field_expression] = STATE(1825), + [sym_compound_literal_expression] = STATE(1825), + [sym_parenthesized_expression] = STATE(1825), + [sym_concatenated_string] = STATE(1825), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1825), + [sym_new_expression] = STATE(1825), + [sym_delete_expression] = STATE(1825), + [sym_lambda_expression] = STATE(1825), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4108), + [anon_sym_LPAREN] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(1349), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1349), + [anon_sym_BANG] = ACTIONS(1351), + [anon_sym_TILDE] = ACTIONS(1353), + [anon_sym_PLUS] = ACTIONS(1355), + [anon_sym_DASH] = ACTIONS(1355), + [anon_sym_DASH_DASH] = ACTIONS(1357), + [anon_sym_PLUS_PLUS] = ACTIONS(1357), + [anon_sym_sizeof] = ACTIONS(1359), + [sym_number_literal] = ACTIONS(4108), + [sym_char_literal] = ACTIONS(4108), + [sym_string_literal] = ACTIONS(1361), + [sym_true] = ACTIONS(4110), + [sym_false] = ACTIONS(4110), + [sym_null] = ACTIONS(4110), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1365), + [anon_sym_delete] = ACTIONS(1367), + [sym_nullptr] = ACTIONS(4110), + }, + [1252] = { + [ts_builtin_sym_end] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), [anon_sym_LPAREN] = ACTIONS(4112), - [anon_sym_COMMA] = ACTIONS(4112), - [anon_sym_RPAREN] = ACTIONS(4112), - [anon_sym_SEMI] = ACTIONS(4112), - [anon_sym_LBRACE] = ACTIONS(4112), - [anon_sym_LBRACK] = ACTIONS(4112), - [anon_sym_EQ] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), [anon_sym_const] = ACTIONS(4114), - [anon_sym_restrict] = ACTIONS(4112), - [anon_sym_volatile] = ACTIONS(4112), - [anon_sym__Atomic] = ACTIONS(4112), - [anon_sym_mutable] = ACTIONS(4112), - [anon_sym_explicit] = ACTIONS(4112), - [anon_sym_constexpr] = ACTIONS(4112), - [anon_sym_COLON] = ACTIONS(4112), - [anon_sym_GT] = ACTIONS(4112), - [anon_sym_DASH_GT] = ACTIONS(4112), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4112), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [sym_operator_name] = ACTIONS(4112), }, - [1254] = { - [aux_sym_parameter_list_repeat1] = STATE(1254), + [1253] = { [anon_sym_COMMA] = ACTIONS(4116), - [anon_sym_RPAREN] = ACTIONS(4110), + [anon_sym_RPAREN] = ACTIONS(4116), [sym_comment] = ACTIONS(49), }, + [1254] = { + [anon_sym_LPAREN] = ACTIONS(4118), + [anon_sym_COMMA] = ACTIONS(4118), + [anon_sym_RPAREN] = ACTIONS(4118), + [anon_sym_SEMI] = ACTIONS(4118), + [anon_sym_LBRACE] = ACTIONS(4118), + [anon_sym_LBRACK] = ACTIONS(4118), + [anon_sym_EQ] = ACTIONS(4118), + [anon_sym_const] = ACTIONS(4120), + [anon_sym_restrict] = ACTIONS(4118), + [anon_sym_volatile] = ACTIONS(4118), + [anon_sym__Atomic] = ACTIONS(4118), + [anon_sym_mutable] = ACTIONS(4118), + [anon_sym_explicit] = ACTIONS(4118), + [anon_sym_constexpr] = ACTIONS(4118), + [anon_sym_COLON] = ACTIONS(4118), + [anon_sym_GT] = ACTIONS(4118), + [anon_sym_DASH_GT] = ACTIONS(4118), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4118), + }, [1255] = { - [sym_parameter_list] = STATE(1260), + [aux_sym_parameter_list_repeat1] = STATE(1255), + [anon_sym_COMMA] = ACTIONS(4122), + [anon_sym_RPAREN] = ACTIONS(4116), + [sym_comment] = ACTIONS(49), + }, + [1256] = { + [sym_parameter_list] = STATE(1261), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(837), [anon_sym_RPAREN] = ACTIONS(837), @@ -53643,16 +53704,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(837), [sym_comment] = ACTIONS(49), }, - [1256] = { - [sym_parameter_list] = STATE(1261), + [1257] = { + [sym_parameter_list] = STATE(1262), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_RPAREN] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_RPAREN] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1257] = { - [sym_parameter_list] = STATE(1260), + [1258] = { + [sym_parameter_list] = STATE(1261), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(839), [anon_sym_RPAREN] = ACTIONS(839), @@ -53661,44 +53722,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(839), [sym_comment] = ACTIONS(49), }, - [1258] = { - [sym_parameter_list] = STATE(1261), + [1259] = { + [sym_parameter_list] = STATE(1262), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_RPAREN] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_RPAREN] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1259] = { - [sym__expression] = STATE(1823), - [sym_conditional_expression] = STATE(1823), - [sym_assignment_expression] = STATE(1823), - [sym_pointer_expression] = STATE(1823), - [sym_logical_expression] = STATE(1823), - [sym_bitwise_expression] = STATE(1823), - [sym_equality_expression] = STATE(1823), - [sym_relational_expression] = STATE(1823), - [sym_shift_expression] = STATE(1823), - [sym_math_expression] = STATE(1823), - [sym_cast_expression] = STATE(1823), - [sym_sizeof_expression] = STATE(1823), - [sym_subscript_expression] = STATE(1823), - [sym_call_expression] = STATE(1823), - [sym_field_expression] = STATE(1823), - [sym_compound_literal_expression] = STATE(1823), - [sym_parenthesized_expression] = STATE(1823), + [1260] = { + [sym__expression] = STATE(1826), + [sym_conditional_expression] = STATE(1826), + [sym_assignment_expression] = STATE(1826), + [sym_pointer_expression] = STATE(1826), + [sym_logical_expression] = STATE(1826), + [sym_bitwise_expression] = STATE(1826), + [sym_equality_expression] = STATE(1826), + [sym_relational_expression] = STATE(1826), + [sym_shift_expression] = STATE(1826), + [sym_math_expression] = STATE(1826), + [sym_cast_expression] = STATE(1826), + [sym_sizeof_expression] = STATE(1826), + [sym_subscript_expression] = STATE(1826), + [sym_call_expression] = STATE(1826), + [sym_field_expression] = STATE(1826), + [sym_compound_literal_expression] = STATE(1826), + [sym_parenthesized_expression] = STATE(1826), [sym_initializer_list] = STATE(674), - [sym_concatenated_string] = STATE(1823), + [sym_concatenated_string] = STATE(1826), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1823), - [sym_new_expression] = STATE(1823), - [sym_delete_expression] = STATE(1823), - [sym_lambda_expression] = STATE(1823), + [sym_template_function] = STATE(1826), + [sym_new_expression] = STATE(1826), + [sym_delete_expression] = STATE(1826), + [sym_lambda_expression] = STATE(1826), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4119), + [sym_raw_string_literal] = ACTIONS(4125), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1089), @@ -53711,23 +53772,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(4119), - [sym_char_literal] = ACTIONS(4119), + [sym_number_literal] = ACTIONS(4125), + [sym_char_literal] = ACTIONS(4125), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(4121), - [sym_false] = ACTIONS(4121), - [sym_null] = ACTIONS(4121), + [sym_true] = ACTIONS(4127), + [sym_false] = ACTIONS(4127), + [sym_null] = ACTIONS(4127), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(4121), + [sym_nullptr] = ACTIONS(4127), }, - [1260] = { - [sym_type_qualifier] = STATE(1825), - [sym_trailing_return_type] = STATE(1825), - [aux_sym_function_declarator_repeat1] = STATE(1825), + [1261] = { + [sym_type_qualifier] = STATE(1828), + [sym_trailing_return_type] = STATE(1828), + [aux_sym_function_declarator_repeat1] = STATE(1828), [anon_sym_LPAREN] = ACTIONS(610), [anon_sym_COMMA] = ACTIONS(610), [anon_sym_RPAREN] = ACTIONS(610), @@ -53741,18 +53802,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4129), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4125), + [sym_noexcept] = ACTIONS(4131), }, - [1261] = { - [sym_type_qualifier] = STATE(1826), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1826), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1262] = { + [sym_type_qualifier] = STATE(1829), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1829), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -53760,45 +53821,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4127), + [sym_noexcept] = ACTIONS(4133), }, - [1262] = { - [sym__type_specifier] = STATE(1828), - [sym_sized_type_specifier] = STATE(1828), - [sym_enum_specifier] = STATE(1828), - [sym_struct_specifier] = STATE(1828), - [sym_union_specifier] = STATE(1828), - [sym_macro_type_specifier] = STATE(1828), - [sym_class_specifier] = STATE(1828), - [sym_dependent_type] = STATE(1828), + [1263] = { + [sym__type_specifier] = STATE(1831), + [sym_sized_type_specifier] = STATE(1831), + [sym_enum_specifier] = STATE(1831), + [sym_struct_specifier] = STATE(1831), + [sym_union_specifier] = STATE(1831), + [sym_macro_type_specifier] = STATE(1831), + [sym_class_specifier] = STATE(1831), + [sym_dependent_type] = STATE(1831), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1829), - [anon_sym_unsigned] = ACTIONS(4129), - [anon_sym_long] = ACTIONS(4129), - [anon_sym_short] = ACTIONS(4129), - [sym_primitive_type] = ACTIONS(4131), + [aux_sym_sized_type_specifier_repeat1] = STATE(1832), + [anon_sym_unsigned] = ACTIONS(4135), + [anon_sym_long] = ACTIONS(4135), + [anon_sym_short] = ACTIONS(4135), + [sym_primitive_type] = ACTIONS(4137), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(4131), - [anon_sym_typename] = ACTIONS(4133), + [sym_auto] = ACTIONS(4137), + [anon_sym_typename] = ACTIONS(4139), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1263] = { - [sym_type_qualifier] = STATE(1830), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1830), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1264] = { + [sym_type_qualifier] = STATE(1833), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1833), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -53806,30 +53867,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4135), + [sym_noexcept] = ACTIONS(4141), }, - [1264] = { - [sym_storage_class_specifier] = STATE(1264), - [sym_type_qualifier] = STATE(1264), - [aux_sym__declaration_specifiers_repeat1] = STATE(1264), + [1265] = { + [sym_storage_class_specifier] = STATE(1265), + [sym_type_qualifier] = STATE(1265), + [aux_sym__declaration_specifiers_repeat1] = STATE(1265), [anon_sym_LPAREN] = ACTIONS(798), [anon_sym_COMMA] = ACTIONS(798), [anon_sym_RPAREN] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1792), [anon_sym_STAR] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(798), - [anon_sym_static] = ACTIONS(1790), - [anon_sym_register] = ACTIONS(1790), - [anon_sym_inline] = ACTIONS(1790), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_restrict] = ACTIONS(1793), - [anon_sym_volatile] = ACTIONS(1793), - [anon_sym__Atomic] = ACTIONS(1793), - [anon_sym_mutable] = ACTIONS(1793), - [anon_sym_explicit] = ACTIONS(1793), - [anon_sym_constexpr] = ACTIONS(1793), + [anon_sym_static] = ACTIONS(1792), + [anon_sym_register] = ACTIONS(1792), + [anon_sym_inline] = ACTIONS(1792), + [anon_sym_const] = ACTIONS(1795), + [anon_sym_restrict] = ACTIONS(1795), + [anon_sym_volatile] = ACTIONS(1795), + [anon_sym__Atomic] = ACTIONS(1795), + [anon_sym_mutable] = ACTIONS(1795), + [anon_sym_explicit] = ACTIONS(1795), + [anon_sym_constexpr] = ACTIONS(1795), [anon_sym_AMP] = ACTIONS(806), [anon_sym_AMP_AMP] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -53838,16 +53899,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(798), [sym_operator_name] = ACTIONS(798), }, - [1265] = { - [sym_storage_class_specifier] = STATE(1264), - [sym_type_qualifier] = STATE(1264), - [aux_sym__declaration_specifiers_repeat1] = STATE(1264), - [anon_sym_LPAREN] = ACTIONS(1809), - [anon_sym_COMMA] = ACTIONS(1809), - [anon_sym_RPAREN] = ACTIONS(1809), + [1266] = { + [sym_storage_class_specifier] = STATE(1265), + [sym_type_qualifier] = STATE(1265), + [aux_sym__declaration_specifiers_repeat1] = STATE(1265), + [anon_sym_LPAREN] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1811), + [anon_sym_RPAREN] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(218), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), [anon_sym_static] = ACTIONS(218), [anon_sym_register] = ACTIONS(218), [anon_sym_inline] = ACTIONS(218), @@ -53858,96 +53919,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(220), [anon_sym_explicit] = ACTIONS(220), [anon_sym_constexpr] = ACTIONS(220), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_AMP_AMP] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [sym_identifier] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1813), + [anon_sym_AMP_AMP] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [sym_identifier] = ACTIONS(1813), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [sym_operator_name] = ACTIONS(1809), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [sym_operator_name] = ACTIONS(1811), }, - [1266] = { - [sym_parameter_list] = STATE(1704), + [1267] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(2278), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1267] = { - [anon_sym_LPAREN] = ACTIONS(3690), - [anon_sym_COMMA] = ACTIONS(3690), - [anon_sym_RPAREN] = ACTIONS(3690), - [anon_sym_SEMI] = ACTIONS(3690), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_STAR] = ACTIONS(4137), - [anon_sym_LBRACK] = ACTIONS(3690), - [anon_sym_RBRACK] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(4137), - [anon_sym_COLON] = ACTIONS(3690), - [anon_sym_QMARK] = ACTIONS(3690), - [anon_sym_STAR_EQ] = ACTIONS(3690), - [anon_sym_SLASH_EQ] = ACTIONS(3690), - [anon_sym_PERCENT_EQ] = ACTIONS(3690), - [anon_sym_PLUS_EQ] = ACTIONS(3690), - [anon_sym_DASH_EQ] = ACTIONS(3690), - [anon_sym_LT_LT_EQ] = ACTIONS(3690), - [anon_sym_GT_GT_EQ] = ACTIONS(3690), - [anon_sym_AMP_EQ] = ACTIONS(3690), - [anon_sym_CARET_EQ] = ACTIONS(3690), - [anon_sym_PIPE_EQ] = ACTIONS(3690), - [anon_sym_AMP] = ACTIONS(4137), - [anon_sym_PIPE_PIPE] = ACTIONS(3690), - [anon_sym_AMP_AMP] = ACTIONS(3690), - [anon_sym_PIPE] = ACTIONS(4137), - [anon_sym_CARET] = ACTIONS(4137), - [anon_sym_EQ_EQ] = ACTIONS(3690), - [anon_sym_BANG_EQ] = ACTIONS(3690), - [anon_sym_LT] = ACTIONS(4137), - [anon_sym_GT] = ACTIONS(4137), - [anon_sym_LT_EQ] = ACTIONS(3690), - [anon_sym_GT_EQ] = ACTIONS(3690), - [anon_sym_LT_LT] = ACTIONS(4137), - [anon_sym_GT_GT] = ACTIONS(4137), - [anon_sym_PLUS] = ACTIONS(4137), - [anon_sym_DASH] = ACTIONS(4137), - [anon_sym_SLASH] = ACTIONS(4137), - [anon_sym_PERCENT] = ACTIONS(4137), - [anon_sym_DASH_DASH] = ACTIONS(3690), - [anon_sym_PLUS_PLUS] = ACTIONS(3690), - [anon_sym_DOT] = ACTIONS(3690), - [anon_sym_DASH_GT] = ACTIONS(3690), + [1268] = { + [anon_sym_LPAREN] = ACTIONS(3696), + [anon_sym_COMMA] = ACTIONS(3696), + [anon_sym_RPAREN] = ACTIONS(3696), + [anon_sym_SEMI] = ACTIONS(3696), + [anon_sym_RBRACE] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(4143), + [anon_sym_LBRACK] = ACTIONS(3696), + [anon_sym_RBRACK] = ACTIONS(3696), + [anon_sym_EQ] = ACTIONS(4143), + [anon_sym_COLON] = ACTIONS(3696), + [anon_sym_QMARK] = ACTIONS(3696), + [anon_sym_STAR_EQ] = ACTIONS(3696), + [anon_sym_SLASH_EQ] = ACTIONS(3696), + [anon_sym_PERCENT_EQ] = ACTIONS(3696), + [anon_sym_PLUS_EQ] = ACTIONS(3696), + [anon_sym_DASH_EQ] = ACTIONS(3696), + [anon_sym_LT_LT_EQ] = ACTIONS(3696), + [anon_sym_GT_GT_EQ] = ACTIONS(3696), + [anon_sym_AMP_EQ] = ACTIONS(3696), + [anon_sym_CARET_EQ] = ACTIONS(3696), + [anon_sym_PIPE_EQ] = ACTIONS(3696), + [anon_sym_AMP] = ACTIONS(4143), + [anon_sym_PIPE_PIPE] = ACTIONS(3696), + [anon_sym_AMP_AMP] = ACTIONS(3696), + [anon_sym_PIPE] = ACTIONS(4143), + [anon_sym_CARET] = ACTIONS(4143), + [anon_sym_EQ_EQ] = ACTIONS(3696), + [anon_sym_BANG_EQ] = ACTIONS(3696), + [anon_sym_LT] = ACTIONS(4143), + [anon_sym_GT] = ACTIONS(4143), + [anon_sym_LT_EQ] = ACTIONS(3696), + [anon_sym_GT_EQ] = ACTIONS(3696), + [anon_sym_LT_LT] = ACTIONS(4143), + [anon_sym_GT_GT] = ACTIONS(4143), + [anon_sym_PLUS] = ACTIONS(4143), + [anon_sym_DASH] = ACTIONS(4143), + [anon_sym_SLASH] = ACTIONS(4143), + [anon_sym_PERCENT] = ACTIONS(4143), + [anon_sym_DASH_DASH] = ACTIONS(3696), + [anon_sym_PLUS_PLUS] = ACTIONS(3696), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_DASH_GT] = ACTIONS(3696), [sym_comment] = ACTIONS(49), }, - [1268] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1269] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(568), @@ -53960,54 +54021,54 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1269] = { - [sym__abstract_declarator] = STATE(1833), - [sym_abstract_pointer_declarator] = STATE(1833), - [sym_abstract_function_declarator] = STATE(1833), - [sym_abstract_array_declarator] = STATE(1833), - [sym_parameter_list] = STATE(1119), - [sym_abstract_reference_declarator] = STATE(1833), + [1270] = { + [sym__abstract_declarator] = STATE(1836), + [sym_abstract_pointer_declarator] = STATE(1836), + [sym_abstract_function_declarator] = STATE(1836), + [sym_abstract_array_declarator] = STATE(1836), + [sym_parameter_list] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(1836), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_comment] = ACTIONS(49), }, - [1270] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1270), + [1271] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1271), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_RPAREN] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(4143), - [anon_sym_long] = ACTIONS(4143), - [anon_sym_short] = ACTIONS(4143), + [anon_sym_unsigned] = ACTIONS(4149), + [anon_sym_long] = ACTIONS(4149), + [anon_sym_short] = ACTIONS(4149), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [1271] = { - [anon_sym_RPAREN] = ACTIONS(4146), + [1272] = { + [anon_sym_RPAREN] = ACTIONS(4152), [sym_comment] = ACTIONS(49), }, - [1272] = { + [1273] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -54026,7 +54087,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1835), + [sym_type_descriptor] = STATE(1838), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -54090,123 +54151,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1273] = { + [1274] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1274] = { - [aux_sym_concatenated_string_repeat1] = STATE(1836), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_RBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(4148), + [1275] = { + [aux_sym_concatenated_string_repeat1] = STATE(1839), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_RBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(4154), [sym_comment] = ACTIONS(49), }, - [1275] = { - [sym__expression] = STATE(1838), - [sym_conditional_expression] = STATE(1838), - [sym_assignment_expression] = STATE(1838), - [sym_pointer_expression] = STATE(1838), - [sym_logical_expression] = STATE(1838), - [sym_bitwise_expression] = STATE(1838), - [sym_equality_expression] = STATE(1838), - [sym_relational_expression] = STATE(1838), - [sym_shift_expression] = STATE(1838), - [sym_math_expression] = STATE(1838), - [sym_cast_expression] = STATE(1838), - [sym_sizeof_expression] = STATE(1838), - [sym_subscript_expression] = STATE(1838), - [sym_call_expression] = STATE(1838), - [sym_field_expression] = STATE(1838), - [sym_compound_literal_expression] = STATE(1838), - [sym_parenthesized_expression] = STATE(1838), - [sym_concatenated_string] = STATE(1838), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1838), - [sym_new_expression] = STATE(1838), - [sym_delete_expression] = STATE(1838), - [sym_lambda_expression] = STATE(1838), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4150), + [1276] = { + [sym__expression] = STATE(1841), + [sym_conditional_expression] = STATE(1841), + [sym_assignment_expression] = STATE(1841), + [sym_pointer_expression] = STATE(1841), + [sym_logical_expression] = STATE(1841), + [sym_bitwise_expression] = STATE(1841), + [sym_equality_expression] = STATE(1841), + [sym_relational_expression] = STATE(1841), + [sym_shift_expression] = STATE(1841), + [sym_math_expression] = STATE(1841), + [sym_cast_expression] = STATE(1841), + [sym_sizeof_expression] = STATE(1841), + [sym_subscript_expression] = STATE(1841), + [sym_call_expression] = STATE(1841), + [sym_field_expression] = STATE(1841), + [sym_compound_literal_expression] = STATE(1841), + [sym_parenthesized_expression] = STATE(1841), + [sym_concatenated_string] = STATE(1841), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1841), + [sym_new_expression] = STATE(1841), + [sym_delete_expression] = STATE(1841), + [sym_lambda_expression] = STATE(1841), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4156), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(4152), + [anon_sym_LBRACK] = ACTIONS(4158), [anon_sym_AMP] = ACTIONS(1421), [anon_sym_BANG] = ACTIONS(1429), [anon_sym_TILDE] = ACTIONS(1431), @@ -54215,20 +54276,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4150), - [sym_char_literal] = ACTIONS(4150), + [sym_number_literal] = ACTIONS(4156), + [sym_char_literal] = ACTIONS(4156), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4154), - [sym_false] = ACTIONS(4154), - [sym_null] = ACTIONS(4154), + [sym_true] = ACTIONS(4160), + [sym_false] = ACTIONS(4160), + [sym_null] = ACTIONS(4160), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4154), + [sym_nullptr] = ACTIONS(4160), }, - [1276] = { + [1277] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -54261,7 +54322,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4156), + [anon_sym_RBRACK] = ACTIONS(4162), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -54284,191 +54345,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1277] = { + [1278] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(2740), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1278] = { - [sym__expression] = STATE(1840), - [sym_conditional_expression] = STATE(1840), - [sym_assignment_expression] = STATE(1840), - [sym_pointer_expression] = STATE(1840), - [sym_logical_expression] = STATE(1840), - [sym_bitwise_expression] = STATE(1840), - [sym_equality_expression] = STATE(1840), - [sym_relational_expression] = STATE(1840), - [sym_shift_expression] = STATE(1840), - [sym_math_expression] = STATE(1840), - [sym_cast_expression] = STATE(1840), - [sym_sizeof_expression] = STATE(1840), - [sym_subscript_expression] = STATE(1840), - [sym_call_expression] = STATE(1840), - [sym_field_expression] = STATE(1840), - [sym_compound_literal_expression] = STATE(1840), - [sym_parenthesized_expression] = STATE(1840), - [sym_concatenated_string] = STATE(1840), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1840), - [sym_new_expression] = STATE(1840), - [sym_delete_expression] = STATE(1840), - [sym_lambda_expression] = STATE(1840), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4158), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4158), - [sym_char_literal] = ACTIONS(4158), - [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4160), - [sym_false] = ACTIONS(4160), - [sym_null] = ACTIONS(4160), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1443), - [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4160), - }, [1279] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1443), - [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(2748), - }, - [1280] = { - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [sym_comment] = ACTIONS(49), - }, - [1281] = { - [sym__expression] = STATE(1841), - [sym_conditional_expression] = STATE(1841), - [sym_assignment_expression] = STATE(1841), - [sym_pointer_expression] = STATE(1841), - [sym_logical_expression] = STATE(1841), - [sym_bitwise_expression] = STATE(1841), - [sym_equality_expression] = STATE(1841), - [sym_relational_expression] = STATE(1841), - [sym_shift_expression] = STATE(1841), - [sym_math_expression] = STATE(1841), - [sym_cast_expression] = STATE(1841), - [sym_sizeof_expression] = STATE(1841), - [sym_subscript_expression] = STATE(1841), - [sym_call_expression] = STATE(1841), - [sym_field_expression] = STATE(1841), - [sym_compound_literal_expression] = STATE(1841), - [sym_parenthesized_expression] = STATE(1841), - [sym_concatenated_string] = STATE(1841), + [sym__expression] = STATE(1843), + [sym_conditional_expression] = STATE(1843), + [sym_assignment_expression] = STATE(1843), + [sym_pointer_expression] = STATE(1843), + [sym_logical_expression] = STATE(1843), + [sym_bitwise_expression] = STATE(1843), + [sym_equality_expression] = STATE(1843), + [sym_relational_expression] = STATE(1843), + [sym_shift_expression] = STATE(1843), + [sym_math_expression] = STATE(1843), + [sym_cast_expression] = STATE(1843), + [sym_sizeof_expression] = STATE(1843), + [sym_subscript_expression] = STATE(1843), + [sym_call_expression] = STATE(1843), + [sym_field_expression] = STATE(1843), + [sym_compound_literal_expression] = STATE(1843), + [sym_parenthesized_expression] = STATE(1843), + [sym_concatenated_string] = STATE(1843), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1841), - [sym_new_expression] = STATE(1841), - [sym_delete_expression] = STATE(1841), - [sym_lambda_expression] = STATE(1841), + [sym_template_function] = STATE(1843), + [sym_new_expression] = STATE(1843), + [sym_delete_expression] = STATE(1843), + [sym_lambda_expression] = STATE(1843), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4166), + [sym_raw_string_literal] = ACTIONS(4164), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54480,101 +54427,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4166), - [sym_char_literal] = ACTIONS(4166), + [sym_number_literal] = ACTIONS(4164), + [sym_char_literal] = ACTIONS(4164), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4168), - [sym_false] = ACTIONS(4168), - [sym_null] = ACTIONS(4168), + [sym_true] = ACTIONS(4166), + [sym_false] = ACTIONS(4166), + [sym_null] = ACTIONS(4166), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4168), - }, - [1282] = { - [sym__expression] = STATE(1842), - [sym_conditional_expression] = STATE(1842), - [sym_assignment_expression] = STATE(1842), - [sym_pointer_expression] = STATE(1842), - [sym_logical_expression] = STATE(1842), - [sym_bitwise_expression] = STATE(1842), - [sym_equality_expression] = STATE(1842), - [sym_relational_expression] = STATE(1842), - [sym_shift_expression] = STATE(1842), - [sym_math_expression] = STATE(1842), - [sym_cast_expression] = STATE(1842), - [sym_sizeof_expression] = STATE(1842), - [sym_subscript_expression] = STATE(1842), - [sym_call_expression] = STATE(1842), - [sym_field_expression] = STATE(1842), - [sym_compound_literal_expression] = STATE(1842), - [sym_parenthesized_expression] = STATE(1842), - [sym_concatenated_string] = STATE(1842), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1842), - [sym_new_expression] = STATE(1842), - [sym_delete_expression] = STATE(1842), - [sym_lambda_expression] = STATE(1842), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4170), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4170), - [sym_char_literal] = ACTIONS(4170), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4172), - [sym_false] = ACTIONS(4172), - [sym_null] = ACTIONS(4172), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4172), + [sym_nullptr] = ACTIONS(4166), }, - [1283] = { - [sym__expression] = STATE(1843), - [sym_conditional_expression] = STATE(1843), - [sym_assignment_expression] = STATE(1843), - [sym_pointer_expression] = STATE(1843), - [sym_logical_expression] = STATE(1843), - [sym_bitwise_expression] = STATE(1843), - [sym_equality_expression] = STATE(1843), - [sym_relational_expression] = STATE(1843), - [sym_shift_expression] = STATE(1843), - [sym_math_expression] = STATE(1843), - [sym_cast_expression] = STATE(1843), - [sym_sizeof_expression] = STATE(1843), - [sym_subscript_expression] = STATE(1843), - [sym_call_expression] = STATE(1843), - [sym_field_expression] = STATE(1843), - [sym_compound_literal_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_concatenated_string] = STATE(1843), + [1280] = { + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_delete_expression] = STATE(1843), - [sym_lambda_expression] = STATE(1843), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4174), + [sym_raw_string_literal] = ACTIONS(2748), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54586,20 +54480,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4174), - [sym_char_literal] = ACTIONS(4174), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4176), - [sym_false] = ACTIONS(4176), - [sym_null] = ACTIONS(4176), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4176), + [sym_nullptr] = ACTIONS(2750), }, - [1284] = { + [1281] = { + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [sym_comment] = ACTIONS(49), + }, + [1282] = { [sym__expression] = STATE(1844), [sym_conditional_expression] = STATE(1844), [sym_assignment_expression] = STATE(1844), @@ -54627,7 +54529,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4178), + [sym_raw_string_literal] = ACTIONS(4172), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54639,20 +54541,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4178), - [sym_char_literal] = ACTIONS(4178), + [sym_number_literal] = ACTIONS(4172), + [sym_char_literal] = ACTIONS(4172), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4180), - [sym_false] = ACTIONS(4180), - [sym_null] = ACTIONS(4180), + [sym_true] = ACTIONS(4174), + [sym_false] = ACTIONS(4174), + [sym_null] = ACTIONS(4174), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4180), + [sym_nullptr] = ACTIONS(4174), }, - [1285] = { + [1283] = { [sym__expression] = STATE(1845), [sym_conditional_expression] = STATE(1845), [sym_assignment_expression] = STATE(1845), @@ -54677,35 +54579,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(1845), [sym_lambda_expression] = STATE(1845), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4182), - [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_STAR] = ACTIONS(1421), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1421), - [anon_sym_BANG] = ACTIONS(1429), - [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_PLUS] = ACTIONS(1433), - [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DASH_DASH] = ACTIONS(1435), - [anon_sym_PLUS_PLUS] = ACTIONS(1435), - [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4182), - [sym_char_literal] = ACTIONS(4182), - [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4184), - [sym_false] = ACTIONS(4184), - [sym_null] = ACTIONS(4184), + [sym_raw_string_literal] = ACTIONS(4176), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4176), + [sym_char_literal] = ACTIONS(4176), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4178), + [sym_false] = ACTIONS(4178), + [sym_null] = ACTIONS(4178), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1443), - [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4184), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4178), }, - [1286] = { + [1284] = { [sym__expression] = STATE(1846), [sym_conditional_expression] = STATE(1846), [sym_assignment_expression] = STATE(1846), @@ -54733,7 +54635,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4186), + [sym_raw_string_literal] = ACTIONS(4180), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54745,20 +54647,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4186), - [sym_char_literal] = ACTIONS(4186), + [sym_number_literal] = ACTIONS(4180), + [sym_char_literal] = ACTIONS(4180), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4188), - [sym_false] = ACTIONS(4188), - [sym_null] = ACTIONS(4188), + [sym_true] = ACTIONS(4182), + [sym_false] = ACTIONS(4182), + [sym_null] = ACTIONS(4182), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4188), + [sym_nullptr] = ACTIONS(4182), }, - [1287] = { + [1285] = { [sym__expression] = STATE(1847), [sym_conditional_expression] = STATE(1847), [sym_assignment_expression] = STATE(1847), @@ -54786,7 +54688,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4190), + [sym_raw_string_literal] = ACTIONS(4184), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54798,20 +54700,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4190), - [sym_char_literal] = ACTIONS(4190), + [sym_number_literal] = ACTIONS(4184), + [sym_char_literal] = ACTIONS(4184), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4192), - [sym_false] = ACTIONS(4192), - [sym_null] = ACTIONS(4192), + [sym_true] = ACTIONS(4186), + [sym_false] = ACTIONS(4186), + [sym_null] = ACTIONS(4186), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4192), + [sym_nullptr] = ACTIONS(4186), }, - [1288] = { + [1286] = { [sym__expression] = STATE(1848), [sym_conditional_expression] = STATE(1848), [sym_assignment_expression] = STATE(1848), @@ -54839,7 +54741,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4194), + [sym_raw_string_literal] = ACTIONS(4188), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54851,20 +54753,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4194), - [sym_char_literal] = ACTIONS(4194), + [sym_number_literal] = ACTIONS(4188), + [sym_char_literal] = ACTIONS(4188), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4196), - [sym_false] = ACTIONS(4196), - [sym_null] = ACTIONS(4196), + [sym_true] = ACTIONS(4190), + [sym_false] = ACTIONS(4190), + [sym_null] = ACTIONS(4190), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4196), + [sym_nullptr] = ACTIONS(4190), }, - [1289] = { + [1287] = { [sym__expression] = STATE(1849), [sym_conditional_expression] = STATE(1849), [sym_assignment_expression] = STATE(1849), @@ -54892,7 +54794,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4198), + [sym_raw_string_literal] = ACTIONS(4192), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54904,20 +54806,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4198), - [sym_char_literal] = ACTIONS(4198), + [sym_number_literal] = ACTIONS(4192), + [sym_char_literal] = ACTIONS(4192), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4200), - [sym_false] = ACTIONS(4200), - [sym_null] = ACTIONS(4200), + [sym_true] = ACTIONS(4194), + [sym_false] = ACTIONS(4194), + [sym_null] = ACTIONS(4194), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4200), + [sym_nullptr] = ACTIONS(4194), }, - [1290] = { + [1288] = { [sym__expression] = STATE(1850), [sym_conditional_expression] = STATE(1850), [sym_assignment_expression] = STATE(1850), @@ -54945,7 +54847,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4202), + [sym_raw_string_literal] = ACTIONS(4196), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -54957,20 +54859,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4202), - [sym_char_literal] = ACTIONS(4202), + [sym_number_literal] = ACTIONS(4196), + [sym_char_literal] = ACTIONS(4196), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4204), - [sym_false] = ACTIONS(4204), - [sym_null] = ACTIONS(4204), + [sym_true] = ACTIONS(4198), + [sym_false] = ACTIONS(4198), + [sym_null] = ACTIONS(4198), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4204), + [sym_nullptr] = ACTIONS(4198), }, - [1291] = { + [1289] = { [sym__expression] = STATE(1851), [sym_conditional_expression] = STATE(1851), [sym_assignment_expression] = STATE(1851), @@ -54998,7 +54900,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4206), + [sym_raw_string_literal] = ACTIONS(4200), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_sizeof] = ACTIONS(1437), + [sym_number_literal] = ACTIONS(4200), + [sym_char_literal] = ACTIONS(4200), + [sym_string_literal] = ACTIONS(1439), + [sym_true] = ACTIONS(4202), + [sym_false] = ACTIONS(4202), + [sym_null] = ACTIONS(4202), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1445), + [sym_nullptr] = ACTIONS(4202), + }, + [1290] = { + [sym__expression] = STATE(1852), + [sym_conditional_expression] = STATE(1852), + [sym_assignment_expression] = STATE(1852), + [sym_pointer_expression] = STATE(1852), + [sym_logical_expression] = STATE(1852), + [sym_bitwise_expression] = STATE(1852), + [sym_equality_expression] = STATE(1852), + [sym_relational_expression] = STATE(1852), + [sym_shift_expression] = STATE(1852), + [sym_math_expression] = STATE(1852), + [sym_cast_expression] = STATE(1852), + [sym_sizeof_expression] = STATE(1852), + [sym_subscript_expression] = STATE(1852), + [sym_call_expression] = STATE(1852), + [sym_field_expression] = STATE(1852), + [sym_compound_literal_expression] = STATE(1852), + [sym_parenthesized_expression] = STATE(1852), + [sym_concatenated_string] = STATE(1852), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1852), + [sym_new_expression] = STATE(1852), + [sym_delete_expression] = STATE(1852), + [sym_lambda_expression] = STATE(1852), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4204), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_sizeof] = ACTIONS(1437), + [sym_number_literal] = ACTIONS(4204), + [sym_char_literal] = ACTIONS(4204), + [sym_string_literal] = ACTIONS(1439), + [sym_true] = ACTIONS(4206), + [sym_false] = ACTIONS(4206), + [sym_null] = ACTIONS(4206), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1445), + [sym_nullptr] = ACTIONS(4206), + }, + [1291] = { + [sym__expression] = STATE(1853), + [sym_conditional_expression] = STATE(1853), + [sym_assignment_expression] = STATE(1853), + [sym_pointer_expression] = STATE(1853), + [sym_logical_expression] = STATE(1853), + [sym_bitwise_expression] = STATE(1853), + [sym_equality_expression] = STATE(1853), + [sym_relational_expression] = STATE(1853), + [sym_shift_expression] = STATE(1853), + [sym_math_expression] = STATE(1853), + [sym_cast_expression] = STATE(1853), + [sym_sizeof_expression] = STATE(1853), + [sym_subscript_expression] = STATE(1853), + [sym_call_expression] = STATE(1853), + [sym_field_expression] = STATE(1853), + [sym_compound_literal_expression] = STATE(1853), + [sym_parenthesized_expression] = STATE(1853), + [sym_concatenated_string] = STATE(1853), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1853), + [sym_new_expression] = STATE(1853), + [sym_delete_expression] = STATE(1853), + [sym_lambda_expression] = STATE(1853), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4208), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -55010,30 +55018,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4206), - [sym_char_literal] = ACTIONS(4206), + [sym_number_literal] = ACTIONS(4208), + [sym_char_literal] = ACTIONS(4208), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4208), - [sym_false] = ACTIONS(4208), - [sym_null] = ACTIONS(4208), + [sym_true] = ACTIONS(4210), + [sym_false] = ACTIONS(4210), + [sym_null] = ACTIONS(4210), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4208), + [sym_nullptr] = ACTIONS(4210), }, [1292] = { - [aux_sym_for_statement_repeat1] = STATE(1853), - [anon_sym_COMMA] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(4210), + [sym__expression] = STATE(1854), + [sym_conditional_expression] = STATE(1854), + [sym_assignment_expression] = STATE(1854), + [sym_pointer_expression] = STATE(1854), + [sym_logical_expression] = STATE(1854), + [sym_bitwise_expression] = STATE(1854), + [sym_equality_expression] = STATE(1854), + [sym_relational_expression] = STATE(1854), + [sym_shift_expression] = STATE(1854), + [sym_math_expression] = STATE(1854), + [sym_cast_expression] = STATE(1854), + [sym_sizeof_expression] = STATE(1854), + [sym_subscript_expression] = STATE(1854), + [sym_call_expression] = STATE(1854), + [sym_field_expression] = STATE(1854), + [sym_compound_literal_expression] = STATE(1854), + [sym_parenthesized_expression] = STATE(1854), + [sym_concatenated_string] = STATE(1854), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1854), + [sym_new_expression] = STATE(1854), + [sym_delete_expression] = STATE(1854), + [sym_lambda_expression] = STATE(1854), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4212), + [anon_sym_LPAREN] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1421), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1421), + [anon_sym_BANG] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1431), + [anon_sym_PLUS] = ACTIONS(1433), + [anon_sym_DASH] = ACTIONS(1433), + [anon_sym_DASH_DASH] = ACTIONS(1435), + [anon_sym_PLUS_PLUS] = ACTIONS(1435), + [anon_sym_sizeof] = ACTIONS(1437), + [sym_number_literal] = ACTIONS(4212), + [sym_char_literal] = ACTIONS(4212), + [sym_string_literal] = ACTIONS(1439), + [sym_true] = ACTIONS(4214), + [sym_false] = ACTIONS(4214), + [sym_null] = ACTIONS(4214), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1443), + [anon_sym_delete] = ACTIONS(1445), + [sym_nullptr] = ACTIONS(4214), }, [1293] = { - [anon_sym_RBRACE] = ACTIONS(4212), + [aux_sym_for_statement_repeat1] = STATE(1856), + [anon_sym_COMMA] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4216), [sym_comment] = ACTIONS(49), }, [1294] = { + [anon_sym_RBRACE] = ACTIONS(4218), + [sym_comment] = ACTIONS(49), + }, + [1295] = { [sym_raw_string_literal] = ACTIONS(985), [anon_sym_LPAREN] = ACTIONS(985), [anon_sym_extern] = ACTIONS(987), @@ -55071,13 +55132,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(987), [sym_nullptr] = ACTIONS(987), }, - [1295] = { - [aux_sym_enumerator_list_repeat1] = STATE(1856), - [anon_sym_COMMA] = ACTIONS(4214), - [anon_sym_RBRACE] = ACTIONS(4212), + [1296] = { + [aux_sym_enumerator_list_repeat1] = STATE(1859), + [anon_sym_COMMA] = ACTIONS(4220), + [anon_sym_RBRACE] = ACTIONS(4218), [sym_comment] = ACTIONS(49), }, - [1296] = { + [1297] = { [sym_raw_string_literal] = ACTIONS(995), [anon_sym_LPAREN] = ACTIONS(995), [anon_sym_extern] = ACTIONS(997), @@ -55115,7 +55176,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(997), [sym_nullptr] = ACTIONS(997), }, - [1297] = { + [1298] = { [sym_raw_string_literal] = ACTIONS(1007), [anon_sym_LPAREN] = ACTIONS(1007), [anon_sym_extern] = ACTIONS(1009), @@ -55153,7 +55214,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1009), [sym_nullptr] = ACTIONS(1009), }, - [1298] = { + [1299] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), [sym_type_definition] = STATE(563), @@ -55198,7 +55259,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(4216), + [anon_sym_RBRACE] = ACTIONS(4222), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -55234,11 +55295,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1299] = { - [sym_identifier] = ACTIONS(4218), + [1300] = { + [sym_identifier] = ACTIONS(4224), [sym_comment] = ACTIONS(49), }, - [1300] = { + [1301] = { [sym_raw_string_literal] = ACTIONS(447), [anon_sym_LPAREN] = ACTIONS(447), [anon_sym_extern] = ACTIONS(449), @@ -55278,7 +55339,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(449), [sym_nullptr] = ACTIONS(449), }, - [1301] = { + [1302] = { [sym_raw_string_literal] = ACTIONS(512), [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_extern] = ACTIONS(514), @@ -55319,7 +55380,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(514), [sym_nullptr] = ACTIONS(514), }, - [1302] = { + [1303] = { [sym_raw_string_literal] = ACTIONS(1075), [anon_sym_LPAREN] = ACTIONS(1075), [anon_sym_extern] = ACTIONS(1077), @@ -55357,16 +55418,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1077), [sym_nullptr] = ACTIONS(1077), }, - [1303] = { - [sym_field_declaration_list] = STATE(1859), + [1304] = { + [sym_field_declaration_list] = STATE(1862), [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, - [1304] = { - [sym_identifier] = ACTIONS(4220), + [1305] = { + [sym_identifier] = ACTIONS(4226), [sym_comment] = ACTIONS(49), }, - [1305] = { + [1306] = { [sym_raw_string_literal] = ACTIONS(1081), [anon_sym_LPAREN] = ACTIONS(1081), [anon_sym_extern] = ACTIONS(1083), @@ -55404,58 +55465,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1083), [sym_nullptr] = ACTIONS(1083), }, - [1306] = { - [sym_field_declaration_list] = STATE(1861), - [anon_sym_LBRACE] = ACTIONS(1453), - [sym_comment] = ACTIONS(49), - }, [1307] = { - [anon_sym_RPAREN] = ACTIONS(4222), + [sym_field_declaration_list] = STATE(1864), + [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, [1308] = { - [aux_sym_concatenated_string_repeat1] = STATE(1308), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_RBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(4228), + [anon_sym_RPAREN] = ACTIONS(4228), [sym_comment] = ACTIONS(49), }, [1309] = { + [aux_sym_concatenated_string_repeat1] = STATE(1309), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(4234), + [sym_comment] = ACTIONS(49), + }, + [1310] = { [sym_raw_string_literal] = ACTIONS(1111), [anon_sym_LPAREN] = ACTIONS(1111), [anon_sym_extern] = ACTIONS(1113), @@ -55522,18 +55583,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1113), [sym_nullptr] = ACTIONS(1113), }, - [1310] = { - [aux_sym_template_argument_list_repeat1] = STATE(1864), + [1311] = { + [aux_sym_template_argument_list_repeat1] = STATE(1867), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(4231), + [anon_sym_GT] = ACTIONS(4237), [sym_comment] = ACTIONS(49), }, - [1311] = { + [1312] = { [sym_raw_string_literal] = ACTIONS(1140), [anon_sym_LPAREN] = ACTIONS(1137), [anon_sym_extern] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_RBRACK] = ACTIONS(1137), [anon_sym_EQ] = ACTIONS(1148), @@ -55558,7 +55619,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1146), [anon_sym_CARET_EQ] = ACTIONS(1146), [anon_sym_PIPE_EQ] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4239), [anon_sym_PIPE_PIPE] = ACTIONS(1146), [anon_sym_AMP_AMP] = ACTIONS(1146), [anon_sym_BANG] = ACTIONS(1142), @@ -55567,14 +55628,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1140), [anon_sym_EQ_EQ] = ACTIONS(1146), [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4239), [anon_sym_GT] = ACTIONS(1148), [anon_sym_LT_EQ] = ACTIONS(1146), [anon_sym_GT_EQ] = ACTIONS(1146), [anon_sym_LT_LT] = ACTIONS(1148), [anon_sym_GT_GT] = ACTIONS(1148), - [anon_sym_PLUS] = ACTIONS(4233), - [anon_sym_DASH] = ACTIONS(4233), + [anon_sym_PLUS] = ACTIONS(4239), + [anon_sym_DASH] = ACTIONS(4239), [anon_sym_SLASH] = ACTIONS(1148), [anon_sym_PERCENT] = ACTIONS(1148), [anon_sym_DASH_DASH] = ACTIONS(1137), @@ -55595,7 +55656,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1142), [sym_nullptr] = ACTIONS(1142), }, - [1312] = { + [1313] = { [sym_raw_string_literal] = ACTIONS(1150), [anon_sym_LPAREN] = ACTIONS(1150), [anon_sym_extern] = ACTIONS(1152), @@ -55633,40 +55694,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1152), [sym_nullptr] = ACTIONS(1152), }, - [1313] = { - [sym_field_declaration_list] = STATE(1865), + [1314] = { + [sym_field_declaration_list] = STATE(1868), [anon_sym_LBRACE] = ACTIONS(1453), [sym_comment] = ACTIONS(49), }, - [1314] = { - [sym__expression] = STATE(1866), - [sym_conditional_expression] = STATE(1866), - [sym_assignment_expression] = STATE(1866), - [sym_pointer_expression] = STATE(1866), - [sym_logical_expression] = STATE(1866), - [sym_bitwise_expression] = STATE(1866), - [sym_equality_expression] = STATE(1866), - [sym_relational_expression] = STATE(1866), - [sym_shift_expression] = STATE(1866), - [sym_math_expression] = STATE(1866), - [sym_cast_expression] = STATE(1866), - [sym_sizeof_expression] = STATE(1866), - [sym_subscript_expression] = STATE(1866), - [sym_call_expression] = STATE(1866), - [sym_field_expression] = STATE(1866), - [sym_compound_literal_expression] = STATE(1866), - [sym_parenthesized_expression] = STATE(1866), - [sym_concatenated_string] = STATE(1866), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1866), - [sym_new_expression] = STATE(1866), - [sym_delete_expression] = STATE(1866), - [sym_lambda_expression] = STATE(1866), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4236), + [1315] = { + [sym__expression] = STATE(1869), + [sym_conditional_expression] = STATE(1869), + [sym_assignment_expression] = STATE(1869), + [sym_pointer_expression] = STATE(1869), + [sym_logical_expression] = STATE(1869), + [sym_bitwise_expression] = STATE(1869), + [sym_equality_expression] = STATE(1869), + [sym_relational_expression] = STATE(1869), + [sym_shift_expression] = STATE(1869), + [sym_math_expression] = STATE(1869), + [sym_cast_expression] = STATE(1869), + [sym_sizeof_expression] = STATE(1869), + [sym_subscript_expression] = STATE(1869), + [sym_call_expression] = STATE(1869), + [sym_field_expression] = STATE(1869), + [sym_compound_literal_expression] = STATE(1869), + [sym_parenthesized_expression] = STATE(1869), + [sym_concatenated_string] = STATE(1869), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1869), + [sym_new_expression] = STATE(1869), + [sym_delete_expression] = STATE(1869), + [sym_lambda_expression] = STATE(1869), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4242), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -55678,156 +55739,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(4236), - [sym_char_literal] = ACTIONS(4236), + [sym_number_literal] = ACTIONS(4242), + [sym_char_literal] = ACTIONS(4242), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4238), - [sym_false] = ACTIONS(4238), - [sym_null] = ACTIONS(4238), + [sym_true] = ACTIONS(4244), + [sym_false] = ACTIONS(4244), + [sym_null] = ACTIONS(4244), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4238), + [sym_nullptr] = ACTIONS(4244), }, - [1315] = { - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym_COMMA] = ACTIONS(4240), - [anon_sym_RPAREN] = ACTIONS(4240), - [anon_sym_SEMI] = ACTIONS(4240), - [anon_sym_RBRACE] = ACTIONS(4240), - [anon_sym_STAR] = ACTIONS(4242), - [anon_sym_LBRACK] = ACTIONS(4240), - [anon_sym_RBRACK] = ACTIONS(4240), - [anon_sym_EQ] = ACTIONS(4242), - [anon_sym_COLON] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_STAR_EQ] = ACTIONS(4240), - [anon_sym_SLASH_EQ] = ACTIONS(4240), - [anon_sym_PERCENT_EQ] = ACTIONS(4240), - [anon_sym_PLUS_EQ] = ACTIONS(4240), - [anon_sym_DASH_EQ] = ACTIONS(4240), - [anon_sym_LT_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_GT_EQ] = ACTIONS(4240), - [anon_sym_AMP_EQ] = ACTIONS(4240), - [anon_sym_CARET_EQ] = ACTIONS(4240), - [anon_sym_PIPE_EQ] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4242), - [anon_sym_PIPE_PIPE] = ACTIONS(4240), - [anon_sym_AMP_AMP] = ACTIONS(4240), - [anon_sym_PIPE] = ACTIONS(4242), - [anon_sym_CARET] = ACTIONS(4242), - [anon_sym_EQ_EQ] = ACTIONS(4240), - [anon_sym_BANG_EQ] = ACTIONS(4240), - [anon_sym_LT] = ACTIONS(4242), - [anon_sym_GT] = ACTIONS(4242), - [anon_sym_LT_EQ] = ACTIONS(4240), - [anon_sym_GT_EQ] = ACTIONS(4240), - [anon_sym_LT_LT] = ACTIONS(4242), - [anon_sym_GT_GT] = ACTIONS(4242), - [anon_sym_PLUS] = ACTIONS(4242), - [anon_sym_DASH] = ACTIONS(4242), - [anon_sym_SLASH] = ACTIONS(4242), - [anon_sym_PERCENT] = ACTIONS(4242), - [anon_sym_DASH_DASH] = ACTIONS(4240), - [anon_sym_PLUS_PLUS] = ACTIONS(4240), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_DASH_GT] = ACTIONS(4240), + [1316] = { + [anon_sym_LPAREN] = ACTIONS(4246), + [anon_sym_COMMA] = ACTIONS(4246), + [anon_sym_RPAREN] = ACTIONS(4246), + [anon_sym_SEMI] = ACTIONS(4246), + [anon_sym_RBRACE] = ACTIONS(4246), + [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_LBRACK] = ACTIONS(4246), + [anon_sym_RBRACK] = ACTIONS(4246), + [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_COLON] = ACTIONS(4246), + [anon_sym_QMARK] = ACTIONS(4246), + [anon_sym_STAR_EQ] = ACTIONS(4246), + [anon_sym_SLASH_EQ] = ACTIONS(4246), + [anon_sym_PERCENT_EQ] = ACTIONS(4246), + [anon_sym_PLUS_EQ] = ACTIONS(4246), + [anon_sym_DASH_EQ] = ACTIONS(4246), + [anon_sym_LT_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_GT_EQ] = ACTIONS(4246), + [anon_sym_AMP_EQ] = ACTIONS(4246), + [anon_sym_CARET_EQ] = ACTIONS(4246), + [anon_sym_PIPE_EQ] = ACTIONS(4246), + [anon_sym_AMP] = ACTIONS(4248), + [anon_sym_PIPE_PIPE] = ACTIONS(4246), + [anon_sym_AMP_AMP] = ACTIONS(4246), + [anon_sym_PIPE] = ACTIONS(4248), + [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_EQ_EQ] = ACTIONS(4246), + [anon_sym_BANG_EQ] = ACTIONS(4246), + [anon_sym_LT] = ACTIONS(4248), + [anon_sym_GT] = ACTIONS(4248), + [anon_sym_LT_EQ] = ACTIONS(4246), + [anon_sym_GT_EQ] = ACTIONS(4246), + [anon_sym_LT_LT] = ACTIONS(4248), + [anon_sym_GT_GT] = ACTIONS(4248), + [anon_sym_PLUS] = ACTIONS(4248), + [anon_sym_DASH] = ACTIONS(4248), + [anon_sym_SLASH] = ACTIONS(4248), + [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_DASH_DASH] = ACTIONS(4246), + [anon_sym_PLUS_PLUS] = ACTIONS(4246), + [anon_sym_DOT] = ACTIONS(4246), + [anon_sym_DASH_GT] = ACTIONS(4246), [sym_comment] = ACTIONS(49), }, - [1316] = { - [sym_argument_list] = STATE(1867), - [sym_initializer_list] = STATE(1867), + [1317] = { + [sym_argument_list] = STATE(1870), + [sym_initializer_list] = STATE(1870), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), }, - [1317] = { - [sym_argument_list] = STATE(1868), - [sym_initializer_list] = STATE(1868), + [1318] = { + [sym_argument_list] = STATE(1871), + [sym_initializer_list] = STATE(1871), [sym_template_argument_list] = STATE(203), - [sym_new_declarator] = STATE(1869), + [sym_new_declarator] = STATE(1872), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(321), }, - [1318] = { - [sym_argument_list] = STATE(1870), - [sym_initializer_list] = STATE(1870), + [1319] = { + [sym_argument_list] = STATE(1873), + [sym_initializer_list] = STATE(1873), [sym_template_argument_list] = STATE(141), - [sym_new_declarator] = STATE(1871), + [sym_new_declarator] = STATE(1874), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), }, - [1319] = { - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym_COMMA] = ACTIONS(4244), - [anon_sym_RPAREN] = ACTIONS(4244), - [anon_sym_SEMI] = ACTIONS(4244), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4246), - [anon_sym_LBRACK] = ACTIONS(4244), - [anon_sym_RBRACK] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4246), - [anon_sym_COLON] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_STAR_EQ] = ACTIONS(4244), - [anon_sym_SLASH_EQ] = ACTIONS(4244), - [anon_sym_PERCENT_EQ] = ACTIONS(4244), - [anon_sym_PLUS_EQ] = ACTIONS(4244), - [anon_sym_DASH_EQ] = ACTIONS(4244), - [anon_sym_LT_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_GT_EQ] = ACTIONS(4244), - [anon_sym_AMP_EQ] = ACTIONS(4244), - [anon_sym_CARET_EQ] = ACTIONS(4244), - [anon_sym_PIPE_EQ] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4246), - [anon_sym_PIPE_PIPE] = ACTIONS(4244), - [anon_sym_AMP_AMP] = ACTIONS(4244), - [anon_sym_PIPE] = ACTIONS(4246), - [anon_sym_CARET] = ACTIONS(4246), - [anon_sym_EQ_EQ] = ACTIONS(4244), - [anon_sym_BANG_EQ] = ACTIONS(4244), - [anon_sym_LT] = ACTIONS(4246), - [anon_sym_GT] = ACTIONS(4246), - [anon_sym_LT_EQ] = ACTIONS(4244), - [anon_sym_GT_EQ] = ACTIONS(4244), - [anon_sym_LT_LT] = ACTIONS(4246), - [anon_sym_GT_GT] = ACTIONS(4246), - [anon_sym_PLUS] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_SLASH] = ACTIONS(4246), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_DASH_DASH] = ACTIONS(4244), - [anon_sym_PLUS_PLUS] = ACTIONS(4244), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_DASH_GT] = ACTIONS(4244), + [1320] = { + [anon_sym_LPAREN] = ACTIONS(4250), + [anon_sym_COMMA] = ACTIONS(4250), + [anon_sym_RPAREN] = ACTIONS(4250), + [anon_sym_SEMI] = ACTIONS(4250), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_STAR] = ACTIONS(4252), + [anon_sym_LBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(4252), + [anon_sym_COLON] = ACTIONS(4250), + [anon_sym_QMARK] = ACTIONS(4250), + [anon_sym_STAR_EQ] = ACTIONS(4250), + [anon_sym_SLASH_EQ] = ACTIONS(4250), + [anon_sym_PERCENT_EQ] = ACTIONS(4250), + [anon_sym_PLUS_EQ] = ACTIONS(4250), + [anon_sym_DASH_EQ] = ACTIONS(4250), + [anon_sym_LT_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_GT_EQ] = ACTIONS(4250), + [anon_sym_AMP_EQ] = ACTIONS(4250), + [anon_sym_CARET_EQ] = ACTIONS(4250), + [anon_sym_PIPE_EQ] = ACTIONS(4250), + [anon_sym_AMP] = ACTIONS(4252), + [anon_sym_PIPE_PIPE] = ACTIONS(4250), + [anon_sym_AMP_AMP] = ACTIONS(4250), + [anon_sym_PIPE] = ACTIONS(4252), + [anon_sym_CARET] = ACTIONS(4252), + [anon_sym_EQ_EQ] = ACTIONS(4250), + [anon_sym_BANG_EQ] = ACTIONS(4250), + [anon_sym_LT] = ACTIONS(4252), + [anon_sym_GT] = ACTIONS(4252), + [anon_sym_LT_EQ] = ACTIONS(4250), + [anon_sym_GT_EQ] = ACTIONS(4250), + [anon_sym_LT_LT] = ACTIONS(4252), + [anon_sym_GT_GT] = ACTIONS(4252), + [anon_sym_PLUS] = ACTIONS(4252), + [anon_sym_DASH] = ACTIONS(4252), + [anon_sym_SLASH] = ACTIONS(4252), + [anon_sym_PERCENT] = ACTIONS(4252), + [anon_sym_DASH_DASH] = ACTIONS(4250), + [anon_sym_PLUS_PLUS] = ACTIONS(4250), + [anon_sym_DOT] = ACTIONS(4250), + [anon_sym_DASH_GT] = ACTIONS(4250), [sym_comment] = ACTIONS(49), }, - [1320] = { - [sym_argument_list] = STATE(1870), - [sym_initializer_list] = STATE(1870), + [1321] = { + [sym_argument_list] = STATE(1873), + [sym_initializer_list] = STATE(1873), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), }, - [1321] = { + [1322] = { [anon_sym_LPAREN] = ACTIONS(420), [anon_sym_COMMA] = ACTIONS(420), [anon_sym_RPAREN] = ACTIONS(420), [anon_sym_SEMI] = ACTIONS(420), [anon_sym_RBRACE] = ACTIONS(420), - [anon_sym_STAR] = ACTIONS(4248), + [anon_sym_STAR] = ACTIONS(4254), [anon_sym_LBRACK] = ACTIONS(420), [anon_sym_RBRACK] = ACTIONS(420), - [anon_sym_EQ] = ACTIONS(4248), + [anon_sym_EQ] = ACTIONS(4254), [anon_sym_COLON] = ACTIONS(420), [anon_sym_QMARK] = ACTIONS(420), [anon_sym_STAR_EQ] = ACTIONS(420), @@ -55840,30 +55901,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(420), [anon_sym_CARET_EQ] = ACTIONS(420), [anon_sym_PIPE_EQ] = ACTIONS(420), - [anon_sym_AMP] = ACTIONS(4248), + [anon_sym_AMP] = ACTIONS(4254), [anon_sym_PIPE_PIPE] = ACTIONS(420), [anon_sym_AMP_AMP] = ACTIONS(420), - [anon_sym_PIPE] = ACTIONS(4248), - [anon_sym_CARET] = ACTIONS(4248), + [anon_sym_PIPE] = ACTIONS(4254), + [anon_sym_CARET] = ACTIONS(4254), [anon_sym_EQ_EQ] = ACTIONS(420), [anon_sym_BANG_EQ] = ACTIONS(420), - [anon_sym_LT] = ACTIONS(4248), - [anon_sym_GT] = ACTIONS(4248), + [anon_sym_LT] = ACTIONS(4254), + [anon_sym_GT] = ACTIONS(4254), [anon_sym_LT_EQ] = ACTIONS(420), [anon_sym_GT_EQ] = ACTIONS(420), - [anon_sym_LT_LT] = ACTIONS(4248), - [anon_sym_GT_GT] = ACTIONS(4248), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_SLASH] = ACTIONS(4248), - [anon_sym_PERCENT] = ACTIONS(4248), + [anon_sym_LT_LT] = ACTIONS(4254), + [anon_sym_GT_GT] = ACTIONS(4254), + [anon_sym_PLUS] = ACTIONS(4254), + [anon_sym_DASH] = ACTIONS(4254), + [anon_sym_SLASH] = ACTIONS(4254), + [anon_sym_PERCENT] = ACTIONS(4254), [anon_sym_DASH_DASH] = ACTIONS(420), [anon_sym_PLUS_PLUS] = ACTIONS(420), [anon_sym_DOT] = ACTIONS(420), [anon_sym_DASH_GT] = ACTIONS(420), [sym_comment] = ACTIONS(49), }, - [1322] = { + [1323] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -55896,7 +55957,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4250), + [anon_sym_RBRACK] = ACTIONS(4256), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -55919,24 +55980,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1323] = { + [1324] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4252), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), + [anon_sym_RBRACK] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), [anon_sym_AMP] = ACTIONS(1532), [anon_sym_PIPE_PIPE] = ACTIONS(1534), [anon_sym_AMP_AMP] = ACTIONS(1536), @@ -55960,40 +56021,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1324] = { - [sym__expression] = STATE(1873), - [sym_conditional_expression] = STATE(1873), - [sym_assignment_expression] = STATE(1873), - [sym_pointer_expression] = STATE(1873), - [sym_logical_expression] = STATE(1873), - [sym_bitwise_expression] = STATE(1873), - [sym_equality_expression] = STATE(1873), - [sym_relational_expression] = STATE(1873), - [sym_shift_expression] = STATE(1873), - [sym_math_expression] = STATE(1873), - [sym_cast_expression] = STATE(1873), - [sym_sizeof_expression] = STATE(1873), - [sym_subscript_expression] = STATE(1873), - [sym_call_expression] = STATE(1873), - [sym_field_expression] = STATE(1873), - [sym_compound_literal_expression] = STATE(1873), - [sym_parenthesized_expression] = STATE(1873), - [sym_concatenated_string] = STATE(1873), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1873), - [sym_new_expression] = STATE(1873), - [sym_delete_expression] = STATE(1873), - [sym_lambda_expression] = STATE(1873), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1325] = { + [sym__expression] = STATE(1876), + [sym_conditional_expression] = STATE(1876), + [sym_assignment_expression] = STATE(1876), + [sym_pointer_expression] = STATE(1876), + [sym_logical_expression] = STATE(1876), + [sym_bitwise_expression] = STATE(1876), + [sym_equality_expression] = STATE(1876), + [sym_relational_expression] = STATE(1876), + [sym_shift_expression] = STATE(1876), + [sym_math_expression] = STATE(1876), + [sym_cast_expression] = STATE(1876), + [sym_sizeof_expression] = STATE(1876), + [sym_subscript_expression] = STATE(1876), + [sym_call_expression] = STATE(1876), + [sym_field_expression] = STATE(1876), + [sym_compound_literal_expression] = STATE(1876), + [sym_parenthesized_expression] = STATE(1876), + [sym_concatenated_string] = STATE(1876), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1876), + [sym_new_expression] = STATE(1876), + [sym_delete_expression] = STATE(1876), + [sym_lambda_expression] = STATE(1876), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4262), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), [anon_sym_PLUS] = ACTIONS(588), @@ -56001,51 +56062,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(4256), - [sym_char_literal] = ACTIONS(4256), + [sym_number_literal] = ACTIONS(4262), + [sym_char_literal] = ACTIONS(4262), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4258), - [sym_false] = ACTIONS(4258), - [sym_null] = ACTIONS(4258), + [sym_true] = ACTIONS(4264), + [sym_false] = ACTIONS(4264), + [sym_null] = ACTIONS(4264), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4258), + [sym_nullptr] = ACTIONS(4264), }, - [1325] = { - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym_COMMA] = ACTIONS(4260), - [anon_sym_RPAREN] = ACTIONS(4260), - [anon_sym_SEMI] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_LBRACK] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(4260), - [anon_sym_COLON] = ACTIONS(4260), - [anon_sym_GT] = ACTIONS(4260), + [1326] = { + [anon_sym_LPAREN] = ACTIONS(4266), + [anon_sym_COMMA] = ACTIONS(4266), + [anon_sym_RPAREN] = ACTIONS(4266), + [anon_sym_SEMI] = ACTIONS(4266), + [anon_sym_LBRACE] = ACTIONS(4266), + [anon_sym_LBRACK] = ACTIONS(4266), + [anon_sym_EQ] = ACTIONS(4266), + [anon_sym_COLON] = ACTIONS(4266), + [anon_sym_GT] = ACTIONS(4266), [sym_comment] = ACTIONS(49), }, - [1326] = { - [sym_storage_class_specifier] = STATE(1326), - [sym_type_qualifier] = STATE(1326), - [aux_sym__declaration_specifiers_repeat1] = STATE(1326), + [1327] = { + [sym_storage_class_specifier] = STATE(1327), + [sym_type_qualifier] = STATE(1327), + [aux_sym__declaration_specifiers_repeat1] = STATE(1327), [sym_raw_string_literal] = ACTIONS(798), [anon_sym_LPAREN] = ACTIONS(798), - [anon_sym_extern] = ACTIONS(4262), + [anon_sym_extern] = ACTIONS(4268), [anon_sym_STAR] = ACTIONS(798), [anon_sym_LBRACK] = ACTIONS(798), [anon_sym_RBRACK] = ACTIONS(798), - [anon_sym_static] = ACTIONS(4262), - [anon_sym_register] = ACTIONS(4262), - [anon_sym_inline] = ACTIONS(4262), - [anon_sym_const] = ACTIONS(4265), - [anon_sym_restrict] = ACTIONS(4265), - [anon_sym_volatile] = ACTIONS(4265), - [anon_sym__Atomic] = ACTIONS(4265), - [anon_sym_mutable] = ACTIONS(4265), - [anon_sym_explicit] = ACTIONS(4265), - [anon_sym_constexpr] = ACTIONS(4265), + [anon_sym_static] = ACTIONS(4268), + [anon_sym_register] = ACTIONS(4268), + [anon_sym_inline] = ACTIONS(4268), + [anon_sym_const] = ACTIONS(4271), + [anon_sym_restrict] = ACTIONS(4271), + [anon_sym_volatile] = ACTIONS(4271), + [anon_sym__Atomic] = ACTIONS(4271), + [anon_sym_mutable] = ACTIONS(4271), + [anon_sym_explicit] = ACTIONS(4271), + [anon_sym_constexpr] = ACTIONS(4271), [anon_sym_AMP] = ACTIONS(798), [anon_sym_BANG] = ACTIONS(798), [anon_sym_TILDE] = ACTIONS(798), @@ -56067,57 +56128,57 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(806), [sym_nullptr] = ACTIONS(806), }, - [1327] = { + [1328] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4270), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_RPAREN] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4274), + [anon_sym_RBRACE] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4276), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), + [anon_sym_RBRACK] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(4276), + [anon_sym_PERCENT] = ACTIONS(4276), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1328] = { + [1329] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4272), + [anon_sym_RBRACK] = ACTIONS(4278), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -56153,14 +56214,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1329] = { + [1330] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4274), + [anon_sym_RBRACK] = ACTIONS(4280), [anon_sym_EQ] = ACTIONS(1526), - [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4280), [anon_sym_STAR_EQ] = ACTIONS(1530), [anon_sym_SLASH_EQ] = ACTIONS(1530), [anon_sym_PERCENT_EQ] = ACTIONS(1530), @@ -56194,70 +56255,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1330] = { + [1331] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(4276), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(4282), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1331] = { + [1332] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), [anon_sym_EQ_EQ] = ACTIONS(1542), [anon_sym_BANG_EQ] = ACTIONS(1542), [anon_sym_LT] = ACTIONS(1544), @@ -56276,26 +56337,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1332] = { + [1333] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4282), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), [anon_sym_AMP_AMP] = ACTIONS(1536), [anon_sym_PIPE] = ACTIONS(1538), [anon_sym_CARET] = ACTIONS(1540), @@ -56317,27 +56378,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1333] = { + [1334] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4282), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), [anon_sym_PIPE] = ACTIONS(1538), [anon_sym_CARET] = ACTIONS(1540), [anon_sym_EQ_EQ] = ACTIONS(1542), @@ -56358,28 +56419,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1334] = { + [1335] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), [anon_sym_CARET] = ACTIONS(1540), [anon_sym_EQ_EQ] = ACTIONS(1542), [anon_sym_BANG_EQ] = ACTIONS(1542), @@ -56399,29 +56460,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1335] = { + [1336] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), [anon_sym_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), [anon_sym_EQ_EQ] = ACTIONS(1542), [anon_sym_BANG_EQ] = ACTIONS(1542), [anon_sym_LT] = ACTIONS(1544), @@ -56440,31 +56501,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1336] = { + [1337] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), [anon_sym_LT] = ACTIONS(1544), [anon_sym_GT] = ACTIONS(1544), [anon_sym_LT_EQ] = ACTIONS(1546), @@ -56481,35 +56542,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1337] = { + [1338] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), [anon_sym_LT_LT] = ACTIONS(1548), [anon_sym_GT_GT] = ACTIONS(1548), [anon_sym_PLUS] = ACTIONS(1550), @@ -56522,37 +56583,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1338] = { + [1339] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4294), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), + [anon_sym_RBRACK] = ACTIONS(4300), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), [anon_sym_PLUS] = ACTIONS(1550), [anon_sym_DASH] = ACTIONS(1550), [anon_sym_SLASH] = ACTIONS(1522), @@ -56563,39 +56624,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1339] = { + [1340] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), + [anon_sym_RBRACK] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), [anon_sym_SLASH] = ACTIONS(1522), [anon_sym_PERCENT] = ACTIONS(1522), [anon_sym_DASH_DASH] = ACTIONS(1552), @@ -56604,182 +56665,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1340] = { - [sym_template_argument_list] = STATE(1066), - [anon_sym_LPAREN] = ACTIONS(4298), - [anon_sym_COMMA] = ACTIONS(4298), - [anon_sym_RPAREN] = ACTIONS(4298), - [anon_sym_SEMI] = ACTIONS(4298), - [anon_sym_RBRACE] = ACTIONS(4298), - [anon_sym_STAR] = ACTIONS(4300), - [anon_sym_LBRACK] = ACTIONS(4298), - [anon_sym_RBRACK] = ACTIONS(4298), - [anon_sym_EQ] = ACTIONS(4300), - [anon_sym_COLON] = ACTIONS(4300), - [anon_sym_QMARK] = ACTIONS(4298), - [anon_sym_STAR_EQ] = ACTIONS(4298), - [anon_sym_SLASH_EQ] = ACTIONS(4298), - [anon_sym_PERCENT_EQ] = ACTIONS(4298), - [anon_sym_PLUS_EQ] = ACTIONS(4298), - [anon_sym_DASH_EQ] = ACTIONS(4298), - [anon_sym_LT_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_GT_EQ] = ACTIONS(4298), - [anon_sym_AMP_EQ] = ACTIONS(4298), - [anon_sym_CARET_EQ] = ACTIONS(4298), - [anon_sym_PIPE_EQ] = ACTIONS(4298), - [anon_sym_AMP] = ACTIONS(4300), - [anon_sym_PIPE_PIPE] = ACTIONS(4298), - [anon_sym_AMP_AMP] = ACTIONS(4298), - [anon_sym_PIPE] = ACTIONS(4300), - [anon_sym_CARET] = ACTIONS(4300), - [anon_sym_EQ_EQ] = ACTIONS(4298), - [anon_sym_BANG_EQ] = ACTIONS(4298), - [anon_sym_LT] = ACTIONS(4302), - [anon_sym_GT] = ACTIONS(4300), - [anon_sym_LT_EQ] = ACTIONS(4298), - [anon_sym_GT_EQ] = ACTIONS(4298), - [anon_sym_LT_LT] = ACTIONS(4300), - [anon_sym_GT_GT] = ACTIONS(4300), - [anon_sym_PLUS] = ACTIONS(4300), - [anon_sym_DASH] = ACTIONS(4300), - [anon_sym_SLASH] = ACTIONS(4300), - [anon_sym_PERCENT] = ACTIONS(4300), - [anon_sym_DASH_DASH] = ACTIONS(4298), - [anon_sym_PLUS_PLUS] = ACTIONS(4298), - [anon_sym_DOT] = ACTIONS(4298), - [anon_sym_DASH_GT] = ACTIONS(4298), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2076), - }, [1341] = { - [anon_sym_LPAREN] = ACTIONS(4305), - [anon_sym_COMMA] = ACTIONS(4305), - [anon_sym_RPAREN] = ACTIONS(4305), - [anon_sym_SEMI] = ACTIONS(4305), - [anon_sym_RBRACE] = ACTIONS(4305), - [anon_sym_STAR] = ACTIONS(4307), - [anon_sym_LBRACK] = ACTIONS(4305), - [anon_sym_RBRACK] = ACTIONS(4305), - [anon_sym_EQ] = ACTIONS(4307), - [anon_sym_COLON] = ACTIONS(4305), - [anon_sym_QMARK] = ACTIONS(4305), - [anon_sym_STAR_EQ] = ACTIONS(4305), - [anon_sym_SLASH_EQ] = ACTIONS(4305), - [anon_sym_PERCENT_EQ] = ACTIONS(4305), - [anon_sym_PLUS_EQ] = ACTIONS(4305), - [anon_sym_DASH_EQ] = ACTIONS(4305), - [anon_sym_LT_LT_EQ] = ACTIONS(4305), - [anon_sym_GT_GT_EQ] = ACTIONS(4305), - [anon_sym_AMP_EQ] = ACTIONS(4305), - [anon_sym_CARET_EQ] = ACTIONS(4305), - [anon_sym_PIPE_EQ] = ACTIONS(4305), - [anon_sym_AMP] = ACTIONS(4307), - [anon_sym_PIPE_PIPE] = ACTIONS(4305), - [anon_sym_AMP_AMP] = ACTIONS(4305), - [anon_sym_PIPE] = ACTIONS(4307), - [anon_sym_CARET] = ACTIONS(4307), - [anon_sym_EQ_EQ] = ACTIONS(4305), - [anon_sym_BANG_EQ] = ACTIONS(4305), - [anon_sym_LT] = ACTIONS(4307), - [anon_sym_GT] = ACTIONS(4307), - [anon_sym_LT_EQ] = ACTIONS(4305), - [anon_sym_GT_EQ] = ACTIONS(4305), - [anon_sym_LT_LT] = ACTIONS(4307), - [anon_sym_GT_GT] = ACTIONS(4307), - [anon_sym_PLUS] = ACTIONS(4307), - [anon_sym_DASH] = ACTIONS(4307), - [anon_sym_SLASH] = ACTIONS(4307), - [anon_sym_PERCENT] = ACTIONS(4307), - [anon_sym_DASH_DASH] = ACTIONS(4305), - [anon_sym_PLUS_PLUS] = ACTIONS(4305), - [anon_sym_DOT] = ACTIONS(4305), - [anon_sym_DASH_GT] = ACTIONS(4305), - [sym_comment] = ACTIONS(49), + [sym_template_argument_list] = STATE(1067), + [anon_sym_LPAREN] = ACTIONS(4304), + [anon_sym_COMMA] = ACTIONS(4304), + [anon_sym_RPAREN] = ACTIONS(4304), + [anon_sym_SEMI] = ACTIONS(4304), + [anon_sym_RBRACE] = ACTIONS(4304), + [anon_sym_STAR] = ACTIONS(4306), + [anon_sym_LBRACK] = ACTIONS(4304), + [anon_sym_RBRACK] = ACTIONS(4304), + [anon_sym_EQ] = ACTIONS(4306), + [anon_sym_COLON] = ACTIONS(4306), + [anon_sym_QMARK] = ACTIONS(4304), + [anon_sym_STAR_EQ] = ACTIONS(4304), + [anon_sym_SLASH_EQ] = ACTIONS(4304), + [anon_sym_PERCENT_EQ] = ACTIONS(4304), + [anon_sym_PLUS_EQ] = ACTIONS(4304), + [anon_sym_DASH_EQ] = ACTIONS(4304), + [anon_sym_LT_LT_EQ] = ACTIONS(4304), + [anon_sym_GT_GT_EQ] = ACTIONS(4304), + [anon_sym_AMP_EQ] = ACTIONS(4304), + [anon_sym_CARET_EQ] = ACTIONS(4304), + [anon_sym_PIPE_EQ] = ACTIONS(4304), + [anon_sym_AMP] = ACTIONS(4306), + [anon_sym_PIPE_PIPE] = ACTIONS(4304), + [anon_sym_AMP_AMP] = ACTIONS(4304), + [anon_sym_PIPE] = ACTIONS(4306), + [anon_sym_CARET] = ACTIONS(4306), + [anon_sym_EQ_EQ] = ACTIONS(4304), + [anon_sym_BANG_EQ] = ACTIONS(4304), + [anon_sym_LT] = ACTIONS(4308), + [anon_sym_GT] = ACTIONS(4306), + [anon_sym_LT_EQ] = ACTIONS(4304), + [anon_sym_GT_EQ] = ACTIONS(4304), + [anon_sym_LT_LT] = ACTIONS(4306), + [anon_sym_GT_GT] = ACTIONS(4306), + [anon_sym_PLUS] = ACTIONS(4306), + [anon_sym_DASH] = ACTIONS(4306), + [anon_sym_SLASH] = ACTIONS(4306), + [anon_sym_PERCENT] = ACTIONS(4306), + [anon_sym_DASH_DASH] = ACTIONS(4304), + [anon_sym_PLUS_PLUS] = ACTIONS(4304), + [anon_sym_DOT] = ACTIONS(4304), + [anon_sym_DASH_GT] = ACTIONS(4304), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2078), }, [1342] = { - [sym_template_argument_list] = STATE(1077), - [anon_sym_LT] = ACTIONS(4309), + [anon_sym_LPAREN] = ACTIONS(4311), + [anon_sym_COMMA] = ACTIONS(4311), + [anon_sym_RPAREN] = ACTIONS(4311), + [anon_sym_SEMI] = ACTIONS(4311), + [anon_sym_RBRACE] = ACTIONS(4311), + [anon_sym_STAR] = ACTIONS(4313), + [anon_sym_LBRACK] = ACTIONS(4311), + [anon_sym_RBRACK] = ACTIONS(4311), + [anon_sym_EQ] = ACTIONS(4313), + [anon_sym_COLON] = ACTIONS(4311), + [anon_sym_QMARK] = ACTIONS(4311), + [anon_sym_STAR_EQ] = ACTIONS(4311), + [anon_sym_SLASH_EQ] = ACTIONS(4311), + [anon_sym_PERCENT_EQ] = ACTIONS(4311), + [anon_sym_PLUS_EQ] = ACTIONS(4311), + [anon_sym_DASH_EQ] = ACTIONS(4311), + [anon_sym_LT_LT_EQ] = ACTIONS(4311), + [anon_sym_GT_GT_EQ] = ACTIONS(4311), + [anon_sym_AMP_EQ] = ACTIONS(4311), + [anon_sym_CARET_EQ] = ACTIONS(4311), + [anon_sym_PIPE_EQ] = ACTIONS(4311), + [anon_sym_AMP] = ACTIONS(4313), + [anon_sym_PIPE_PIPE] = ACTIONS(4311), + [anon_sym_AMP_AMP] = ACTIONS(4311), + [anon_sym_PIPE] = ACTIONS(4313), + [anon_sym_CARET] = ACTIONS(4313), + [anon_sym_EQ_EQ] = ACTIONS(4311), + [anon_sym_BANG_EQ] = ACTIONS(4311), + [anon_sym_LT] = ACTIONS(4313), + [anon_sym_GT] = ACTIONS(4313), + [anon_sym_LT_EQ] = ACTIONS(4311), + [anon_sym_GT_EQ] = ACTIONS(4311), + [anon_sym_LT_LT] = ACTIONS(4313), + [anon_sym_GT_GT] = ACTIONS(4313), + [anon_sym_PLUS] = ACTIONS(4313), + [anon_sym_DASH] = ACTIONS(4313), + [anon_sym_SLASH] = ACTIONS(4313), + [anon_sym_PERCENT] = ACTIONS(4313), + [anon_sym_DASH_DASH] = ACTIONS(4311), + [anon_sym_PLUS_PLUS] = ACTIONS(4311), + [anon_sym_DOT] = ACTIONS(4311), + [anon_sym_DASH_GT] = ACTIONS(4311), [sym_comment] = ACTIONS(49), }, [1343] = { - [sym_raw_string_literal] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_RBRACK] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(4311), - [anon_sym_DASH] = ACTIONS(4311), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1796), - [anon_sym_sizeof] = ACTIONS(1801), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), - [sym_number_literal] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [sym_string_literal] = ACTIONS(1799), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1801), + [sym_template_argument_list] = STATE(1078), + [anon_sym_LT] = ACTIONS(4315), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1801), - [sym_nullptr] = ACTIONS(1801), }, [1344] = { - [sym_parameter_list] = STATE(1876), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(2280), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_RBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(4317), + [anon_sym_DASH] = ACTIONS(4317), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1798), + [anon_sym_PLUS_PLUS] = ACTIONS(1798), + [anon_sym_sizeof] = ACTIONS(1803), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), + [sym_number_literal] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [sym_string_literal] = ACTIONS(1801), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1803), + [sym_nullptr] = ACTIONS(1803), }, [1345] = { - [sym_type_qualifier] = STATE(1878), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1878), - [anon_sym_LPAREN] = ACTIONS(2282), + [sym_parameter_list] = STATE(1879), + [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_LBRACK] = ACTIONS(2282), + [sym_comment] = ACTIONS(49), + }, + [1346] = { + [sym_type_qualifier] = STATE(1881), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1881), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -56787,17 +56848,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(4320), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4316), + [sym_noexcept] = ACTIONS(4322), }, - [1346] = { - [sym_type_qualifier] = STATE(1879), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1879), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1347] = { + [sym_type_qualifier] = STATE(1882), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1882), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -56805,89 +56866,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2812), + [anon_sym_DASH_GT] = ACTIONS(2814), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4318), + [sym_noexcept] = ACTIONS(4324), }, - [1347] = { - [anon_sym_LPAREN] = ACTIONS(4320), - [anon_sym_COMMA] = ACTIONS(4320), - [anon_sym_RPAREN] = ACTIONS(4320), - [anon_sym_SEMI] = ACTIONS(4320), - [anon_sym_RBRACE] = ACTIONS(4320), - [anon_sym_STAR] = ACTIONS(4322), - [anon_sym_LBRACK] = ACTIONS(4320), - [anon_sym_RBRACK] = ACTIONS(4320), - [anon_sym_EQ] = ACTIONS(4322), - [anon_sym_COLON] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4320), - [anon_sym_STAR_EQ] = ACTIONS(4320), - [anon_sym_SLASH_EQ] = ACTIONS(4320), - [anon_sym_PERCENT_EQ] = ACTIONS(4320), - [anon_sym_PLUS_EQ] = ACTIONS(4320), - [anon_sym_DASH_EQ] = ACTIONS(4320), - [anon_sym_LT_LT_EQ] = ACTIONS(4320), - [anon_sym_GT_GT_EQ] = ACTIONS(4320), - [anon_sym_AMP_EQ] = ACTIONS(4320), - [anon_sym_CARET_EQ] = ACTIONS(4320), - [anon_sym_PIPE_EQ] = ACTIONS(4320), - [anon_sym_AMP] = ACTIONS(4322), - [anon_sym_PIPE_PIPE] = ACTIONS(4320), - [anon_sym_AMP_AMP] = ACTIONS(4320), - [anon_sym_PIPE] = ACTIONS(4322), - [anon_sym_CARET] = ACTIONS(4322), - [anon_sym_EQ_EQ] = ACTIONS(4320), - [anon_sym_BANG_EQ] = ACTIONS(4320), - [anon_sym_LT] = ACTIONS(4322), - [anon_sym_GT] = ACTIONS(4322), - [anon_sym_LT_EQ] = ACTIONS(4320), - [anon_sym_GT_EQ] = ACTIONS(4320), - [anon_sym_LT_LT] = ACTIONS(4322), - [anon_sym_GT_GT] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(4322), - [anon_sym_DASH] = ACTIONS(4322), - [anon_sym_SLASH] = ACTIONS(4322), - [anon_sym_PERCENT] = ACTIONS(4322), - [anon_sym_DASH_DASH] = ACTIONS(4320), - [anon_sym_PLUS_PLUS] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_DASH_GT] = ACTIONS(4320), + [1348] = { + [anon_sym_LPAREN] = ACTIONS(4326), + [anon_sym_COMMA] = ACTIONS(4326), + [anon_sym_RPAREN] = ACTIONS(4326), + [anon_sym_SEMI] = ACTIONS(4326), + [anon_sym_RBRACE] = ACTIONS(4326), + [anon_sym_STAR] = ACTIONS(4328), + [anon_sym_LBRACK] = ACTIONS(4326), + [anon_sym_RBRACK] = ACTIONS(4326), + [anon_sym_EQ] = ACTIONS(4328), + [anon_sym_COLON] = ACTIONS(4326), + [anon_sym_QMARK] = ACTIONS(4326), + [anon_sym_STAR_EQ] = ACTIONS(4326), + [anon_sym_SLASH_EQ] = ACTIONS(4326), + [anon_sym_PERCENT_EQ] = ACTIONS(4326), + [anon_sym_PLUS_EQ] = ACTIONS(4326), + [anon_sym_DASH_EQ] = ACTIONS(4326), + [anon_sym_LT_LT_EQ] = ACTIONS(4326), + [anon_sym_GT_GT_EQ] = ACTIONS(4326), + [anon_sym_AMP_EQ] = ACTIONS(4326), + [anon_sym_CARET_EQ] = ACTIONS(4326), + [anon_sym_PIPE_EQ] = ACTIONS(4326), + [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_PIPE_PIPE] = ACTIONS(4326), + [anon_sym_AMP_AMP] = ACTIONS(4326), + [anon_sym_PIPE] = ACTIONS(4328), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_EQ_EQ] = ACTIONS(4326), + [anon_sym_BANG_EQ] = ACTIONS(4326), + [anon_sym_LT] = ACTIONS(4328), + [anon_sym_GT] = ACTIONS(4328), + [anon_sym_LT_EQ] = ACTIONS(4326), + [anon_sym_GT_EQ] = ACTIONS(4326), + [anon_sym_LT_LT] = ACTIONS(4328), + [anon_sym_GT_GT] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4328), + [anon_sym_DASH] = ACTIONS(4328), + [anon_sym_SLASH] = ACTIONS(4328), + [anon_sym_PERCENT] = ACTIONS(4328), + [anon_sym_DASH_DASH] = ACTIONS(4326), + [anon_sym_PLUS_PLUS] = ACTIONS(4326), + [anon_sym_DOT] = ACTIONS(4326), + [anon_sym_DASH_GT] = ACTIONS(4326), [sym_comment] = ACTIONS(49), }, - [1348] = { - [sym__type_specifier] = STATE(1885), - [sym_sized_type_specifier] = STATE(1885), - [sym_enum_specifier] = STATE(1885), - [sym_struct_specifier] = STATE(1885), - [sym_union_specifier] = STATE(1885), - [sym_macro_type_specifier] = STATE(1885), - [sym_class_specifier] = STATE(1885), - [sym_dependent_type] = STATE(1885), + [1349] = { + [sym__type_specifier] = STATE(1888), + [sym_sized_type_specifier] = STATE(1888), + [sym_enum_specifier] = STATE(1888), + [sym_struct_specifier] = STATE(1888), + [sym_union_specifier] = STATE(1888), + [sym_macro_type_specifier] = STATE(1888), + [sym_class_specifier] = STATE(1888), + [sym_dependent_type] = STATE(1888), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1886), - [anon_sym_unsigned] = ACTIONS(4324), - [anon_sym_long] = ACTIONS(4324), - [anon_sym_short] = ACTIONS(4324), - [sym_primitive_type] = ACTIONS(4326), - [anon_sym_enum] = ACTIONS(4328), - [anon_sym_struct] = ACTIONS(4330), - [anon_sym_union] = ACTIONS(4332), + [aux_sym_sized_type_specifier_repeat1] = STATE(1889), + [anon_sym_unsigned] = ACTIONS(4330), + [anon_sym_long] = ACTIONS(4330), + [anon_sym_short] = ACTIONS(4330), + [sym_primitive_type] = ACTIONS(4332), + [anon_sym_enum] = ACTIONS(4334), + [anon_sym_struct] = ACTIONS(4336), + [anon_sym_union] = ACTIONS(4338), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4334), - [sym_auto] = ACTIONS(4326), - [anon_sym_typename] = ACTIONS(4336), + [anon_sym_class] = ACTIONS(4340), + [sym_auto] = ACTIONS(4332), + [anon_sym_typename] = ACTIONS(4342), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1349] = { - [sym_type_qualifier] = STATE(1887), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1887), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1350] = { + [sym_type_qualifier] = STATE(1890), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1890), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -56895,11 +56956,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2812), + [anon_sym_DASH_GT] = ACTIONS(2814), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4338), + [sym_noexcept] = ACTIONS(4344), }, - [1350] = { + [1351] = { [anon_sym_LPAREN] = ACTIONS(1111), [anon_sym_COMMA] = ACTIONS(1111), [anon_sym_RPAREN] = ACTIONS(1111), @@ -56960,13 +57021,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1111), [sym_operator_name] = ACTIONS(1111), }, - [1351] = { - [aux_sym_template_argument_list_repeat1] = STATE(1889), + [1352] = { + [aux_sym_template_argument_list_repeat1] = STATE(1892), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(4340), + [anon_sym_GT] = ACTIONS(4346), [sym_comment] = ACTIONS(49), }, - [1352] = { + [1353] = { [sym_raw_string_literal] = ACTIONS(1111), [anon_sym_LPAREN] = ACTIONS(1111), [anon_sym_extern] = ACTIONS(1113), @@ -57006,22 +57067,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1113), [sym_nullptr] = ACTIONS(1113), }, - [1353] = { - [aux_sym_template_argument_list_repeat1] = STATE(1891), + [1354] = { + [aux_sym_template_argument_list_repeat1] = STATE(1894), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(4342), + [anon_sym_GT] = ACTIONS(4348), [sym_comment] = ACTIONS(49), }, - [1354] = { - [sym_storage_class_specifier] = STATE(1326), - [sym_type_qualifier] = STATE(1326), - [aux_sym__declaration_specifiers_repeat1] = STATE(1326), - [sym_raw_string_literal] = ACTIONS(1809), - [anon_sym_LPAREN] = ACTIONS(1809), + [1355] = { + [sym_storage_class_specifier] = STATE(1327), + [sym_type_qualifier] = STATE(1327), + [aux_sym__declaration_specifiers_repeat1] = STATE(1327), + [sym_raw_string_literal] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1811), [anon_sym_extern] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_LBRACK] = ACTIONS(1809), - [anon_sym_RBRACK] = ACTIONS(1809), + [anon_sym_STAR] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1811), + [anon_sym_RBRACK] = ACTIONS(1811), [anon_sym_static] = ACTIONS(1518), [anon_sym_register] = ACTIONS(1518), [anon_sym_inline] = ACTIONS(1518), @@ -57032,36 +57093,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(1520), [anon_sym_explicit] = ACTIONS(1520), [anon_sym_constexpr] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1809), - [anon_sym_TILDE] = ACTIONS(1809), - [anon_sym_PLUS] = ACTIONS(1811), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_PLUS_PLUS] = ACTIONS(1809), - [anon_sym_sizeof] = ACTIONS(1811), - [sym_number_literal] = ACTIONS(1809), - [sym_char_literal] = ACTIONS(1809), - [sym_string_literal] = ACTIONS(1809), - [sym_true] = ACTIONS(1811), - [sym_false] = ACTIONS(1811), - [sym_null] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1811), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1809), - [anon_sym_delete] = ACTIONS(1811), - [sym_nullptr] = ACTIONS(1811), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1813), + [anon_sym_DASH] = ACTIONS(1813), + [anon_sym_DASH_DASH] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1811), + [anon_sym_sizeof] = ACTIONS(1813), + [sym_number_literal] = ACTIONS(1811), + [sym_char_literal] = ACTIONS(1811), + [sym_string_literal] = ACTIONS(1811), + [sym_true] = ACTIONS(1813), + [sym_false] = ACTIONS(1813), + [sym_null] = ACTIONS(1813), + [sym_identifier] = ACTIONS(1813), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(1813), + [anon_sym_COLON_COLON] = ACTIONS(1811), + [anon_sym_delete] = ACTIONS(1813), + [sym_nullptr] = ACTIONS(1813), }, - [1355] = { - [sym_enumerator] = STATE(1894), - [anon_sym_COMMA] = ACTIONS(4344), - [anon_sym_RBRACE] = ACTIONS(4346), + [1356] = { + [sym_enumerator] = STATE(1897), + [anon_sym_COMMA] = ACTIONS(4350), + [anon_sym_RBRACE] = ACTIONS(4352), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [1356] = { - [sym_enumerator_list] = STATE(1895), + [1357] = { + [sym_enumerator_list] = STATE(1898), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_COMMA] = ACTIONS(350), [anon_sym_RPAREN] = ACTIONS(350), @@ -57085,7 +57146,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(350), }, - [1357] = { + [1358] = { [anon_sym_LPAREN] = ACTIONS(354), [anon_sym_COMMA] = ACTIONS(354), [anon_sym_RPAREN] = ACTIONS(354), @@ -57109,10 +57170,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(354), }, - [1358] = { + [1359] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(1897), + [sym_type_definition] = STATE(1900), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -57125,27 +57186,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1897), - [sym_field_declaration] = STATE(1897), + [sym__field_declaration_list_item] = STATE(1900), + [sym_field_declaration] = STATE(1900), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1897), + [sym_template_declaration] = STATE(1900), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1897), - [sym_access_specifier] = STATE(1897), + [sym_friend_declaration] = STATE(1900), + [sym_access_specifier] = STATE(1900), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1897), - [sym_alias_declaration] = STATE(1897), + [sym_using_declaration] = STATE(1900), + [sym_alias_declaration] = STATE(1900), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1897), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1900), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), @@ -57154,7 +57215,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(4348), + [anon_sym_RBRACE] = ACTIONS(4354), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -57190,8 +57251,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1359] = { - [sym_template_argument_list] = STATE(1370), + [1360] = { + [sym_template_argument_list] = STATE(1371), [anon_sym_LPAREN] = ACTIONS(398), [anon_sym_COMMA] = ACTIONS(398), [anon_sym_RPAREN] = ACTIONS(398), @@ -57210,14 +57271,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(400), [anon_sym_AMP] = ACTIONS(400), [anon_sym_AMP_AMP] = ACTIONS(398), - [anon_sym_LT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), [anon_sym_GT] = ACTIONS(398), [anon_sym_DASH_GT] = ACTIONS(398), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(398), - [anon_sym_COLON_COLON] = ACTIONS(2833), + [anon_sym_COLON_COLON] = ACTIONS(2835), }, - [1360] = { + [1361] = { [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(406), [anon_sym_RPAREN] = ACTIONS(406), @@ -57241,9 +57302,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(406), }, - [1361] = { - [sym_field_declaration_list] = STATE(1898), - [sym_base_class_clause] = STATE(1899), + [1362] = { + [sym_field_declaration_list] = STATE(1901), + [sym_base_class_clause] = STATE(1902), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(406), [anon_sym_SEMI] = ACTIONS(406), @@ -57265,12 +57326,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(406), }, - [1362] = { - [sym_field_declaration_list] = STATE(1898), - [anon_sym_LBRACE] = ACTIONS(2827), + [1363] = { + [sym_field_declaration_list] = STATE(1901), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1363] = { + [1364] = { [anon_sym_LPAREN] = ACTIONS(410), [anon_sym_COMMA] = ACTIONS(410), [anon_sym_RPAREN] = ACTIONS(410), @@ -57293,10 +57354,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(410), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(410), - [anon_sym_COLON_COLON] = ACTIONS(2849), + [anon_sym_COLON_COLON] = ACTIONS(2851), }, - [1364] = { - [sym_template_argument_list] = STATE(1381), + [1365] = { + [sym_template_argument_list] = STATE(1382), [anon_sym_LPAREN] = ACTIONS(410), [anon_sym_COMMA] = ACTIONS(410), [anon_sym_RPAREN] = ACTIONS(410), @@ -57315,13 +57376,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(410), [anon_sym_AMP] = ACTIONS(412), [anon_sym_AMP_AMP] = ACTIONS(410), - [anon_sym_LT] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2833), [anon_sym_GT] = ACTIONS(410), [anon_sym_DASH_GT] = ACTIONS(410), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(410), }, - [1365] = { + [1366] = { [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_COMMA] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), @@ -57345,9 +57406,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(416), }, - [1366] = { - [sym_field_declaration_list] = STATE(1900), - [sym_base_class_clause] = STATE(1901), + [1367] = { + [sym_field_declaration_list] = STATE(1903), + [sym_base_class_clause] = STATE(1904), [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_COMMA] = ACTIONS(416), [anon_sym_SEMI] = ACTIONS(416), @@ -57369,20 +57430,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(416), }, - [1367] = { - [sym_field_declaration_list] = STATE(1900), - [anon_sym_LBRACE] = ACTIONS(2827), + [1368] = { + [sym_field_declaration_list] = STATE(1903), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1368] = { + [1369] = { [sym_type_qualifier] = STATE(279), [sym__type_specifier] = STATE(277), [sym_sized_type_specifier] = STATE(277), [sym_enum_specifier] = STATE(277), [sym_struct_specifier] = STATE(277), [sym_union_specifier] = STATE(277), - [sym_type_descriptor] = STATE(1903), - [sym_parenthesized_expression] = STATE(1903), + [sym_type_descriptor] = STATE(1906), + [sym_parenthesized_expression] = STATE(1906), [sym_macro_type_specifier] = STATE(277), [sym_class_specifier] = STATE(277), [sym_dependent_type] = STATE(277), @@ -57406,7 +57467,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), - [anon_sym_GT] = ACTIONS(4350), + [anon_sym_GT] = ACTIONS(4356), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), @@ -57414,11 +57475,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(438), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1369] = { - [sym_identifier] = ACTIONS(4352), + [1370] = { + [sym_identifier] = ACTIONS(4358), [sym_comment] = ACTIONS(49), }, - [1370] = { + [1371] = { [anon_sym_LPAREN] = ACTIONS(447), [anon_sym_COMMA] = ACTIONS(447), [anon_sym_RPAREN] = ACTIONS(447), @@ -57443,7 +57504,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_noexcept] = ACTIONS(447), [anon_sym_COLON_COLON] = ACTIONS(447), }, - [1371] = { + [1372] = { [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_COMMA] = ACTIONS(451), [anon_sym_RPAREN] = ACTIONS(451), @@ -57467,9 +57528,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(451), }, - [1372] = { - [sym_field_declaration_list] = STATE(1905), - [sym_base_class_clause] = STATE(1906), + [1373] = { + [sym_field_declaration_list] = STATE(1908), + [sym_base_class_clause] = STATE(1909), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_COMMA] = ACTIONS(451), [anon_sym_SEMI] = ACTIONS(451), @@ -57491,12 +57552,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(451), }, - [1373] = { - [sym_field_declaration_list] = STATE(1905), - [anon_sym_LBRACE] = ACTIONS(2827), + [1374] = { + [sym_field_declaration_list] = STATE(1908), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1374] = { + [1375] = { [anon_sym_LPAREN] = ACTIONS(455), [anon_sym_COMMA] = ACTIONS(455), [anon_sym_RPAREN] = ACTIONS(455), @@ -57520,7 +57581,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(455), }, - [1375] = { + [1376] = { [anon_sym_LPAREN] = ACTIONS(512), [anon_sym_COMMA] = ACTIONS(512), [anon_sym_RPAREN] = ACTIONS(512), @@ -57546,97 +57607,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_noexcept] = ACTIONS(512), [anon_sym_COLON_COLON] = ACTIONS(516), }, - [1376] = { - [sym__abstract_declarator] = STATE(1907), - [sym_abstract_pointer_declarator] = STATE(1907), - [sym_abstract_function_declarator] = STATE(1907), - [sym_abstract_array_declarator] = STATE(1907), - [sym_parameter_list] = STATE(1379), - [sym_abstract_reference_declarator] = STATE(1907), - [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_COLON] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), - }, [1377] = { - [sym__abstract_declarator] = STATE(1908), - [sym_abstract_pointer_declarator] = STATE(1908), - [sym_abstract_function_declarator] = STATE(1908), - [sym_abstract_array_declarator] = STATE(1908), - [sym_parameter_list] = STATE(1379), - [sym_abstract_reference_declarator] = STATE(1908), + [sym__abstract_declarator] = STATE(1910), + [sym_abstract_pointer_declarator] = STATE(1910), + [sym_abstract_function_declarator] = STATE(1910), + [sym_abstract_array_declarator] = STATE(1910), + [sym_parameter_list] = STATE(1380), + [sym_abstract_reference_declarator] = STATE(1910), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(2843), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2847), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, [1378] = { - [sym_parameter_list] = STATE(1909), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), + [sym__abstract_declarator] = STATE(1911), + [sym_abstract_pointer_declarator] = STATE(1911), + [sym_abstract_function_declarator] = STATE(1911), + [sym_abstract_array_declarator] = STATE(1911), + [sym_parameter_list] = STATE(1380), + [sym_abstract_reference_declarator] = STATE(1911), + [anon_sym_LPAREN] = ACTIONS(1115), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_LBRACK] = ACTIONS(1121), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2849), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, [1379] = { - [sym_type_qualifier] = STATE(1910), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1910), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [sym_parameter_list] = STATE(1912), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), }, [1380] = { - [sym_identifier] = ACTIONS(4364), + [sym_type_qualifier] = STATE(1913), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1913), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2284), }, [1381] = { + [sym_identifier] = ACTIONS(4370), + [sym_comment] = ACTIONS(49), + }, + [1382] = { [anon_sym_LPAREN] = ACTIONS(708), [anon_sym_COMMA] = ACTIONS(708), [anon_sym_RPAREN] = ACTIONS(708), @@ -57661,7 +57722,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_noexcept] = ACTIONS(708), [anon_sym_COLON_COLON] = ACTIONS(708), }, - [1382] = { + [1383] = { [anon_sym_LPAREN] = ACTIONS(808), [anon_sym_COMMA] = ACTIONS(808), [anon_sym_RPAREN] = ACTIONS(808), @@ -57685,7 +57746,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(808), }, - [1383] = { + [1384] = { [anon_sym_LPAREN] = ACTIONS(812), [anon_sym_COMMA] = ACTIONS(812), [anon_sym_RPAREN] = ACTIONS(812), @@ -57709,8 +57770,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(812), }, - [1384] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1384), + [1385] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1385), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), @@ -57722,9 +57783,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(4366), - [anon_sym_long] = ACTIONS(4366), - [anon_sym_short] = ACTIONS(4366), + [anon_sym_unsigned] = ACTIONS(4372), + [anon_sym_long] = ACTIONS(4372), + [anon_sym_short] = ACTIONS(4372), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(816), [anon_sym_AMP] = ACTIONS(818), @@ -57734,11 +57795,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [1385] = { - [sym_preproc_arg] = ACTIONS(4369), + [1386] = { + [sym_preproc_arg] = ACTIONS(4375), [sym_comment] = ACTIONS(83), }, - [1386] = { + [1387] = { [sym_raw_string_literal] = ACTIONS(825), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(827), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(827), @@ -57806,41 +57867,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(827), [sym_nullptr] = ACTIONS(827), }, - [1387] = { - [anon_sym_LF] = ACTIONS(4371), - [sym_preproc_arg] = ACTIONS(4373), + [1388] = { + [anon_sym_LF] = ACTIONS(4377), + [sym_preproc_arg] = ACTIONS(4379), [sym_comment] = ACTIONS(83), }, - [1388] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1389] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(644), @@ -57853,119 +57914,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4141), - }, - [1389] = { - [sym_string_literal] = ACTIONS(4375), - [sym_system_lib_string] = ACTIONS(4375), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(4147), }, [1390] = { - [sym_identifier] = ACTIONS(4377), + [sym_string_literal] = ACTIONS(4381), + [sym_system_lib_string] = ACTIONS(4381), [sym_comment] = ACTIONS(49), }, [1391] = { - [sym_preproc_arg] = ACTIONS(4379), - [sym_comment] = ACTIONS(83), - }, - [1392] = { - [sym_raw_string_literal] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4381), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_RBRACE] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4381), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_TILDE] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4381), - [sym_char_literal] = ACTIONS(4381), - [sym_string_literal] = ACTIONS(4381), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_null] = ACTIONS(4383), [sym_identifier] = ACTIONS(4383), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4383), - [sym_auto] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4381), - [anon_sym_delete] = ACTIONS(4383), - [sym_nullptr] = ACTIONS(4383), + }, + [1392] = { + [sym_preproc_arg] = ACTIONS(4385), + [sym_comment] = ACTIONS(83), }, [1393] = { - [sym_identifier] = ACTIONS(4385), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_RBRACE] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4387), + [sym_char_literal] = ACTIONS(4387), + [sym_string_literal] = ACTIONS(4387), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_null] = ACTIONS(4389), + [sym_identifier] = ACTIONS(4389), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4389), + [sym_auto] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4389), + [sym_nullptr] = ACTIONS(4389), }, [1394] = { - [sym_identifier] = ACTIONS(4387), + [sym_identifier] = ACTIONS(4391), [sym_comment] = ACTIONS(49), }, [1395] = { - [sym_preproc_include] = STATE(1946), - [sym_preproc_def] = STATE(1946), - [sym_preproc_function_def] = STATE(1946), - [sym_preproc_call] = STATE(1946), - [sym_preproc_if_in_compound_statement] = STATE(1941), - [sym_preproc_ifdef_in_compound_statement] = STATE(1942), - [sym_declaration] = STATE(1946), - [sym_type_definition] = STATE(1946), - [sym__declaration_specifiers] = STATE(1943), - [sym_compound_statement] = STATE(1946), + [sym_identifier] = ACTIONS(4393), + [sym_comment] = ACTIONS(49), + }, + [1396] = { + [sym_preproc_include] = STATE(1949), + [sym_preproc_def] = STATE(1949), + [sym_preproc_function_def] = STATE(1949), + [sym_preproc_call] = STATE(1949), + [sym_preproc_if_in_compound_statement] = STATE(1944), + [sym_preproc_ifdef_in_compound_statement] = STATE(1945), + [sym_declaration] = STATE(1949), + [sym_type_definition] = STATE(1949), + [sym__declaration_specifiers] = STATE(1946), + [sym_compound_statement] = STATE(1949), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -57973,68 +58034,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1946), - [sym_expression_statement] = STATE(1946), - [sym_if_statement] = STATE(1946), - [sym_switch_statement] = STATE(1946), - [sym_case_statement] = STATE(1946), - [sym_while_statement] = STATE(1946), - [sym_do_statement] = STATE(1946), - [sym_for_statement] = STATE(1946), - [sym_return_statement] = STATE(1946), - [sym_break_statement] = STATE(1946), - [sym_continue_statement] = STATE(1946), - [sym_goto_statement] = STATE(1946), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym__empty_declaration] = STATE(1946), + [sym_labeled_statement] = STATE(1949), + [sym_expression_statement] = STATE(1949), + [sym_if_statement] = STATE(1949), + [sym_switch_statement] = STATE(1949), + [sym_case_statement] = STATE(1949), + [sym_while_statement] = STATE(1949), + [sym_do_statement] = STATE(1949), + [sym_for_statement] = STATE(1949), + [sym_return_statement] = STATE(1949), + [sym_break_statement] = STATE(1949), + [sym_continue_statement] = STATE(1949), + [sym_goto_statement] = STATE(1949), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym__empty_declaration] = STATE(1949), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1946), + [sym_structured_binding_declaration] = STATE(1949), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(1946), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(1949), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1946), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1949), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(4389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4393), + [sym_raw_string_literal] = ACTIONS(4395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4399), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4399), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4401), - [sym_preproc_directive] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_typedef] = ACTIONS(4407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_typedef] = ACTIONS(4413), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -58054,17 +58115,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -58073,13 +58134,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(4435), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(4441), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -58087,18 +58148,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), - }, - [1396] = { - [sym_preproc_arg] = ACTIONS(4437), - [sym_comment] = ACTIONS(83), + [sym_nullptr] = ACTIONS(4439), }, [1397] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(4439), - [anon_sym_LF] = ACTIONS(4441), + [sym_preproc_arg] = ACTIONS(4443), [sym_comment] = ACTIONS(83), }, [1398] = { + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(4445), + [anon_sym_LF] = ACTIONS(4447), + [sym_comment] = ACTIONS(83), + }, + [1399] = { [sym_raw_string_literal] = ACTIONS(1614), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1616), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), @@ -58168,20 +58229,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1616), [sym_nullptr] = ACTIONS(1616), }, - [1399] = { - [sym_type_qualifier] = STATE(1951), - [sym__type_specifier] = STATE(1950), - [sym_sized_type_specifier] = STATE(1950), - [sym_enum_specifier] = STATE(1950), - [sym_struct_specifier] = STATE(1950), - [sym_union_specifier] = STATE(1950), - [sym_macro_type_specifier] = STATE(1950), - [sym_class_specifier] = STATE(1950), - [sym_dependent_type] = STATE(1950), + [1400] = { + [sym_type_qualifier] = STATE(1954), + [sym__type_specifier] = STATE(1953), + [sym_sized_type_specifier] = STATE(1953), + [sym_enum_specifier] = STATE(1953), + [sym_struct_specifier] = STATE(1953), + [sym_union_specifier] = STATE(1953), + [sym_macro_type_specifier] = STATE(1953), + [sym_class_specifier] = STATE(1953), + [sym_dependent_type] = STATE(1953), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(1951), + [aux_sym_type_definition_repeat1] = STATE(1954), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -58193,28 +58254,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(4443), + [sym_primitive_type] = ACTIONS(4449), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(4443), + [sym_auto] = ACTIONS(4449), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1400] = { - [sym_preproc_include] = STATE(1953), - [sym_preproc_def] = STATE(1953), - [sym_preproc_function_def] = STATE(1953), - [sym_preproc_call] = STATE(1953), + [1401] = { + [sym_preproc_include] = STATE(1956), + [sym_preproc_def] = STATE(1956), + [sym_preproc_function_def] = STATE(1956), + [sym_preproc_call] = STATE(1956), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1953), - [sym_type_definition] = STATE(1953), + [sym_declaration] = STATE(1956), + [sym_type_definition] = STATE(1956), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1953), + [sym_compound_statement] = STATE(1956), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -58222,18 +58283,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1953), - [sym_expression_statement] = STATE(1953), - [sym_if_statement] = STATE(1953), - [sym_switch_statement] = STATE(1953), - [sym_case_statement] = STATE(1953), - [sym_while_statement] = STATE(1953), - [sym_do_statement] = STATE(1953), - [sym_for_statement] = STATE(1953), - [sym_return_statement] = STATE(1953), - [sym_break_statement] = STATE(1953), - [sym_continue_statement] = STATE(1953), - [sym_goto_statement] = STATE(1953), + [sym_labeled_statement] = STATE(1956), + [sym_expression_statement] = STATE(1956), + [sym_if_statement] = STATE(1956), + [sym_switch_statement] = STATE(1956), + [sym_case_statement] = STATE(1956), + [sym_while_statement] = STATE(1956), + [sym_do_statement] = STATE(1956), + [sym_for_statement] = STATE(1956), + [sym_return_statement] = STATE(1956), + [sym_break_statement] = STATE(1956), + [sym_continue_statement] = STATE(1956), + [sym_goto_statement] = STATE(1956), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -58253,14 +58314,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(1953), + [sym__empty_declaration] = STATE(1956), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1953), + [sym_structured_binding_declaration] = STATE(1956), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(1953), + [sym_for_range_loop] = STATE(1956), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -58268,7 +58329,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1953), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1956), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -58283,7 +58344,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_RBRACE] = ACTIONS(4451), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -58338,135 +58399,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1401] = { - [anon_sym_LPAREN] = ACTIONS(4447), - [sym_comment] = ACTIONS(49), - }, [1402] = { - [anon_sym_LPAREN] = ACTIONS(4449), + [anon_sym_LPAREN] = ACTIONS(4453), + [anon_sym_constexpr] = ACTIONS(4455), [sym_comment] = ACTIONS(49), }, [1403] = { - [sym__expression] = STATE(1956), - [sym_conditional_expression] = STATE(1956), - [sym_assignment_expression] = STATE(1956), - [sym_pointer_expression] = STATE(1956), - [sym_logical_expression] = STATE(1956), - [sym_bitwise_expression] = STATE(1956), - [sym_equality_expression] = STATE(1956), - [sym_relational_expression] = STATE(1956), - [sym_shift_expression] = STATE(1956), - [sym_math_expression] = STATE(1956), - [sym_cast_expression] = STATE(1956), - [sym_sizeof_expression] = STATE(1956), - [sym_subscript_expression] = STATE(1956), - [sym_call_expression] = STATE(1956), - [sym_field_expression] = STATE(1956), - [sym_compound_literal_expression] = STATE(1956), - [sym_parenthesized_expression] = STATE(1956), - [sym_concatenated_string] = STATE(1956), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1956), - [sym_new_expression] = STATE(1956), - [sym_delete_expression] = STATE(1956), - [sym_lambda_expression] = STATE(1956), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4451), - [sym_char_literal] = ACTIONS(4451), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4453), - [sym_false] = ACTIONS(4453), - [sym_null] = ACTIONS(4453), - [sym_identifier] = ACTIONS(1105), + [anon_sym_LPAREN] = ACTIONS(4457), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4453), }, [1404] = { - [anon_sym_COLON] = ACTIONS(4455), + [sym__expression] = STATE(1960), + [sym_conditional_expression] = STATE(1960), + [sym_assignment_expression] = STATE(1960), + [sym_pointer_expression] = STATE(1960), + [sym_logical_expression] = STATE(1960), + [sym_bitwise_expression] = STATE(1960), + [sym_equality_expression] = STATE(1960), + [sym_relational_expression] = STATE(1960), + [sym_shift_expression] = STATE(1960), + [sym_math_expression] = STATE(1960), + [sym_cast_expression] = STATE(1960), + [sym_sizeof_expression] = STATE(1960), + [sym_subscript_expression] = STATE(1960), + [sym_call_expression] = STATE(1960), + [sym_field_expression] = STATE(1960), + [sym_compound_literal_expression] = STATE(1960), + [sym_parenthesized_expression] = STATE(1960), + [sym_concatenated_string] = STATE(1960), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1960), + [sym_new_expression] = STATE(1960), + [sym_delete_expression] = STATE(1960), + [sym_lambda_expression] = STATE(1960), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4459), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4459), + [sym_char_literal] = ACTIONS(4459), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4461), + [sym_false] = ACTIONS(4461), + [sym_null] = ACTIONS(4461), + [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4461), }, [1405] = { - [anon_sym_LPAREN] = ACTIONS(4457), + [anon_sym_COLON] = ACTIONS(4463), [sym_comment] = ACTIONS(49), }, [1406] = { - [sym_compound_statement] = STATE(1959), - [sym_labeled_statement] = STATE(1959), - [sym_expression_statement] = STATE(1959), - [sym_if_statement] = STATE(1959), - [sym_switch_statement] = STATE(1959), - [sym_case_statement] = STATE(1959), - [sym_while_statement] = STATE(1959), - [sym_do_statement] = STATE(1959), - [sym_for_statement] = STATE(1959), - [sym_return_statement] = STATE(1959), - [sym_break_statement] = STATE(1959), - [sym_continue_statement] = STATE(1959), - [sym_goto_statement] = STATE(1959), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(1959), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [anon_sym_LPAREN] = ACTIONS(4465), + [sym_comment] = ACTIONS(49), + }, + [1407] = { + [sym_compound_statement] = STATE(1963), + [sym_labeled_statement] = STATE(1963), + [sym_expression_statement] = STATE(1963), + [sym_if_statement] = STATE(1963), + [sym_switch_statement] = STATE(1963), + [sym_case_statement] = STATE(1963), + [sym_while_statement] = STATE(1963), + [sym_do_statement] = STATE(1963), + [sym_for_statement] = STATE(1963), + [sym_return_statement] = STATE(1963), + [sym_break_statement] = STATE(1963), + [sym_continue_statement] = STATE(1963), + [sym_goto_statement] = STATE(1963), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(1963), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -58475,55 +58537,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [1407] = { - [anon_sym_LPAREN] = ACTIONS(4459), + [1408] = { + [anon_sym_LPAREN] = ACTIONS(4467), [sym_comment] = ACTIONS(49), }, - [1408] = { - [sym__expression] = STATE(1962), - [sym_conditional_expression] = STATE(1962), - [sym_assignment_expression] = STATE(1962), - [sym_pointer_expression] = STATE(1962), - [sym_logical_expression] = STATE(1962), - [sym_bitwise_expression] = STATE(1962), - [sym_equality_expression] = STATE(1962), - [sym_relational_expression] = STATE(1962), - [sym_shift_expression] = STATE(1962), - [sym_math_expression] = STATE(1962), - [sym_cast_expression] = STATE(1962), - [sym_sizeof_expression] = STATE(1962), - [sym_subscript_expression] = STATE(1962), - [sym_call_expression] = STATE(1962), - [sym_field_expression] = STATE(1962), - [sym_compound_literal_expression] = STATE(1962), - [sym_parenthesized_expression] = STATE(1962), - [sym_initializer_list] = STATE(1963), - [sym_concatenated_string] = STATE(1962), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1962), - [sym_new_expression] = STATE(1962), - [sym_delete_expression] = STATE(1962), - [sym_lambda_expression] = STATE(1962), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4461), + [1409] = { + [sym__expression] = STATE(1966), + [sym_conditional_expression] = STATE(1966), + [sym_assignment_expression] = STATE(1966), + [sym_pointer_expression] = STATE(1966), + [sym_logical_expression] = STATE(1966), + [sym_bitwise_expression] = STATE(1966), + [sym_equality_expression] = STATE(1966), + [sym_relational_expression] = STATE(1966), + [sym_shift_expression] = STATE(1966), + [sym_math_expression] = STATE(1966), + [sym_cast_expression] = STATE(1966), + [sym_sizeof_expression] = STATE(1966), + [sym_subscript_expression] = STATE(1966), + [sym_call_expression] = STATE(1966), + [sym_field_expression] = STATE(1966), + [sym_compound_literal_expression] = STATE(1966), + [sym_parenthesized_expression] = STATE(1966), + [sym_initializer_list] = STATE(1967), + [sym_concatenated_string] = STATE(1966), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1966), + [sym_new_expression] = STATE(1966), + [sym_delete_expression] = STATE(1966), + [sym_lambda_expression] = STATE(1966), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4469), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(4463), + [anon_sym_SEMI] = ACTIONS(4471), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -58535,34 +58597,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4461), - [sym_char_literal] = ACTIONS(4461), + [sym_number_literal] = ACTIONS(4469), + [sym_char_literal] = ACTIONS(4469), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4465), - [sym_false] = ACTIONS(4465), - [sym_null] = ACTIONS(4465), + [sym_true] = ACTIONS(4473), + [sym_false] = ACTIONS(4473), + [sym_null] = ACTIONS(4473), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4465), - }, - [1409] = { - [anon_sym_SEMI] = ACTIONS(4467), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(4473), }, [1410] = { - [anon_sym_SEMI] = ACTIONS(4469), + [anon_sym_SEMI] = ACTIONS(4475), [sym_comment] = ACTIONS(49), }, [1411] = { - [sym_identifier] = ACTIONS(4471), + [anon_sym_SEMI] = ACTIONS(4477), [sym_comment] = ACTIONS(49), }, [1412] = { + [sym_identifier] = ACTIONS(4479), + [sym_comment] = ACTIONS(49), + }, + [1413] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(886), + [sym_template_argument_list] = STATE(887), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1483), @@ -58581,7 +58643,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4481), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -58617,174 +58679,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1716), [sym_operator_name] = ACTIONS(142), }, - [1413] = { - [sym_raw_string_literal] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1728), - [sym_preproc_directive] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_typedef] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_register] = ACTIONS(1728), - [anon_sym_inline] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_restrict] = ACTIONS(1728), - [anon_sym_volatile] = ACTIONS(1728), - [anon_sym__Atomic] = ACTIONS(1728), - [anon_sym_mutable] = ACTIONS(1728), - [anon_sym_explicit] = ACTIONS(1728), - [anon_sym_constexpr] = ACTIONS(1728), - [anon_sym_unsigned] = ACTIONS(1728), - [anon_sym_long] = ACTIONS(1728), - [anon_sym_short] = ACTIONS(1728), - [sym_primitive_type] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_goto] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_sizeof] = ACTIONS(1728), - [sym_number_literal] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [sym_string_literal] = ACTIONS(1726), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [sym_null] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1728), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1728), - [sym_auto] = ACTIONS(1728), - [anon_sym_typename] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_delete] = ACTIONS(1728), - [sym_nullptr] = ACTIONS(1728), - }, [1414] = { - [sym_raw_string_literal] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1732), - [sym_preproc_directive] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_typedef] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym_mutable] = ACTIONS(1732), - [anon_sym_explicit] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_unsigned] = ACTIONS(1732), - [anon_sym_long] = ACTIONS(1732), - [anon_sym_short] = ACTIONS(1732), - [sym_primitive_type] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [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_AMP] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_sizeof] = ACTIONS(1732), - [sym_number_literal] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [sym_string_literal] = ACTIONS(1730), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [sym_null] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1732), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1732), - [sym_auto] = ACTIONS(1732), - [anon_sym_typename] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_delete] = ACTIONS(1732), - [sym_nullptr] = ACTIONS(1732), + [sym_raw_string_literal] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1730), + [sym_preproc_directive] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_restrict] = ACTIONS(1730), + [anon_sym_volatile] = ACTIONS(1730), + [anon_sym__Atomic] = ACTIONS(1730), + [anon_sym_mutable] = ACTIONS(1730), + [anon_sym_explicit] = ACTIONS(1730), + [anon_sym_constexpr] = ACTIONS(1730), + [anon_sym_unsigned] = ACTIONS(1730), + [anon_sym_long] = ACTIONS(1730), + [anon_sym_short] = ACTIONS(1730), + [sym_primitive_type] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_goto] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_sizeof] = ACTIONS(1730), + [sym_number_literal] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [sym_string_literal] = ACTIONS(1728), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [sym_null] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1730), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1730), + [sym_auto] = ACTIONS(1730), + [anon_sym_typename] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1730), + [sym_nullptr] = ACTIONS(1730), }, [1415] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4475), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1734), + [sym_preproc_directive] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_register] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_restrict] = ACTIONS(1734), + [anon_sym_volatile] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1734), + [anon_sym_mutable] = ACTIONS(1734), + [anon_sym_explicit] = ACTIONS(1734), + [anon_sym_constexpr] = ACTIONS(1734), + [anon_sym_unsigned] = ACTIONS(1734), + [anon_sym_long] = ACTIONS(1734), + [anon_sym_short] = 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(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_AMP] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_sizeof] = ACTIONS(1734), + [sym_number_literal] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [sym_string_literal] = ACTIONS(1732), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [sym_null] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1734), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1734), + [sym_auto] = ACTIONS(1734), + [anon_sym_typename] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [sym_nullptr] = ACTIONS(1734), }, [1416] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4477), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4483), [sym_comment] = ACTIONS(49), }, [1417] = { - [sym__declarator] = STATE(1971), - [sym_pointer_declarator] = STATE(1971), - [sym_function_declarator] = STATE(1971), - [sym_array_declarator] = STATE(1971), - [sym_init_declarator] = STATE(1972), - [sym_reference_declarator] = STATE(1971), - [sym_structured_binding_reference_declarator] = STATE(1973), - [sym_structured_binding_declarator] = STATE(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4485), + [sym_comment] = ACTIONS(49), + }, + [1418] = { + [sym__declarator] = STATE(1975), + [sym_pointer_declarator] = STATE(1975), + [sym_function_declarator] = STATE(1975), + [sym_array_declarator] = STATE(1975), + [sym_init_declarator] = STATE(1976), + [sym_reference_declarator] = STATE(1975), + [sym_structured_binding_reference_declarator] = STATE(1977), + [sym_structured_binding_declarator] = STATE(1978), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1971), - [sym_destructor_name] = STATE(1971), + [sym_template_function] = STATE(1975), + [sym_destructor_name] = STATE(1975), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(4479), + [anon_sym_SEMI] = ACTIONS(4487), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(198), [anon_sym_AMP] = ACTIONS(200), @@ -58793,67 +58855,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(4481), + [sym_operator_name] = ACTIONS(4489), }, - [1418] = { + [1419] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(4491), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1419] = { - [anon_sym_SEMI] = ACTIONS(4483), + [1420] = { + [anon_sym_SEMI] = ACTIONS(4491), [sym_comment] = ACTIONS(49), }, - [1420] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1977), - [sym_preproc_elif_in_compound_statement] = STATE(1978), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [1421] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1981), + [sym_preproc_elif_in_compound_statement] = STATE(1982), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -58861,70 +58923,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -58944,17 +59006,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -58963,13 +59025,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -58977,97 +59039,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), - }, - [1421] = { - [sym_raw_string_literal] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4489), - [sym_preproc_directive] = ACTIONS(4489), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_typedef] = ACTIONS(4489), - [anon_sym_extern] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_RBRACE] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_static] = ACTIONS(4489), - [anon_sym_register] = ACTIONS(4489), - [anon_sym_inline] = ACTIONS(4489), - [anon_sym_const] = ACTIONS(4489), - [anon_sym_restrict] = ACTIONS(4489), - [anon_sym_volatile] = ACTIONS(4489), - [anon_sym__Atomic] = ACTIONS(4489), - [anon_sym_mutable] = ACTIONS(4489), - [anon_sym_explicit] = ACTIONS(4489), - [anon_sym_constexpr] = ACTIONS(4489), - [anon_sym_unsigned] = ACTIONS(4489), - [anon_sym_long] = ACTIONS(4489), - [anon_sym_short] = ACTIONS(4489), - [sym_primitive_type] = ACTIONS(4489), - [anon_sym_enum] = ACTIONS(4489), - [anon_sym_struct] = ACTIONS(4489), - [anon_sym_union] = ACTIONS(4489), - [anon_sym_if] = ACTIONS(4489), - [anon_sym_switch] = ACTIONS(4489), - [anon_sym_case] = ACTIONS(4489), - [anon_sym_default] = ACTIONS(4489), - [anon_sym_while] = ACTIONS(4489), - [anon_sym_do] = ACTIONS(4489), - [anon_sym_for] = ACTIONS(4489), - [anon_sym_return] = ACTIONS(4489), - [anon_sym_break] = ACTIONS(4489), - [anon_sym_continue] = ACTIONS(4489), - [anon_sym_goto] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_TILDE] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4487), - [anon_sym_sizeof] = ACTIONS(4489), - [sym_number_literal] = ACTIONS(4487), - [sym_char_literal] = ACTIONS(4487), - [sym_string_literal] = ACTIONS(4487), - [sym_true] = ACTIONS(4489), - [sym_false] = ACTIONS(4489), - [sym_null] = ACTIONS(4489), - [sym_identifier] = ACTIONS(4489), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4489), - [sym_auto] = ACTIONS(4489), - [anon_sym_typename] = ACTIONS(4489), - [anon_sym_new] = ACTIONS(4489), - [anon_sym_COLON_COLON] = ACTIONS(4487), - [anon_sym_delete] = ACTIONS(4489), - [sym_nullptr] = ACTIONS(4489), + [sym_nullptr] = ACTIONS(2927), }, [1422] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4491), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4497), + [sym_preproc_directive] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_typedef] = ACTIONS(4497), + [anon_sym_extern] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_RBRACE] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_static] = ACTIONS(4497), + [anon_sym_register] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_restrict] = ACTIONS(4497), + [anon_sym_volatile] = ACTIONS(4497), + [anon_sym__Atomic] = ACTIONS(4497), + [anon_sym_mutable] = ACTIONS(4497), + [anon_sym_explicit] = ACTIONS(4497), + [anon_sym_constexpr] = ACTIONS(4497), + [anon_sym_unsigned] = ACTIONS(4497), + [anon_sym_long] = ACTIONS(4497), + [anon_sym_short] = ACTIONS(4497), + [sym_primitive_type] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_union] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_switch] = ACTIONS(4497), + [anon_sym_case] = ACTIONS(4497), + [anon_sym_default] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_do] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_goto] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_sizeof] = ACTIONS(4497), + [sym_number_literal] = ACTIONS(4495), + [sym_char_literal] = ACTIONS(4495), + [sym_string_literal] = ACTIONS(4495), + [sym_true] = ACTIONS(4497), + [sym_false] = ACTIONS(4497), + [sym_null] = ACTIONS(4497), + [sym_identifier] = ACTIONS(4497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4497), + [sym_auto] = ACTIONS(4497), + [anon_sym_typename] = ACTIONS(4497), + [anon_sym_new] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_delete] = ACTIONS(4497), + [sym_nullptr] = ACTIONS(4497), }, [1423] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4499), [sym_comment] = ACTIONS(49), }, [1424] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1983), - [sym_preproc_elif_in_compound_statement] = STATE(1984), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4501), + [sym_comment] = ACTIONS(49), + }, + [1425] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1987), + [sym_preproc_elif_in_compound_statement] = STATE(1988), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -59075,70 +59137,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4503), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -59158,17 +59220,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -59177,13 +59239,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -59191,97 +59253,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), - }, - [1425] = { - [sym_raw_string_literal] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4499), - [anon_sym_LPAREN] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4499), - [sym_preproc_directive] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_typedef] = ACTIONS(4499), - [anon_sym_extern] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_RBRACE] = ACTIONS(4497), - [anon_sym_STAR] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_static] = ACTIONS(4499), - [anon_sym_register] = ACTIONS(4499), - [anon_sym_inline] = ACTIONS(4499), - [anon_sym_const] = ACTIONS(4499), - [anon_sym_restrict] = ACTIONS(4499), - [anon_sym_volatile] = ACTIONS(4499), - [anon_sym__Atomic] = ACTIONS(4499), - [anon_sym_mutable] = ACTIONS(4499), - [anon_sym_explicit] = ACTIONS(4499), - [anon_sym_constexpr] = ACTIONS(4499), - [anon_sym_unsigned] = ACTIONS(4499), - [anon_sym_long] = ACTIONS(4499), - [anon_sym_short] = ACTIONS(4499), - [sym_primitive_type] = ACTIONS(4499), - [anon_sym_enum] = ACTIONS(4499), - [anon_sym_struct] = ACTIONS(4499), - [anon_sym_union] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_switch] = ACTIONS(4499), - [anon_sym_case] = ACTIONS(4499), - [anon_sym_default] = ACTIONS(4499), - [anon_sym_while] = ACTIONS(4499), - [anon_sym_do] = ACTIONS(4499), - [anon_sym_for] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_goto] = ACTIONS(4499), - [anon_sym_AMP] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4497), - [anon_sym_TILDE] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_sizeof] = ACTIONS(4499), - [sym_number_literal] = ACTIONS(4497), - [sym_char_literal] = ACTIONS(4497), - [sym_string_literal] = ACTIONS(4497), - [sym_true] = ACTIONS(4499), - [sym_false] = ACTIONS(4499), - [sym_null] = ACTIONS(4499), - [sym_identifier] = ACTIONS(4499), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4499), - [sym_auto] = ACTIONS(4499), - [anon_sym_typename] = ACTIONS(4499), - [anon_sym_new] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_delete] = ACTIONS(4499), - [sym_nullptr] = ACTIONS(4499), + [sym_nullptr] = ACTIONS(2927), }, [1426] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4501), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4507), + [sym_preproc_directive] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_typedef] = ACTIONS(4507), + [anon_sym_extern] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_RBRACE] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_register] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_const] = ACTIONS(4507), + [anon_sym_restrict] = ACTIONS(4507), + [anon_sym_volatile] = ACTIONS(4507), + [anon_sym__Atomic] = ACTIONS(4507), + [anon_sym_mutable] = ACTIONS(4507), + [anon_sym_explicit] = ACTIONS(4507), + [anon_sym_constexpr] = ACTIONS(4507), + [anon_sym_unsigned] = ACTIONS(4507), + [anon_sym_long] = ACTIONS(4507), + [anon_sym_short] = ACTIONS(4507), + [sym_primitive_type] = ACTIONS(4507), + [anon_sym_enum] = ACTIONS(4507), + [anon_sym_struct] = ACTIONS(4507), + [anon_sym_union] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_switch] = ACTIONS(4507), + [anon_sym_case] = ACTIONS(4507), + [anon_sym_default] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_do] = ACTIONS(4507), + [anon_sym_for] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_goto] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_TILDE] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4505), + [sym_char_literal] = ACTIONS(4505), + [sym_string_literal] = ACTIONS(4505), + [sym_true] = ACTIONS(4507), + [sym_false] = ACTIONS(4507), + [sym_null] = ACTIONS(4507), + [sym_identifier] = ACTIONS(4507), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4507), + [sym_auto] = ACTIONS(4507), + [anon_sym_typename] = ACTIONS(4507), + [anon_sym_new] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_delete] = ACTIONS(4507), + [sym_nullptr] = ACTIONS(4507), }, [1427] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4503), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4509), [sym_comment] = ACTIONS(49), }, [1428] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(1988), - [sym_preproc_elif_in_compound_statement] = STATE(1989), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4511), + [sym_comment] = ACTIONS(49), + }, + [1429] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(1992), + [sym_preproc_elif_in_compound_statement] = STATE(1993), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -59289,70 +59351,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4505), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4513), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -59372,17 +59434,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -59391,13 +59453,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -59405,21 +59467,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1429] = { - [anon_sym_LF] = ACTIONS(4507), + [1430] = { + [anon_sym_LF] = ACTIONS(4515), [sym_comment] = ACTIONS(83), }, - [1430] = { + [1431] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4509), + [anon_sym_SEMI] = ACTIONS(4517), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [1431] = { - [sym__type_declarator] = STATE(1992), + [1432] = { + [sym__type_declarator] = STATE(1996), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -59428,75 +59490,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [1432] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), - }, [1433] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), + }, + [1434] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -59515,7 +59577,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(1993), + [sym_type_descriptor] = STATE(1997), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -59579,7 +59641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1434] = { + [1435] = { [sym__expression] = STATE(727), [sym_conditional_expression] = STATE(727), [sym_assignment_expression] = STATE(727), @@ -59608,31 +59670,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), [sym_number_literal] = ACTIONS(1411), [sym_char_literal] = ACTIONS(1411), - [sym_string_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2957), [sym_true] = ACTIONS(1413), [sym_false] = ACTIONS(1413), [sym_null] = ACTIONS(1413), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), [sym_nullptr] = ACTIONS(1413), }, - [1435] = { + [1436] = { [sym__expression] = STATE(757), [sym_conditional_expression] = STATE(757), [sym_assignment_expression] = STATE(757), @@ -59661,31 +59723,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), [sym_number_literal] = ACTIONS(1459), [sym_char_literal] = ACTIONS(1459), - [sym_string_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2957), [sym_true] = ACTIONS(1461), [sym_false] = ACTIONS(1461), [sym_null] = ACTIONS(1461), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), [sym_nullptr] = ACTIONS(1461), }, - [1436] = { + [1437] = { [sym__expression] = STATE(758), [sym_conditional_expression] = STATE(758), [sym_assignment_expression] = STATE(758), @@ -59714,31 +59776,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), [sym_number_literal] = ACTIONS(1463), [sym_char_literal] = ACTIONS(1463), - [sym_string_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2957), [sym_true] = ACTIONS(1465), [sym_false] = ACTIONS(1465), [sym_null] = ACTIONS(1465), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), [sym_nullptr] = ACTIONS(1465), }, - [1437] = { + [1438] = { [sym__expression] = STATE(759), [sym_conditional_expression] = STATE(759), [sym_assignment_expression] = STATE(759), @@ -59767,134 +59829,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), [sym_number_literal] = ACTIONS(1467), [sym_char_literal] = ACTIONS(1467), - [sym_string_literal] = ACTIONS(2955), + [sym_string_literal] = ACTIONS(2957), [sym_true] = ACTIONS(1469), [sym_false] = ACTIONS(1469), [sym_null] = ACTIONS(1469), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), [sym_nullptr] = ACTIONS(1469), }, - [1438] = { - [sym__expression] = STATE(1995), - [sym_conditional_expression] = STATE(1995), - [sym_assignment_expression] = STATE(1995), - [sym_pointer_expression] = STATE(1995), - [sym_logical_expression] = STATE(1995), - [sym_bitwise_expression] = STATE(1995), - [sym_equality_expression] = STATE(1995), - [sym_relational_expression] = STATE(1995), - [sym_shift_expression] = STATE(1995), - [sym_math_expression] = STATE(1995), - [sym_cast_expression] = STATE(1995), - [sym_sizeof_expression] = STATE(1995), - [sym_subscript_expression] = STATE(1995), - [sym_call_expression] = STATE(1995), - [sym_field_expression] = STATE(1995), - [sym_compound_literal_expression] = STATE(1995), - [sym_parenthesized_expression] = STATE(1995), - [sym_concatenated_string] = STATE(1995), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1995), - [sym_new_expression] = STATE(1995), - [sym_delete_expression] = STATE(1995), - [sym_lambda_expression] = STATE(1995), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4511), - [anon_sym_LPAREN] = ACTIONS(4513), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4511), - [sym_char_literal] = ACTIONS(4511), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4515), - [sym_false] = ACTIONS(4515), - [sym_null] = ACTIONS(4515), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4515), - }, [1439] = { - [aux_sym_concatenated_string_repeat1] = STATE(1996), - [anon_sym_LPAREN] = ACTIONS(1477), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1477), - [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_QMARK] = ACTIONS(1477), - [anon_sym_STAR_EQ] = ACTIONS(1477), - [anon_sym_SLASH_EQ] = ACTIONS(1477), - [anon_sym_PERCENT_EQ] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1477), - [anon_sym_DASH_EQ] = ACTIONS(1477), - [anon_sym_LT_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_GT_EQ] = ACTIONS(1477), - [anon_sym_AMP_EQ] = ACTIONS(1477), - [anon_sym_CARET_EQ] = ACTIONS(1477), - [anon_sym_PIPE_EQ] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1479), - [anon_sym_CARET] = ACTIONS(1479), - [anon_sym_EQ_EQ] = ACTIONS(1477), - [anon_sym_BANG_EQ] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1479), - [anon_sym_GT] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1477), - [anon_sym_LT_LT] = ACTIONS(1479), - [anon_sym_GT_GT] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1479), - [anon_sym_DASH] = ACTIONS(1479), - [anon_sym_SLASH] = ACTIONS(1479), - [anon_sym_PERCENT] = ACTIONS(1479), - [anon_sym_DASH_DASH] = ACTIONS(1477), - [anon_sym_PLUS_PLUS] = ACTIONS(1477), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(4517), - [sym_comment] = ACTIONS(49), - }, - [1440] = { - [sym_destructor_name] = STATE(120), - [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), - [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(4519), - [sym_operator_name] = ACTIONS(190), - }, - [1441] = { [sym__expression] = STATE(1999), [sym_conditional_expression] = STATE(1999), [sym_assignment_expression] = STATE(1999), @@ -59922,282 +59881,438 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4521), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(4523), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4521), - [sym_char_literal] = ACTIONS(4521), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4525), - [sym_false] = ACTIONS(4525), - [sym_null] = ACTIONS(4525), + [sym_raw_string_literal] = ACTIONS(4519), + [anon_sym_LPAREN] = ACTIONS(4521), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4519), + [sym_char_literal] = ACTIONS(4519), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4523), + [sym_false] = ACTIONS(4523), + [sym_null] = ACTIONS(4523), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4525), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4523), + }, + [1440] = { + [aux_sym_concatenated_string_repeat1] = STATE(2000), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_RPAREN] = ACTIONS(1477), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_DASH_DASH] = ACTIONS(1477), + [anon_sym_PLUS_PLUS] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_DASH_GT] = ACTIONS(1477), + [sym_string_literal] = ACTIONS(4525), + [sym_comment] = ACTIONS(49), + }, + [1441] = { + [sym_destructor_name] = STATE(120), + [anon_sym_TILDE] = ACTIONS(1500), + [sym_identifier] = ACTIONS(2220), + [sym_comment] = ACTIONS(49), + [anon_sym_delete] = ACTIONS(4527), + [sym_operator_name] = ACTIONS(190), }, [1442] = { + [sym__expression] = STATE(2003), + [sym_conditional_expression] = STATE(2003), + [sym_assignment_expression] = STATE(2003), + [sym_pointer_expression] = STATE(2003), + [sym_logical_expression] = STATE(2003), + [sym_bitwise_expression] = STATE(2003), + [sym_equality_expression] = STATE(2003), + [sym_relational_expression] = STATE(2003), + [sym_shift_expression] = STATE(2003), + [sym_math_expression] = STATE(2003), + [sym_cast_expression] = STATE(2003), + [sym_sizeof_expression] = STATE(2003), + [sym_subscript_expression] = STATE(2003), + [sym_call_expression] = STATE(2003), + [sym_field_expression] = STATE(2003), + [sym_compound_literal_expression] = STATE(2003), + [sym_parenthesized_expression] = STATE(2003), + [sym_concatenated_string] = STATE(2003), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2003), + [sym_new_expression] = STATE(2003), + [sym_delete_expression] = STATE(2003), + [sym_lambda_expression] = STATE(2003), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4529), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(4531), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4529), + [sym_char_literal] = ACTIONS(4529), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4533), + [sym_false] = ACTIONS(4533), + [sym_null] = ACTIONS(4533), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4533), + }, + [1443] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4527), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4535), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1443] = { + [1444] = { + [sym__expression] = STATE(2017), + [sym_conditional_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2017), + [sym_pointer_expression] = STATE(2017), + [sym_logical_expression] = STATE(2017), + [sym_bitwise_expression] = STATE(2017), + [sym_equality_expression] = STATE(2017), + [sym_relational_expression] = STATE(2017), + [sym_shift_expression] = STATE(2017), + [sym_math_expression] = STATE(2017), + [sym_cast_expression] = STATE(2017), + [sym_sizeof_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_call_expression] = STATE(2017), + [sym_field_expression] = STATE(2017), + [sym_compound_literal_expression] = STATE(2017), + [sym_parenthesized_expression] = STATE(2017), + [sym_concatenated_string] = STATE(2017), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2017), + [sym_new_expression] = STATE(2017), + [sym_delete_expression] = STATE(2017), + [sym_lambda_expression] = STATE(2017), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4565), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4565), + [sym_char_literal] = ACTIONS(4565), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4567), + [sym_false] = ACTIONS(4567), + [sym_null] = ACTIONS(4567), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4567), + }, + [1445] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4557), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4569), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1444] = { - [anon_sym_RPAREN] = ACTIONS(4559), + [1446] = { + [anon_sym_RPAREN] = ACTIONS(4571), [sym_comment] = ACTIONS(49), }, - [1445] = { + [1447] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2620), + [anon_sym_STAR] = ACTIONS(2622), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2620), - [anon_sym_COLON] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_STAR_EQ] = ACTIONS(2618), - [anon_sym_SLASH_EQ] = ACTIONS(2618), - [anon_sym_PERCENT_EQ] = ACTIONS(2618), - [anon_sym_PLUS_EQ] = ACTIONS(2618), - [anon_sym_DASH_EQ] = ACTIONS(2618), - [anon_sym_LT_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_GT_EQ] = ACTIONS(2618), - [anon_sym_AMP_EQ] = ACTIONS(2618), - [anon_sym_CARET_EQ] = ACTIONS(2618), - [anon_sym_PIPE_EQ] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2620), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2620), - [anon_sym_CARET] = ACTIONS(2620), - [anon_sym_EQ_EQ] = ACTIONS(2618), - [anon_sym_BANG_EQ] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2620), - [anon_sym_GT] = ACTIONS(2620), - [anon_sym_LT_EQ] = ACTIONS(2618), - [anon_sym_GT_EQ] = ACTIONS(2618), - [anon_sym_LT_LT] = ACTIONS(2620), - [anon_sym_GT_GT] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2620), - [anon_sym_SLASH] = ACTIONS(2620), - [anon_sym_PERCENT] = ACTIONS(2620), - [anon_sym_DASH_DASH] = ACTIONS(2618), - [anon_sym_PLUS_PLUS] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(2622), + [anon_sym_COLON] = ACTIONS(2620), + [anon_sym_QMARK] = ACTIONS(2620), + [anon_sym_STAR_EQ] = ACTIONS(2620), + [anon_sym_SLASH_EQ] = ACTIONS(2620), + [anon_sym_PERCENT_EQ] = ACTIONS(2620), + [anon_sym_PLUS_EQ] = ACTIONS(2620), + [anon_sym_DASH_EQ] = ACTIONS(2620), + [anon_sym_LT_LT_EQ] = ACTIONS(2620), + [anon_sym_GT_GT_EQ] = ACTIONS(2620), + [anon_sym_AMP_EQ] = ACTIONS(2620), + [anon_sym_CARET_EQ] = ACTIONS(2620), + [anon_sym_PIPE_EQ] = ACTIONS(2620), + [anon_sym_AMP] = ACTIONS(2622), + [anon_sym_PIPE_PIPE] = ACTIONS(2620), + [anon_sym_AMP_AMP] = ACTIONS(2620), + [anon_sym_PIPE] = ACTIONS(2622), + [anon_sym_CARET] = ACTIONS(2622), + [anon_sym_EQ_EQ] = ACTIONS(2620), + [anon_sym_BANG_EQ] = ACTIONS(2620), + [anon_sym_LT] = ACTIONS(2622), + [anon_sym_GT] = ACTIONS(2622), + [anon_sym_LT_EQ] = ACTIONS(2620), + [anon_sym_GT_EQ] = ACTIONS(2620), + [anon_sym_LT_LT] = ACTIONS(2622), + [anon_sym_GT_GT] = ACTIONS(2622), + [anon_sym_PLUS] = ACTIONS(2622), + [anon_sym_DASH] = ACTIONS(2622), + [anon_sym_SLASH] = ACTIONS(2622), + [anon_sym_PERCENT] = ACTIONS(2622), + [anon_sym_DASH_DASH] = ACTIONS(2620), + [anon_sym_PLUS_PLUS] = ACTIONS(2620), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1446] = { + [1448] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2690), + [anon_sym_STAR] = ACTIONS(2692), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2690), - [anon_sym_COLON] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_STAR_EQ] = ACTIONS(2688), - [anon_sym_SLASH_EQ] = ACTIONS(2688), - [anon_sym_PERCENT_EQ] = ACTIONS(2688), - [anon_sym_PLUS_EQ] = ACTIONS(2688), - [anon_sym_DASH_EQ] = ACTIONS(2688), - [anon_sym_LT_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_GT_EQ] = ACTIONS(2688), - [anon_sym_AMP_EQ] = ACTIONS(2688), - [anon_sym_CARET_EQ] = ACTIONS(2688), - [anon_sym_PIPE_EQ] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2690), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_PIPE] = ACTIONS(2690), - [anon_sym_CARET] = ACTIONS(2690), - [anon_sym_EQ_EQ] = ACTIONS(2688), - [anon_sym_BANG_EQ] = ACTIONS(2688), - [anon_sym_LT] = ACTIONS(2690), - [anon_sym_GT] = ACTIONS(2690), - [anon_sym_LT_EQ] = ACTIONS(2688), - [anon_sym_GT_EQ] = ACTIONS(2688), - [anon_sym_LT_LT] = ACTIONS(2690), - [anon_sym_GT_GT] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2690), - [anon_sym_DASH] = ACTIONS(2690), - [anon_sym_SLASH] = ACTIONS(2690), - [anon_sym_PERCENT] = ACTIONS(2690), - [anon_sym_DASH_DASH] = ACTIONS(2688), - [anon_sym_PLUS_PLUS] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(2692), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_QMARK] = ACTIONS(2690), + [anon_sym_STAR_EQ] = ACTIONS(2690), + [anon_sym_SLASH_EQ] = ACTIONS(2690), + [anon_sym_PERCENT_EQ] = ACTIONS(2690), + [anon_sym_PLUS_EQ] = ACTIONS(2690), + [anon_sym_DASH_EQ] = ACTIONS(2690), + [anon_sym_LT_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_GT_EQ] = ACTIONS(2690), + [anon_sym_AMP_EQ] = ACTIONS(2690), + [anon_sym_CARET_EQ] = ACTIONS(2690), + [anon_sym_PIPE_EQ] = ACTIONS(2690), + [anon_sym_AMP] = ACTIONS(2692), + [anon_sym_PIPE_PIPE] = ACTIONS(2690), + [anon_sym_AMP_AMP] = ACTIONS(2690), + [anon_sym_PIPE] = ACTIONS(2692), + [anon_sym_CARET] = ACTIONS(2692), + [anon_sym_EQ_EQ] = ACTIONS(2690), + [anon_sym_BANG_EQ] = ACTIONS(2690), + [anon_sym_LT] = ACTIONS(2692), + [anon_sym_GT] = ACTIONS(2692), + [anon_sym_LT_EQ] = ACTIONS(2690), + [anon_sym_GT_EQ] = ACTIONS(2690), + [anon_sym_LT_LT] = ACTIONS(2692), + [anon_sym_GT_GT] = ACTIONS(2692), + [anon_sym_PLUS] = ACTIONS(2692), + [anon_sym_DASH] = ACTIONS(2692), + [anon_sym_SLASH] = ACTIONS(2692), + [anon_sym_PERCENT] = ACTIONS(2692), + [anon_sym_DASH_DASH] = ACTIONS(2690), + [anon_sym_PLUS_PLUS] = ACTIONS(2690), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1447] = { + [1449] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2694), + [anon_sym_STAR] = ACTIONS(2696), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2694), - [anon_sym_COLON] = ACTIONS(2692), - [anon_sym_QMARK] = ACTIONS(2692), - [anon_sym_STAR_EQ] = ACTIONS(2692), - [anon_sym_SLASH_EQ] = ACTIONS(2692), - [anon_sym_PERCENT_EQ] = ACTIONS(2692), - [anon_sym_PLUS_EQ] = ACTIONS(2692), - [anon_sym_DASH_EQ] = ACTIONS(2692), - [anon_sym_LT_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_GT_EQ] = ACTIONS(2692), - [anon_sym_AMP_EQ] = ACTIONS(2692), - [anon_sym_CARET_EQ] = ACTIONS(2692), - [anon_sym_PIPE_EQ] = ACTIONS(2692), - [anon_sym_AMP] = ACTIONS(2694), - [anon_sym_PIPE_PIPE] = ACTIONS(2692), - [anon_sym_AMP_AMP] = ACTIONS(2692), - [anon_sym_PIPE] = ACTIONS(2694), - [anon_sym_CARET] = ACTIONS(2694), - [anon_sym_EQ_EQ] = ACTIONS(2692), - [anon_sym_BANG_EQ] = ACTIONS(2692), - [anon_sym_LT] = ACTIONS(2694), - [anon_sym_GT] = ACTIONS(2694), - [anon_sym_LT_EQ] = ACTIONS(2692), - [anon_sym_GT_EQ] = ACTIONS(2692), - [anon_sym_LT_LT] = ACTIONS(2694), - [anon_sym_GT_GT] = ACTIONS(2694), - [anon_sym_PLUS] = ACTIONS(2694), - [anon_sym_DASH] = ACTIONS(2694), - [anon_sym_SLASH] = ACTIONS(2694), - [anon_sym_PERCENT] = ACTIONS(2694), - [anon_sym_DASH_DASH] = ACTIONS(2692), - [anon_sym_PLUS_PLUS] = ACTIONS(2692), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_EQ] = ACTIONS(2696), + [anon_sym_COLON] = ACTIONS(2694), + [anon_sym_QMARK] = ACTIONS(2694), + [anon_sym_STAR_EQ] = ACTIONS(2694), + [anon_sym_SLASH_EQ] = ACTIONS(2694), + [anon_sym_PERCENT_EQ] = ACTIONS(2694), + [anon_sym_PLUS_EQ] = ACTIONS(2694), + [anon_sym_DASH_EQ] = ACTIONS(2694), + [anon_sym_LT_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_GT_EQ] = ACTIONS(2694), + [anon_sym_AMP_EQ] = ACTIONS(2694), + [anon_sym_CARET_EQ] = ACTIONS(2694), + [anon_sym_PIPE_EQ] = ACTIONS(2694), + [anon_sym_AMP] = ACTIONS(2696), + [anon_sym_PIPE_PIPE] = ACTIONS(2694), + [anon_sym_AMP_AMP] = ACTIONS(2694), + [anon_sym_PIPE] = ACTIONS(2696), + [anon_sym_CARET] = ACTIONS(2696), + [anon_sym_EQ_EQ] = ACTIONS(2694), + [anon_sym_BANG_EQ] = ACTIONS(2694), + [anon_sym_LT] = ACTIONS(2696), + [anon_sym_GT] = ACTIONS(2696), + [anon_sym_LT_EQ] = ACTIONS(2694), + [anon_sym_GT_EQ] = ACTIONS(2694), + [anon_sym_LT_LT] = ACTIONS(2696), + [anon_sym_GT_GT] = ACTIONS(2696), + [anon_sym_PLUS] = ACTIONS(2696), + [anon_sym_DASH] = ACTIONS(2696), + [anon_sym_SLASH] = ACTIONS(2696), + [anon_sym_PERCENT] = ACTIONS(2696), + [anon_sym_DASH_DASH] = ACTIONS(2694), + [anon_sym_PLUS_PLUS] = ACTIONS(2694), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1448] = { + [1450] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2698), + [anon_sym_STAR] = ACTIONS(2700), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2698), - [anon_sym_COLON] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_STAR_EQ] = ACTIONS(2696), - [anon_sym_SLASH_EQ] = ACTIONS(2696), - [anon_sym_PERCENT_EQ] = ACTIONS(2696), - [anon_sym_PLUS_EQ] = ACTIONS(2696), - [anon_sym_DASH_EQ] = ACTIONS(2696), - [anon_sym_LT_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_GT_EQ] = ACTIONS(2696), - [anon_sym_AMP_EQ] = ACTIONS(2696), - [anon_sym_CARET_EQ] = ACTIONS(2696), - [anon_sym_PIPE_EQ] = ACTIONS(2696), - [anon_sym_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2696), - [anon_sym_AMP_AMP] = ACTIONS(2696), - [anon_sym_PIPE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_EQ_EQ] = ACTIONS(2696), - [anon_sym_BANG_EQ] = ACTIONS(2696), - [anon_sym_LT] = ACTIONS(2698), - [anon_sym_GT] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2696), - [anon_sym_GT_EQ] = ACTIONS(2696), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2698), - [anon_sym_PLUS] = ACTIONS(2698), - [anon_sym_DASH] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2698), - [anon_sym_PERCENT] = ACTIONS(2698), + [anon_sym_EQ] = ACTIONS(2700), + [anon_sym_COLON] = ACTIONS(2698), + [anon_sym_QMARK] = ACTIONS(2698), + [anon_sym_STAR_EQ] = ACTIONS(2698), + [anon_sym_SLASH_EQ] = ACTIONS(2698), + [anon_sym_PERCENT_EQ] = ACTIONS(2698), + [anon_sym_PLUS_EQ] = ACTIONS(2698), + [anon_sym_DASH_EQ] = ACTIONS(2698), + [anon_sym_LT_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_GT_EQ] = ACTIONS(2698), + [anon_sym_AMP_EQ] = ACTIONS(2698), + [anon_sym_CARET_EQ] = ACTIONS(2698), + [anon_sym_PIPE_EQ] = ACTIONS(2698), + [anon_sym_AMP] = ACTIONS(2700), + [anon_sym_PIPE_PIPE] = ACTIONS(2698), + [anon_sym_AMP_AMP] = ACTIONS(2698), + [anon_sym_PIPE] = ACTIONS(2700), + [anon_sym_CARET] = ACTIONS(2700), + [anon_sym_EQ_EQ] = ACTIONS(2698), + [anon_sym_BANG_EQ] = ACTIONS(2698), + [anon_sym_LT] = ACTIONS(2700), + [anon_sym_GT] = ACTIONS(2700), + [anon_sym_LT_EQ] = ACTIONS(2698), + [anon_sym_GT_EQ] = ACTIONS(2698), + [anon_sym_LT_LT] = ACTIONS(2700), + [anon_sym_GT_GT] = ACTIONS(2700), + [anon_sym_PLUS] = ACTIONS(2700), + [anon_sym_DASH] = ACTIONS(2700), + [anon_sym_SLASH] = ACTIONS(2700), + [anon_sym_PERCENT] = ACTIONS(2700), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1449] = { + [1451] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -60216,7 +60331,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(2015), + [sym_type_descriptor] = STATE(2020), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -60280,143 +60395,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1450] = { + [1452] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_COLON] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_COLON] = ACTIONS(2702), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1451] = { - [aux_sym_concatenated_string_repeat1] = STATE(2016), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_COLON] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(4561), + [1453] = { + [aux_sym_concatenated_string_repeat1] = STATE(2021), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_COLON] = ACTIONS(2706), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(4573), [sym_comment] = ACTIONS(49), }, - [1452] = { - [sym__expression] = STATE(2018), - [sym_conditional_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2018), - [sym_pointer_expression] = STATE(2018), - [sym_logical_expression] = STATE(2018), - [sym_bitwise_expression] = STATE(2018), - [sym_equality_expression] = STATE(2018), - [sym_relational_expression] = STATE(2018), - [sym_shift_expression] = STATE(2018), - [sym_math_expression] = STATE(2018), - [sym_cast_expression] = STATE(2018), - [sym_sizeof_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_call_expression] = STATE(2018), - [sym_field_expression] = STATE(2018), - [sym_compound_literal_expression] = STATE(2018), - [sym_parenthesized_expression] = STATE(2018), - [sym_concatenated_string] = STATE(2018), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2018), - [sym_new_expression] = STATE(2018), - [sym_delete_expression] = STATE(2018), - [sym_lambda_expression] = STATE(2018), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4563), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(4565), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4563), - [sym_char_literal] = ACTIONS(4563), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4567), - [sym_false] = ACTIONS(4567), - [sym_null] = ACTIONS(4567), + [1454] = { + [sym__expression] = STATE(2023), + [sym_conditional_expression] = STATE(2023), + [sym_assignment_expression] = STATE(2023), + [sym_pointer_expression] = STATE(2023), + [sym_logical_expression] = STATE(2023), + [sym_bitwise_expression] = STATE(2023), + [sym_equality_expression] = STATE(2023), + [sym_relational_expression] = STATE(2023), + [sym_shift_expression] = STATE(2023), + [sym_math_expression] = STATE(2023), + [sym_cast_expression] = STATE(2023), + [sym_sizeof_expression] = STATE(2023), + [sym_subscript_expression] = STATE(2023), + [sym_call_expression] = STATE(2023), + [sym_field_expression] = STATE(2023), + [sym_compound_literal_expression] = STATE(2023), + [sym_parenthesized_expression] = STATE(2023), + [sym_concatenated_string] = STATE(2023), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2023), + [sym_new_expression] = STATE(2023), + [sym_delete_expression] = STATE(2023), + [sym_lambda_expression] = STATE(2023), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4575), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(4577), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4575), + [sym_char_literal] = ACTIONS(4575), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4579), + [sym_false] = ACTIONS(4579), + [sym_null] = ACTIONS(4579), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4567), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4579), }, - [1453] = { + [1455] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -60449,7 +60564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4569), + [anon_sym_RBRACK] = ACTIONS(4581), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -60472,158 +60587,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1454] = { + [1456] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_COLON] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_COLON] = ACTIONS(2740), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1455] = { - [sym__expression] = STATE(2020), - [sym_conditional_expression] = STATE(2020), - [sym_assignment_expression] = STATE(2020), - [sym_pointer_expression] = STATE(2020), - [sym_logical_expression] = STATE(2020), - [sym_bitwise_expression] = STATE(2020), - [sym_equality_expression] = STATE(2020), - [sym_relational_expression] = STATE(2020), - [sym_shift_expression] = STATE(2020), - [sym_math_expression] = STATE(2020), - [sym_cast_expression] = STATE(2020), - [sym_sizeof_expression] = STATE(2020), - [sym_subscript_expression] = STATE(2020), - [sym_call_expression] = STATE(2020), - [sym_field_expression] = STATE(2020), - [sym_compound_literal_expression] = STATE(2020), - [sym_parenthesized_expression] = STATE(2020), - [sym_concatenated_string] = STATE(2020), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2020), - [sym_new_expression] = STATE(2020), - [sym_delete_expression] = STATE(2020), - [sym_lambda_expression] = STATE(2020), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4571), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4571), - [sym_char_literal] = ACTIONS(4571), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4573), - [sym_false] = ACTIONS(4573), - [sym_null] = ACTIONS(4573), + [1457] = { + [sym__expression] = STATE(2025), + [sym_conditional_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2025), + [sym_pointer_expression] = STATE(2025), + [sym_logical_expression] = STATE(2025), + [sym_bitwise_expression] = STATE(2025), + [sym_equality_expression] = STATE(2025), + [sym_relational_expression] = STATE(2025), + [sym_shift_expression] = STATE(2025), + [sym_math_expression] = STATE(2025), + [sym_cast_expression] = STATE(2025), + [sym_sizeof_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_call_expression] = STATE(2025), + [sym_field_expression] = STATE(2025), + [sym_compound_literal_expression] = STATE(2025), + [sym_parenthesized_expression] = STATE(2025), + [sym_concatenated_string] = STATE(2025), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2025), + [sym_new_expression] = STATE(2025), + [sym_delete_expression] = STATE(2025), + [sym_lambda_expression] = STATE(2025), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4583), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4583), + [sym_char_literal] = ACTIONS(4583), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4585), + [sym_false] = ACTIONS(4585), + [sym_null] = ACTIONS(4585), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4573), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4585), }, - [1456] = { - [sym__expression] = STATE(2021), - [sym_conditional_expression] = STATE(2021), - [sym_assignment_expression] = STATE(2021), - [sym_pointer_expression] = STATE(2021), - [sym_logical_expression] = STATE(2021), - [sym_bitwise_expression] = STATE(2021), - [sym_equality_expression] = STATE(2021), - [sym_relational_expression] = STATE(2021), - [sym_shift_expression] = STATE(2021), - [sym_math_expression] = STATE(2021), - [sym_cast_expression] = STATE(2021), - [sym_sizeof_expression] = STATE(2021), - [sym_subscript_expression] = STATE(2021), - [sym_call_expression] = STATE(2021), - [sym_field_expression] = STATE(2021), - [sym_compound_literal_expression] = STATE(2021), - [sym_parenthesized_expression] = STATE(2021), - [sym_concatenated_string] = STATE(2021), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2021), - [sym_new_expression] = STATE(2021), - [sym_delete_expression] = STATE(2021), - [sym_lambda_expression] = STATE(2021), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [1458] = { + [sym__expression] = STATE(2026), + [sym_conditional_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2026), + [sym_pointer_expression] = STATE(2026), + [sym_logical_expression] = STATE(2026), + [sym_bitwise_expression] = STATE(2026), + [sym_equality_expression] = STATE(2026), + [sym_relational_expression] = STATE(2026), + [sym_shift_expression] = STATE(2026), + [sym_math_expression] = STATE(2026), + [sym_cast_expression] = STATE(2026), + [sym_sizeof_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_call_expression] = STATE(2026), + [sym_field_expression] = STATE(2026), + [sym_compound_literal_expression] = STATE(2026), + [sym_parenthesized_expression] = STATE(2026), + [sym_concatenated_string] = STATE(2026), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2026), + [sym_new_expression] = STATE(2026), + [sym_delete_expression] = STATE(2026), + [sym_lambda_expression] = STATE(2026), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4575), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4575), - [sym_char_literal] = ACTIONS(4575), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4577), - [sym_false] = ACTIONS(4577), - [sym_null] = ACTIONS(4577), + [sym_raw_string_literal] = ACTIONS(4587), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4587), + [sym_char_literal] = ACTIONS(4587), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4589), + [sym_false] = ACTIONS(4589), + [sym_null] = ACTIONS(4589), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4577), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4589), }, - [1457] = { - [sym_declaration] = STATE(2022), - [sym_type_definition] = STATE(2022), - [sym__declaration_specifiers] = STATE(1472), - [sym_compound_statement] = STATE(2022), + [1459] = { + [sym_declaration] = STATE(2027), + [sym_type_definition] = STATE(2027), + [sym__declaration_specifiers] = STATE(1474), + [sym_compound_statement] = STATE(2027), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -60631,18 +60746,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2022), - [sym_expression_statement] = STATE(2022), - [sym_if_statement] = STATE(2022), - [sym_switch_statement] = STATE(2022), - [sym_case_statement] = STATE(2022), - [sym_while_statement] = STATE(2022), - [sym_do_statement] = STATE(2022), - [sym_for_statement] = STATE(2022), - [sym_return_statement] = STATE(2022), - [sym_break_statement] = STATE(2022), - [sym_continue_statement] = STATE(2022), - [sym_goto_statement] = STATE(2022), + [sym_labeled_statement] = STATE(2027), + [sym_expression_statement] = STATE(2027), + [sym_if_statement] = STATE(2027), + [sym_switch_statement] = STATE(2027), + [sym_case_statement] = STATE(2027), + [sym_while_statement] = STATE(2027), + [sym_do_statement] = STATE(2027), + [sym_for_statement] = STATE(2027), + [sym_return_statement] = STATE(2027), + [sym_break_statement] = STATE(2027), + [sym_continue_statement] = STATE(2027), + [sym_goto_statement] = STATE(2027), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -60665,16 +60780,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), + [sym_template_type] = STATE(1475), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2022), + [sym_for_range_loop] = STATE(2027), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), [sym_raw_string_literal] = ACTIONS(620), @@ -60727,282 +60842,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3034), + [sym_identifier] = ACTIONS(3038), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1458] = { - [sym__expression] = STATE(2023), - [sym_conditional_expression] = STATE(2023), - [sym_assignment_expression] = STATE(2023), - [sym_pointer_expression] = STATE(2023), - [sym_logical_expression] = STATE(2023), - [sym_bitwise_expression] = STATE(2023), - [sym_equality_expression] = STATE(2023), - [sym_relational_expression] = STATE(2023), - [sym_shift_expression] = STATE(2023), - [sym_math_expression] = STATE(2023), - [sym_cast_expression] = STATE(2023), - [sym_sizeof_expression] = STATE(2023), - [sym_subscript_expression] = STATE(2023), - [sym_call_expression] = STATE(2023), - [sym_field_expression] = STATE(2023), - [sym_compound_literal_expression] = STATE(2023), - [sym_parenthesized_expression] = STATE(2023), - [sym_concatenated_string] = STATE(2023), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2023), - [sym_new_expression] = STATE(2023), - [sym_delete_expression] = STATE(2023), - [sym_lambda_expression] = STATE(2023), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4579), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4579), - [sym_char_literal] = ACTIONS(4579), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4581), - [sym_false] = ACTIONS(4581), - [sym_null] = ACTIONS(4581), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4581), - }, - [1459] = { - [sym__expression] = STATE(2024), - [sym_conditional_expression] = STATE(2024), - [sym_assignment_expression] = STATE(2024), - [sym_pointer_expression] = STATE(2024), - [sym_logical_expression] = STATE(2024), - [sym_bitwise_expression] = STATE(2024), - [sym_equality_expression] = STATE(2024), - [sym_relational_expression] = STATE(2024), - [sym_shift_expression] = STATE(2024), - [sym_math_expression] = STATE(2024), - [sym_cast_expression] = STATE(2024), - [sym_sizeof_expression] = STATE(2024), - [sym_subscript_expression] = STATE(2024), - [sym_call_expression] = STATE(2024), - [sym_field_expression] = STATE(2024), - [sym_compound_literal_expression] = STATE(2024), - [sym_parenthesized_expression] = STATE(2024), - [sym_concatenated_string] = STATE(2024), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2024), - [sym_new_expression] = STATE(2024), - [sym_delete_expression] = STATE(2024), - [sym_lambda_expression] = STATE(2024), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4583), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4583), - [sym_char_literal] = ACTIONS(4583), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4585), - [sym_false] = ACTIONS(4585), - [sym_null] = ACTIONS(4585), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4585), - }, [1460] = { - [sym__expression] = STATE(2025), - [sym_conditional_expression] = STATE(2025), - [sym_assignment_expression] = STATE(2025), - [sym_pointer_expression] = STATE(2025), - [sym_logical_expression] = STATE(2025), - [sym_bitwise_expression] = STATE(2025), - [sym_equality_expression] = STATE(2025), - [sym_relational_expression] = STATE(2025), - [sym_shift_expression] = STATE(2025), - [sym_math_expression] = STATE(2025), - [sym_cast_expression] = STATE(2025), - [sym_sizeof_expression] = STATE(2025), - [sym_subscript_expression] = STATE(2025), - [sym_call_expression] = STATE(2025), - [sym_field_expression] = STATE(2025), - [sym_compound_literal_expression] = STATE(2025), - [sym_parenthesized_expression] = STATE(2025), - [sym_concatenated_string] = STATE(2025), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2025), - [sym_new_expression] = STATE(2025), - [sym_delete_expression] = STATE(2025), - [sym_lambda_expression] = STATE(2025), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4587), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4587), - [sym_char_literal] = ACTIONS(4587), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4589), - [sym_false] = ACTIONS(4589), - [sym_null] = ACTIONS(4589), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4589), - }, - [1461] = { - [sym__expression] = STATE(2026), - [sym_conditional_expression] = STATE(2026), - [sym_assignment_expression] = STATE(2026), - [sym_pointer_expression] = STATE(2026), - [sym_logical_expression] = STATE(2026), - [sym_bitwise_expression] = STATE(2026), - [sym_equality_expression] = STATE(2026), - [sym_relational_expression] = STATE(2026), - [sym_shift_expression] = STATE(2026), - [sym_math_expression] = STATE(2026), - [sym_cast_expression] = STATE(2026), - [sym_sizeof_expression] = STATE(2026), - [sym_subscript_expression] = STATE(2026), - [sym_call_expression] = STATE(2026), - [sym_field_expression] = STATE(2026), - [sym_compound_literal_expression] = STATE(2026), - [sym_parenthesized_expression] = STATE(2026), - [sym_concatenated_string] = STATE(2026), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2026), - [sym_new_expression] = STATE(2026), - [sym_delete_expression] = STATE(2026), - [sym_lambda_expression] = STATE(2026), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4591), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4591), - [sym_char_literal] = ACTIONS(4591), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [sym_null] = ACTIONS(4593), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4593), - }, - [1462] = { - [sym__expression] = STATE(2027), - [sym_conditional_expression] = STATE(2027), - [sym_assignment_expression] = STATE(2027), - [sym_pointer_expression] = STATE(2027), - [sym_logical_expression] = STATE(2027), - [sym_bitwise_expression] = STATE(2027), - [sym_equality_expression] = STATE(2027), - [sym_relational_expression] = STATE(2027), - [sym_shift_expression] = STATE(2027), - [sym_math_expression] = STATE(2027), - [sym_cast_expression] = STATE(2027), - [sym_sizeof_expression] = STATE(2027), - [sym_subscript_expression] = STATE(2027), - [sym_call_expression] = STATE(2027), - [sym_field_expression] = STATE(2027), - [sym_compound_literal_expression] = STATE(2027), - [sym_parenthesized_expression] = STATE(2027), - [sym_concatenated_string] = STATE(2027), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2027), - [sym_new_expression] = STATE(2027), - [sym_delete_expression] = STATE(2027), - [sym_lambda_expression] = STATE(2027), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4595), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4595), - [sym_char_literal] = ACTIONS(4595), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [sym_null] = ACTIONS(4597), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4597), - }, - [1463] = { [sym__expression] = STATE(2028), [sym_conditional_expression] = STATE(2028), [sym_assignment_expression] = STATE(2028), @@ -61027,35 +60877,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2028), [sym_lambda_expression] = STATE(2028), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4599), - [sym_char_literal] = ACTIONS(4599), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4601), - [sym_false] = ACTIONS(4601), - [sym_null] = ACTIONS(4601), + [sym_raw_string_literal] = ACTIONS(4591), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4591), + [sym_char_literal] = ACTIONS(4591), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4593), + [sym_false] = ACTIONS(4593), + [sym_null] = ACTIONS(4593), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4601), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4593), }, - [1464] = { + [1461] = { [sym__expression] = STATE(2029), [sym_conditional_expression] = STATE(2029), [sym_assignment_expression] = STATE(2029), @@ -61080,35 +60930,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2029), [sym_lambda_expression] = STATE(2029), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4603), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4603), - [sym_char_literal] = ACTIONS(4603), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4605), - [sym_false] = ACTIONS(4605), - [sym_null] = ACTIONS(4605), + [sym_raw_string_literal] = ACTIONS(4595), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4595), + [sym_char_literal] = ACTIONS(4595), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4597), + [sym_false] = ACTIONS(4597), + [sym_null] = ACTIONS(4597), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4605), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4597), }, - [1465] = { + [1462] = { [sym__expression] = STATE(2030), [sym_conditional_expression] = STATE(2030), [sym_assignment_expression] = STATE(2030), @@ -61133,35 +60983,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2030), [sym_lambda_expression] = STATE(2030), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4607), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4607), - [sym_char_literal] = ACTIONS(4607), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4609), - [sym_false] = ACTIONS(4609), - [sym_null] = ACTIONS(4609), + [sym_raw_string_literal] = ACTIONS(4599), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4599), + [sym_char_literal] = ACTIONS(4599), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4601), + [sym_false] = ACTIONS(4601), + [sym_null] = ACTIONS(4601), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4609), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4601), }, - [1466] = { + [1463] = { [sym__expression] = STATE(2031), [sym_conditional_expression] = STATE(2031), [sym_assignment_expression] = STATE(2031), @@ -61186,35 +61036,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2031), [sym_lambda_expression] = STATE(2031), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4611), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(4611), - [sym_char_literal] = ACTIONS(4611), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(4613), - [sym_false] = ACTIONS(4613), - [sym_null] = ACTIONS(4613), + [sym_raw_string_literal] = ACTIONS(4603), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4603), + [sym_char_literal] = ACTIONS(4603), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4605), + [sym_false] = ACTIONS(4605), + [sym_null] = ACTIONS(4605), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(4613), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4605), }, - [1467] = { + [1464] = { [sym__expression] = STATE(2032), [sym_conditional_expression] = STATE(2032), [sym_assignment_expression] = STATE(2032), @@ -61239,49 +61089,314 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2032), [sym_lambda_expression] = STATE(2032), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4607), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4607), + [sym_char_literal] = ACTIONS(4607), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4609), + [sym_false] = ACTIONS(4609), + [sym_null] = ACTIONS(4609), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4609), + }, + [1465] = { + [sym__expression] = STATE(2033), + [sym_conditional_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2033), + [sym_pointer_expression] = STATE(2033), + [sym_logical_expression] = STATE(2033), + [sym_bitwise_expression] = STATE(2033), + [sym_equality_expression] = STATE(2033), + [sym_relational_expression] = STATE(2033), + [sym_shift_expression] = STATE(2033), + [sym_math_expression] = STATE(2033), + [sym_cast_expression] = STATE(2033), + [sym_sizeof_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_call_expression] = STATE(2033), + [sym_field_expression] = STATE(2033), + [sym_compound_literal_expression] = STATE(2033), + [sym_parenthesized_expression] = STATE(2033), + [sym_concatenated_string] = STATE(2033), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2033), + [sym_new_expression] = STATE(2033), + [sym_delete_expression] = STATE(2033), + [sym_lambda_expression] = STATE(2033), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4611), + [sym_char_literal] = ACTIONS(4611), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4613), + [sym_false] = ACTIONS(4613), + [sym_null] = ACTIONS(4613), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4613), + }, + [1466] = { + [sym__expression] = STATE(2034), + [sym_conditional_expression] = STATE(2034), + [sym_assignment_expression] = STATE(2034), + [sym_pointer_expression] = STATE(2034), + [sym_logical_expression] = STATE(2034), + [sym_bitwise_expression] = STATE(2034), + [sym_equality_expression] = STATE(2034), + [sym_relational_expression] = STATE(2034), + [sym_shift_expression] = STATE(2034), + [sym_math_expression] = STATE(2034), + [sym_cast_expression] = STATE(2034), + [sym_sizeof_expression] = STATE(2034), + [sym_subscript_expression] = STATE(2034), + [sym_call_expression] = STATE(2034), + [sym_field_expression] = STATE(2034), + [sym_compound_literal_expression] = STATE(2034), + [sym_parenthesized_expression] = STATE(2034), + [sym_concatenated_string] = STATE(2034), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2034), + [sym_new_expression] = STATE(2034), + [sym_delete_expression] = STATE(2034), + [sym_lambda_expression] = STATE(2034), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(4615), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), [sym_number_literal] = ACTIONS(4615), [sym_char_literal] = ACTIONS(4615), - [sym_string_literal] = ACTIONS(1646), + [sym_string_literal] = ACTIONS(1648), [sym_true] = ACTIONS(4617), [sym_false] = ACTIONS(4617), [sym_null] = ACTIONS(4617), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), [sym_nullptr] = ACTIONS(4617), }, + [1467] = { + [sym__expression] = STATE(2035), + [sym_conditional_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2035), + [sym_pointer_expression] = STATE(2035), + [sym_logical_expression] = STATE(2035), + [sym_bitwise_expression] = STATE(2035), + [sym_equality_expression] = STATE(2035), + [sym_relational_expression] = STATE(2035), + [sym_shift_expression] = STATE(2035), + [sym_math_expression] = STATE(2035), + [sym_cast_expression] = STATE(2035), + [sym_sizeof_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_call_expression] = STATE(2035), + [sym_field_expression] = STATE(2035), + [sym_compound_literal_expression] = STATE(2035), + [sym_parenthesized_expression] = STATE(2035), + [sym_concatenated_string] = STATE(2035), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2035), + [sym_new_expression] = STATE(2035), + [sym_delete_expression] = STATE(2035), + [sym_lambda_expression] = STATE(2035), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4619), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4619), + [sym_char_literal] = ACTIONS(4619), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4621), + [sym_false] = ACTIONS(4621), + [sym_null] = ACTIONS(4621), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4621), + }, [1468] = { + [sym__expression] = STATE(2036), + [sym_conditional_expression] = STATE(2036), + [sym_assignment_expression] = STATE(2036), + [sym_pointer_expression] = STATE(2036), + [sym_logical_expression] = STATE(2036), + [sym_bitwise_expression] = STATE(2036), + [sym_equality_expression] = STATE(2036), + [sym_relational_expression] = STATE(2036), + [sym_shift_expression] = STATE(2036), + [sym_math_expression] = STATE(2036), + [sym_cast_expression] = STATE(2036), + [sym_sizeof_expression] = STATE(2036), + [sym_subscript_expression] = STATE(2036), + [sym_call_expression] = STATE(2036), + [sym_field_expression] = STATE(2036), + [sym_compound_literal_expression] = STATE(2036), + [sym_parenthesized_expression] = STATE(2036), + [sym_concatenated_string] = STATE(2036), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2036), + [sym_new_expression] = STATE(2036), + [sym_delete_expression] = STATE(2036), + [sym_lambda_expression] = STATE(2036), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4623), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4623), + [sym_char_literal] = ACTIONS(4623), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4625), + [sym_false] = ACTIONS(4625), + [sym_null] = ACTIONS(4625), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4625), + }, + [1469] = { + [sym__expression] = STATE(2037), + [sym_conditional_expression] = STATE(2037), + [sym_assignment_expression] = STATE(2037), + [sym_pointer_expression] = STATE(2037), + [sym_logical_expression] = STATE(2037), + [sym_bitwise_expression] = STATE(2037), + [sym_equality_expression] = STATE(2037), + [sym_relational_expression] = STATE(2037), + [sym_shift_expression] = STATE(2037), + [sym_math_expression] = STATE(2037), + [sym_cast_expression] = STATE(2037), + [sym_sizeof_expression] = STATE(2037), + [sym_subscript_expression] = STATE(2037), + [sym_call_expression] = STATE(2037), + [sym_field_expression] = STATE(2037), + [sym_compound_literal_expression] = STATE(2037), + [sym_parenthesized_expression] = STATE(2037), + [sym_concatenated_string] = STATE(2037), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2037), + [sym_new_expression] = STATE(2037), + [sym_delete_expression] = STATE(2037), + [sym_lambda_expression] = STATE(2037), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4627), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(4627), + [sym_char_literal] = ACTIONS(4627), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(4629), + [sym_false] = ACTIONS(4629), + [sym_null] = ACTIONS(4629), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(4629), + }, + [1470] = { [sym_template_type] = STATE(553), - [sym_template_method] = STATE(1341), - [sym_destructor_name] = STATE(1341), + [sym_template_method] = STATE(1342), + [sym_destructor_name] = STATE(1342), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2798), + [sym_identifier] = ACTIONS(2800), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), }, - [1469] = { + [1471] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -61300,7 +61415,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(1712), + [anon_sym_COLON] = ACTIONS(1714), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -61336,95 +61451,95 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [1470] = { + [1472] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(4621), + [sym_identifier] = ACTIONS(4633), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(1718), + [anon_sym_delete] = ACTIONS(1720), [sym_operator_name] = ACTIONS(190), }, - [1471] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [1473] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [1472] = { - [sym__declarator] = STATE(892), - [sym_pointer_declarator] = STATE(892), - [sym_function_declarator] = STATE(892), - [sym_array_declarator] = STATE(892), - [sym_init_declarator] = STATE(893), - [sym_reference_declarator] = STATE(892), + [1474] = { + [sym__declarator] = STATE(893), + [sym_pointer_declarator] = STATE(893), + [sym_function_declarator] = STATE(893), + [sym_array_declarator] = STATE(893), + [sym_init_declarator] = STATE(894), + [sym_reference_declarator] = STATE(893), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(892), - [sym_destructor_name] = STATE(892), + [sym_template_function] = STATE(893), + [sym_destructor_name] = STATE(893), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -61436,9 +61551,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1736), + [sym_operator_name] = ACTIONS(1738), }, - [1473] = { + [1475] = { [sym_initializer_list] = STATE(804), [anon_sym_LPAREN] = ACTIONS(228), [anon_sym_extern] = ACTIONS(230), @@ -61459,55 +61574,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(228), [sym_identifier] = ACTIONS(230), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4639), [sym_operator_name] = ACTIONS(228), }, - [1474] = { + [1476] = { [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4627), + [anon_sym_COLON_COLON] = ACTIONS(4639), }, - [1475] = { + [1477] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4629), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4641), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1476] = { + [1478] = { [anon_sym_LPAREN] = ACTIONS(1622), [anon_sym_COMMA] = ACTIONS(1622), [anon_sym_RPAREN] = ACTIONS(1622), @@ -61554,17 +61669,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1622), [sym_comment] = ACTIONS(49), }, - [1477] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [1479] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -61572,18 +61687,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -61603,14 +61718,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -61618,7 +61733,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -61633,7 +61748,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(4631), + [anon_sym_RBRACE] = ACTIONS(4643), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -61688,217 +61803,221 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1478] = { - [sym__expression] = STATE(2039), - [sym_conditional_expression] = STATE(2039), - [sym_assignment_expression] = STATE(2039), - [sym_pointer_expression] = STATE(2039), - [sym_logical_expression] = STATE(2039), - [sym_bitwise_expression] = STATE(2039), - [sym_equality_expression] = STATE(2039), - [sym_relational_expression] = STATE(2039), - [sym_shift_expression] = STATE(2039), - [sym_math_expression] = STATE(2039), - [sym_cast_expression] = STATE(2039), - [sym_sizeof_expression] = STATE(2039), - [sym_subscript_expression] = STATE(2039), - [sym_call_expression] = STATE(2039), - [sym_field_expression] = STATE(2039), - [sym_compound_literal_expression] = STATE(2039), - [sym_parenthesized_expression] = STATE(2039), - [sym_concatenated_string] = STATE(2039), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2039), - [sym_new_expression] = STATE(2039), - [sym_delete_expression] = STATE(2039), - [sym_lambda_expression] = STATE(2039), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4633), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4633), - [sym_char_literal] = ACTIONS(4633), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4635), - [sym_false] = ACTIONS(4635), - [sym_null] = ACTIONS(4635), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4635), - }, - [1479] = { - [sym__expression] = STATE(2040), - [sym_conditional_expression] = STATE(2040), - [sym_assignment_expression] = STATE(2040), - [sym_pointer_expression] = STATE(2040), - [sym_logical_expression] = STATE(2040), - [sym_bitwise_expression] = STATE(2040), - [sym_equality_expression] = STATE(2040), - [sym_relational_expression] = STATE(2040), - [sym_shift_expression] = STATE(2040), - [sym_math_expression] = STATE(2040), - [sym_cast_expression] = STATE(2040), - [sym_sizeof_expression] = STATE(2040), - [sym_subscript_expression] = STATE(2040), - [sym_call_expression] = STATE(2040), - [sym_field_expression] = STATE(2040), - [sym_compound_literal_expression] = STATE(2040), - [sym_parenthesized_expression] = STATE(2040), - [sym_concatenated_string] = STATE(2040), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2040), - [sym_new_expression] = STATE(2040), - [sym_delete_expression] = STATE(2040), - [sym_lambda_expression] = STATE(2040), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4637), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4637), - [sym_char_literal] = ACTIONS(4637), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4639), - [sym_false] = ACTIONS(4639), - [sym_null] = ACTIONS(4639), + [1480] = { + [sym__expression] = STATE(2044), + [sym_conditional_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2044), + [sym_pointer_expression] = STATE(2044), + [sym_logical_expression] = STATE(2044), + [sym_bitwise_expression] = STATE(2044), + [sym_equality_expression] = STATE(2044), + [sym_relational_expression] = STATE(2044), + [sym_shift_expression] = STATE(2044), + [sym_math_expression] = STATE(2044), + [sym_cast_expression] = STATE(2044), + [sym_sizeof_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_call_expression] = STATE(2044), + [sym_field_expression] = STATE(2044), + [sym_compound_literal_expression] = STATE(2044), + [sym_parenthesized_expression] = STATE(2044), + [sym_concatenated_string] = STATE(2044), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2044), + [sym_new_expression] = STATE(2044), + [sym_delete_expression] = STATE(2044), + [sym_lambda_expression] = STATE(2044), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4645), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4645), + [sym_char_literal] = ACTIONS(4645), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4647), + [sym_false] = ACTIONS(4647), + [sym_null] = ACTIONS(4647), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4639), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4647), }, - [1480] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(4641), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [1481] = { + [anon_sym_LPAREN] = ACTIONS(4649), [sym_comment] = ACTIONS(49), }, - [1481] = { - [sym_declaration] = STATE(2044), - [sym_type_definition] = STATE(2044), - [sym__declaration_specifiers] = STATE(2045), - [sym_compound_statement] = STATE(2044), - [sym_storage_class_specifier] = STATE(109), - [sym_type_qualifier] = STATE(109), + [1482] = { + [sym__expression] = STATE(2046), + [sym_conditional_expression] = STATE(2046), + [sym_assignment_expression] = STATE(2046), + [sym_pointer_expression] = STATE(2046), + [sym_logical_expression] = STATE(2046), + [sym_bitwise_expression] = STATE(2046), + [sym_equality_expression] = STATE(2046), + [sym_relational_expression] = STATE(2046), + [sym_shift_expression] = STATE(2046), + [sym_math_expression] = STATE(2046), + [sym_cast_expression] = STATE(2046), + [sym_sizeof_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_call_expression] = STATE(2046), + [sym_field_expression] = STATE(2046), + [sym_compound_literal_expression] = STATE(2046), + [sym_parenthesized_expression] = STATE(2046), + [sym_concatenated_string] = STATE(2046), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2046), + [sym_new_expression] = STATE(2046), + [sym_delete_expression] = STATE(2046), + [sym_lambda_expression] = STATE(2046), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4651), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4651), + [sym_char_literal] = ACTIONS(4651), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4653), + [sym_false] = ACTIONS(4653), + [sym_null] = ACTIONS(4653), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4653), + }, + [1483] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(4655), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), + [sym_comment] = ACTIONS(49), + }, + [1484] = { + [sym_declaration] = STATE(2050), + [sym_type_definition] = STATE(2050), + [sym__declaration_specifiers] = STATE(2051), + [sym_compound_statement] = STATE(2050), + [sym_storage_class_specifier] = STATE(109), + [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), [sym_sized_type_specifier] = STATE(105), [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2044), - [sym_expression_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_switch_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_do_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_return_statement] = STATE(2044), - [sym_break_statement] = STATE(2044), - [sym_continue_statement] = STATE(2044), - [sym_goto_statement] = STATE(2044), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), + [sym_labeled_statement] = STATE(2050), + [sym_expression_statement] = STATE(2050), + [sym_if_statement] = STATE(2050), + [sym_switch_statement] = STATE(2050), + [sym_case_statement] = STATE(2050), + [sym_while_statement] = STATE(2050), + [sym_do_statement] = STATE(2050), + [sym_for_statement] = STATE(2050), + [sym_return_statement] = STATE(2050), + [sym_break_statement] = STATE(2050), + [sym_continue_statement] = STATE(2050), + [sym_goto_statement] = STATE(2050), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2044), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2050), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_typedef] = ACTIONS(4657), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -61918,17 +62037,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -61937,82 +62056,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(4645), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(4659), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [1482] = { - [sym__expression] = STATE(2046), - [sym_conditional_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2046), - [sym_pointer_expression] = STATE(2046), - [sym_logical_expression] = STATE(2046), - [sym_bitwise_expression] = STATE(2046), - [sym_equality_expression] = STATE(2046), - [sym_relational_expression] = STATE(2046), - [sym_shift_expression] = STATE(2046), - [sym_math_expression] = STATE(2046), - [sym_cast_expression] = STATE(2046), - [sym_sizeof_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_call_expression] = STATE(2046), - [sym_field_expression] = STATE(2046), - [sym_compound_literal_expression] = STATE(2046), - [sym_parenthesized_expression] = STATE(2046), - [sym_concatenated_string] = STATE(2046), + [1485] = { + [sym__expression] = STATE(2052), + [sym_conditional_expression] = STATE(2052), + [sym_assignment_expression] = STATE(2052), + [sym_pointer_expression] = STATE(2052), + [sym_logical_expression] = STATE(2052), + [sym_bitwise_expression] = STATE(2052), + [sym_equality_expression] = STATE(2052), + [sym_relational_expression] = STATE(2052), + [sym_shift_expression] = STATE(2052), + [sym_math_expression] = STATE(2052), + [sym_cast_expression] = STATE(2052), + [sym_sizeof_expression] = STATE(2052), + [sym_subscript_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_field_expression] = STATE(2052), + [sym_compound_literal_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_concatenated_string] = STATE(2052), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2046), - [sym_new_expression] = STATE(2046), - [sym_delete_expression] = STATE(2046), - [sym_lambda_expression] = STATE(2046), + [sym_template_function] = STATE(2052), + [sym_new_expression] = STATE(2052), + [sym_delete_expression] = STATE(2052), + [sym_lambda_expression] = STATE(2052), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4647), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4647), - [sym_char_literal] = ACTIONS(4647), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4649), - [sym_false] = ACTIONS(4649), - [sym_null] = ACTIONS(4649), + [sym_raw_string_literal] = ACTIONS(4661), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4661), + [sym_char_literal] = ACTIONS(4661), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4663), + [sym_false] = ACTIONS(4663), + [sym_null] = ACTIONS(4663), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4649), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4663), }, - [1483] = { - [anon_sym_while] = ACTIONS(4651), + [1486] = { + [anon_sym_while] = ACTIONS(4665), [sym_comment] = ACTIONS(49), }, - [1484] = { - [sym_declaration] = STATE(2048), - [sym__declaration_specifiers] = STATE(1497), + [1487] = { + [sym_declaration] = STATE(2054), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -62020,42 +62139,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2049), - [sym_conditional_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2049), - [sym_pointer_expression] = STATE(2049), - [sym_logical_expression] = STATE(2049), - [sym_bitwise_expression] = STATE(2049), - [sym_equality_expression] = STATE(2049), - [sym_relational_expression] = STATE(2049), - [sym_shift_expression] = STATE(2049), - [sym_math_expression] = STATE(2049), - [sym_cast_expression] = STATE(2049), - [sym_sizeof_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_call_expression] = STATE(2049), - [sym_field_expression] = STATE(2049), - [sym_compound_literal_expression] = STATE(2049), - [sym_parenthesized_expression] = STATE(2049), - [sym_concatenated_string] = STATE(2049), + [sym__expression] = STATE(2055), + [sym_conditional_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2055), + [sym_pointer_expression] = STATE(2055), + [sym_logical_expression] = STATE(2055), + [sym_bitwise_expression] = STATE(2055), + [sym_equality_expression] = STATE(2055), + [sym_relational_expression] = STATE(2055), + [sym_shift_expression] = STATE(2055), + [sym_math_expression] = STATE(2055), + [sym_cast_expression] = STATE(2055), + [sym_sizeof_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_call_expression] = STATE(2055), + [sym_field_expression] = STATE(2055), + [sym_compound_literal_expression] = STATE(2055), + [sym_parenthesized_expression] = STATE(2055), + [sym_concatenated_string] = STATE(2055), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2049), - [sym_for_range_declaration] = STATE(2050), - [sym_new_expression] = STATE(2049), - [sym_delete_expression] = STATE(2049), - [sym_lambda_expression] = STATE(2049), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2055), + [sym_for_range_declaration] = STATE(2056), + [sym_new_expression] = STATE(2055), + [sym_delete_expression] = STATE(2055), + [sym_lambda_expression] = STATE(2055), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(4653), + [sym_raw_string_literal] = ACTIONS(4667), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(4655), + [anon_sym_SEMI] = ACTIONS(4669), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -62084,146 +62203,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4653), - [sym_char_literal] = ACTIONS(4653), + [sym_number_literal] = ACTIONS(4667), + [sym_char_literal] = ACTIONS(4667), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4657), - [sym_false] = ACTIONS(4657), - [sym_null] = ACTIONS(4657), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(4671), + [sym_false] = ACTIONS(4671), + [sym_null] = ACTIONS(4671), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4657), + [sym_nullptr] = ACTIONS(4671), }, - [1485] = { - [anon_sym_else] = ACTIONS(3086), - [anon_sym_while] = ACTIONS(3086), + [1488] = { + [anon_sym_else] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), [sym_comment] = ACTIONS(49), }, - [1486] = { + [1489] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4659), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4673), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1487] = { - [anon_sym_SEMI] = ACTIONS(4659), + [1490] = { + [anon_sym_SEMI] = ACTIONS(4673), [sym_comment] = ACTIONS(49), }, - [1488] = { - [anon_sym_else] = ACTIONS(3092), - [anon_sym_while] = ACTIONS(3092), + [1491] = { + [anon_sym_else] = ACTIONS(3098), + [anon_sym_while] = ACTIONS(3098), [sym_comment] = ACTIONS(49), }, - [1489] = { - [anon_sym_else] = ACTIONS(3096), - [anon_sym_while] = ACTIONS(3096), + [1492] = { + [anon_sym_else] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), [sym_comment] = ACTIONS(49), }, - [1490] = { - [anon_sym_SEMI] = ACTIONS(4661), + [1493] = { + [anon_sym_SEMI] = ACTIONS(4675), [sym_comment] = ACTIONS(49), }, - [1491] = { - [sym_compound_statement] = STATE(2053), - [sym_labeled_statement] = STATE(2053), - [sym_expression_statement] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_switch_statement] = STATE(2053), - [sym_case_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_do_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_return_statement] = STATE(2053), - [sym_break_statement] = STATE(2053), - [sym_continue_statement] = STATE(2053), - [sym_goto_statement] = STATE(2053), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2053), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [1494] = { + [sym_compound_statement] = STATE(2059), + [sym_labeled_statement] = STATE(2059), + [sym_expression_statement] = STATE(2059), + [sym_if_statement] = STATE(2059), + [sym_switch_statement] = STATE(2059), + [sym_case_statement] = STATE(2059), + [sym_while_statement] = STATE(2059), + [sym_do_statement] = STATE(2059), + [sym_for_statement] = STATE(2059), + [sym_return_statement] = STATE(2059), + [sym_break_statement] = STATE(2059), + [sym_continue_statement] = STATE(2059), + [sym_goto_statement] = STATE(2059), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2059), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -62232,59 +62351,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [1492] = { - [anon_sym_LPAREN] = ACTIONS(4663), + [1495] = { + [anon_sym_LPAREN] = ACTIONS(4677), [sym_comment] = ACTIONS(49), }, - [1493] = { - [anon_sym_else] = ACTIONS(3126), - [anon_sym_while] = ACTIONS(3126), + [1496] = { + [anon_sym_else] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), [sym_comment] = ACTIONS(49), }, - [1494] = { - [sym__expression] = STATE(2056), - [sym_conditional_expression] = STATE(2056), - [sym_assignment_expression] = STATE(2056), - [sym_pointer_expression] = STATE(2056), - [sym_logical_expression] = STATE(2056), - [sym_bitwise_expression] = STATE(2056), - [sym_equality_expression] = STATE(2056), - [sym_relational_expression] = STATE(2056), - [sym_shift_expression] = STATE(2056), - [sym_math_expression] = STATE(2056), - [sym_cast_expression] = STATE(2056), - [sym_sizeof_expression] = STATE(2056), - [sym_subscript_expression] = STATE(2056), - [sym_call_expression] = STATE(2056), - [sym_field_expression] = STATE(2056), - [sym_compound_literal_expression] = STATE(2056), - [sym_parenthesized_expression] = STATE(2056), - [sym_concatenated_string] = STATE(2056), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2056), - [sym_new_expression] = STATE(2056), - [sym_delete_expression] = STATE(2056), - [sym_lambda_expression] = STATE(2056), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4665), + [1497] = { + [sym__expression] = STATE(2062), + [sym_conditional_expression] = STATE(2062), + [sym_assignment_expression] = STATE(2062), + [sym_pointer_expression] = STATE(2062), + [sym_logical_expression] = STATE(2062), + [sym_bitwise_expression] = STATE(2062), + [sym_equality_expression] = STATE(2062), + [sym_relational_expression] = STATE(2062), + [sym_shift_expression] = STATE(2062), + [sym_math_expression] = STATE(2062), + [sym_cast_expression] = STATE(2062), + [sym_sizeof_expression] = STATE(2062), + [sym_subscript_expression] = STATE(2062), + [sym_call_expression] = STATE(2062), + [sym_field_expression] = STATE(2062), + [sym_compound_literal_expression] = STATE(2062), + [sym_parenthesized_expression] = STATE(2062), + [sym_concatenated_string] = STATE(2062), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2062), + [sym_new_expression] = STATE(2062), + [sym_delete_expression] = STATE(2062), + [sym_lambda_expression] = STATE(2062), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4679), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(4667), + [anon_sym_SEMI] = ACTIONS(4681), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -62295,22 +62414,22 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4665), - [sym_char_literal] = ACTIONS(4665), + [sym_number_literal] = ACTIONS(4679), + [sym_char_literal] = ACTIONS(4679), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4669), - [sym_false] = ACTIONS(4669), - [sym_null] = ACTIONS(4669), + [sym_true] = ACTIONS(4683), + [sym_false] = ACTIONS(4683), + [sym_null] = ACTIONS(4683), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4669), + [sym_nullptr] = ACTIONS(4683), }, - [1495] = { + [1498] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_SEMI] = ACTIONS(1477), [anon_sym_extern] = ACTIONS(144), @@ -62363,271 +62482,271 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [1496] = { + [1499] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(4621), + [sym_identifier] = ACTIONS(4633), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(2541), + [anon_sym_delete] = ACTIONS(2543), [sym_operator_name] = ACTIONS(190), }, - [1497] = { - [sym__declarator] = STATE(2059), - [sym_pointer_declarator] = STATE(2059), - [sym_function_declarator] = STATE(2059), - [sym_array_declarator] = STATE(2059), - [sym_init_declarator] = STATE(2060), - [sym_reference_declarator] = STATE(2059), + [1500] = { + [sym__declarator] = STATE(2065), + [sym_pointer_declarator] = STATE(2065), + [sym_function_declarator] = STATE(2065), + [sym_array_declarator] = STATE(2065), + [sym_init_declarator] = STATE(2066), + [sym_reference_declarator] = STATE(2065), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2059), - [sym_destructor_name] = STATE(2059), - [sym_scoped_identifier] = STATE(2061), + [sym_template_function] = STATE(2065), + [sym_destructor_name] = STATE(2065), + [sym_scoped_identifier] = STATE(2067), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(4671), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4675), + [anon_sym_STAR] = ACTIONS(4685), + [anon_sym_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4689), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(4677), + [sym_operator_name] = ACTIONS(4691), }, - [1498] = { + [1501] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4679), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4693), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1499] = { - [anon_sym_COLON] = ACTIONS(4681), + [1502] = { + [anon_sym_COLON] = ACTIONS(4695), [sym_comment] = ACTIONS(49), }, - [1500] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [1503] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_RBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [1501] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [1504] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_RBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [1502] = { - [anon_sym_RPAREN] = ACTIONS(4691), + [1505] = { + [anon_sym_RPAREN] = ACTIONS(4705), [sym_comment] = ACTIONS(49), }, - [1503] = { - [aux_sym_concatenated_string_repeat1] = STATE(1503), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(4693), + [1506] = { + [aux_sym_concatenated_string_repeat1] = STATE(1506), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(4707), [sym_comment] = ACTIONS(49), }, - [1504] = { + [1507] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -62635,7 +62754,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(1712), + [anon_sym_COLON] = ACTIONS(1714), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -62669,77 +62788,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [1505] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [1508] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [1506] = { + [1509] = { [anon_sym_LPAREN] = ACTIONS(1137), [anon_sym_COMMA] = ACTIONS(1146), [anon_sym_RPAREN] = ACTIONS(1137), @@ -62747,7 +62866,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(1140), [anon_sym_RBRACE] = ACTIONS(1146), - [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_EQ] = ACTIONS(1148), [anon_sym_static] = ACTIONS(1142), @@ -62771,7 +62890,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1146), [anon_sym_CARET_EQ] = ACTIONS(1146), [anon_sym_PIPE_EQ] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4239), [anon_sym_PIPE_PIPE] = ACTIONS(1146), [anon_sym_AMP_AMP] = ACTIONS(1137), [anon_sym_PIPE] = ACTIONS(1148), @@ -62779,7 +62898,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1140), [anon_sym_EQ_EQ] = ACTIONS(1146), [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4239), [anon_sym_GT] = ACTIONS(1148), [anon_sym_LT_EQ] = ACTIONS(1146), [anon_sym_GT_EQ] = ACTIONS(1146), @@ -62798,7 +62917,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), [sym_operator_name] = ACTIONS(1140), }, - [1507] = { + [1510] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -62831,7 +62950,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4700), + [anon_sym_RBRACK] = ACTIONS(4714), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -62854,82 +62973,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1508] = { + [1511] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1509] = { - [sym__expression] = STATE(2066), - [sym_conditional_expression] = STATE(2066), - [sym_assignment_expression] = STATE(2066), - [sym_pointer_expression] = STATE(2066), - [sym_logical_expression] = STATE(2066), - [sym_bitwise_expression] = STATE(2066), - [sym_equality_expression] = STATE(2066), - [sym_relational_expression] = STATE(2066), - [sym_shift_expression] = STATE(2066), - [sym_math_expression] = STATE(2066), - [sym_cast_expression] = STATE(2066), - [sym_sizeof_expression] = STATE(2066), - [sym_subscript_expression] = STATE(2066), - [sym_call_expression] = STATE(2066), - [sym_field_expression] = STATE(2066), - [sym_compound_literal_expression] = STATE(2066), - [sym_parenthesized_expression] = STATE(2066), - [sym_concatenated_string] = STATE(2066), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2066), - [sym_new_expression] = STATE(2066), - [sym_delete_expression] = STATE(2066), - [sym_lambda_expression] = STATE(2066), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4702), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1512] = { + [sym__expression] = STATE(2072), + [sym_conditional_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2072), + [sym_pointer_expression] = STATE(2072), + [sym_logical_expression] = STATE(2072), + [sym_bitwise_expression] = STATE(2072), + [sym_equality_expression] = STATE(2072), + [sym_relational_expression] = STATE(2072), + [sym_shift_expression] = STATE(2072), + [sym_math_expression] = STATE(2072), + [sym_cast_expression] = STATE(2072), + [sym_sizeof_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_call_expression] = STATE(2072), + [sym_field_expression] = STATE(2072), + [sym_compound_literal_expression] = STATE(2072), + [sym_parenthesized_expression] = STATE(2072), + [sym_concatenated_string] = STATE(2072), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2072), + [sym_new_expression] = STATE(2072), + [sym_delete_expression] = STATE(2072), + [sym_lambda_expression] = STATE(2072), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4716), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), [anon_sym_PLUS] = ACTIONS(672), @@ -62937,20 +63056,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4702), - [sym_char_literal] = ACTIONS(4702), + [sym_number_literal] = ACTIONS(4716), + [sym_char_literal] = ACTIONS(4716), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4704), - [sym_false] = ACTIONS(4704), - [sym_null] = ACTIONS(4704), + [sym_true] = ACTIONS(4718), + [sym_false] = ACTIONS(4718), + [sym_null] = ACTIONS(4718), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4704), + [sym_nullptr] = ACTIONS(4718), }, - [1510] = { + [1513] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -63018,42 +63137,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [1511] = { + [1514] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(4706), + [anon_sym_SEMI] = ACTIONS(4720), [sym_comment] = ACTIONS(49), }, - [1512] = { - [sym__expression] = STATE(2068), - [sym_conditional_expression] = STATE(2068), - [sym_assignment_expression] = STATE(2068), - [sym_pointer_expression] = STATE(2068), - [sym_logical_expression] = STATE(2068), - [sym_bitwise_expression] = STATE(2068), - [sym_equality_expression] = STATE(2068), - [sym_relational_expression] = STATE(2068), - [sym_shift_expression] = STATE(2068), - [sym_math_expression] = STATE(2068), - [sym_cast_expression] = STATE(2068), - [sym_sizeof_expression] = STATE(2068), - [sym_subscript_expression] = STATE(2068), - [sym_call_expression] = STATE(2068), - [sym_field_expression] = STATE(2068), - [sym_compound_literal_expression] = STATE(2068), - [sym_parenthesized_expression] = STATE(2068), - [sym_initializer_list] = STATE(2069), - [sym_concatenated_string] = STATE(2068), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2068), - [sym_new_expression] = STATE(2068), - [sym_delete_expression] = STATE(2068), - [sym_lambda_expression] = STATE(2068), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4708), + [1515] = { + [sym__expression] = STATE(2074), + [sym_conditional_expression] = STATE(2074), + [sym_assignment_expression] = STATE(2074), + [sym_pointer_expression] = STATE(2074), + [sym_logical_expression] = STATE(2074), + [sym_bitwise_expression] = STATE(2074), + [sym_equality_expression] = STATE(2074), + [sym_relational_expression] = STATE(2074), + [sym_shift_expression] = STATE(2074), + [sym_math_expression] = STATE(2074), + [sym_cast_expression] = STATE(2074), + [sym_sizeof_expression] = STATE(2074), + [sym_subscript_expression] = STATE(2074), + [sym_call_expression] = STATE(2074), + [sym_field_expression] = STATE(2074), + [sym_compound_literal_expression] = STATE(2074), + [sym_parenthesized_expression] = STATE(2074), + [sym_initializer_list] = STATE(2075), + [sym_concatenated_string] = STATE(2074), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2074), + [sym_new_expression] = STATE(2074), + [sym_delete_expression] = STATE(2074), + [sym_lambda_expression] = STATE(2074), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4722), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -63066,53 +63185,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4708), - [sym_char_literal] = ACTIONS(4708), + [sym_number_literal] = ACTIONS(4722), + [sym_char_literal] = ACTIONS(4722), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4710), - [sym_false] = ACTIONS(4710), - [sym_null] = ACTIONS(4710), + [sym_true] = ACTIONS(4724), + [sym_false] = ACTIONS(4724), + [sym_null] = ACTIONS(4724), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4710), + [sym_nullptr] = ACTIONS(4724), }, - [1513] = { - [anon_sym_SEMI] = ACTIONS(4712), + [1516] = { + [anon_sym_SEMI] = ACTIONS(4726), [sym_comment] = ACTIONS(49), }, - [1514] = { - [sym__expression] = STATE(2071), - [sym_conditional_expression] = STATE(2071), - [sym_assignment_expression] = STATE(2071), - [sym_pointer_expression] = STATE(2071), - [sym_logical_expression] = STATE(2071), - [sym_bitwise_expression] = STATE(2071), - [sym_equality_expression] = STATE(2071), - [sym_relational_expression] = STATE(2071), - [sym_shift_expression] = STATE(2071), - [sym_math_expression] = STATE(2071), - [sym_cast_expression] = STATE(2071), - [sym_sizeof_expression] = STATE(2071), - [sym_subscript_expression] = STATE(2071), - [sym_call_expression] = STATE(2071), - [sym_field_expression] = STATE(2071), - [sym_compound_literal_expression] = STATE(2071), - [sym_parenthesized_expression] = STATE(2071), - [sym_initializer_list] = STATE(2072), - [sym_concatenated_string] = STATE(2071), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2071), - [sym_new_expression] = STATE(2071), - [sym_delete_expression] = STATE(2071), - [sym_lambda_expression] = STATE(2071), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4714), + [1517] = { + [sym__expression] = STATE(2077), + [sym_conditional_expression] = STATE(2077), + [sym_assignment_expression] = STATE(2077), + [sym_pointer_expression] = STATE(2077), + [sym_logical_expression] = STATE(2077), + [sym_bitwise_expression] = STATE(2077), + [sym_equality_expression] = STATE(2077), + [sym_relational_expression] = STATE(2077), + [sym_shift_expression] = STATE(2077), + [sym_math_expression] = STATE(2077), + [sym_cast_expression] = STATE(2077), + [sym_sizeof_expression] = STATE(2077), + [sym_subscript_expression] = STATE(2077), + [sym_call_expression] = STATE(2077), + [sym_field_expression] = STATE(2077), + [sym_compound_literal_expression] = STATE(2077), + [sym_parenthesized_expression] = STATE(2077), + [sym_initializer_list] = STATE(2078), + [sym_concatenated_string] = STATE(2077), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2077), + [sym_new_expression] = STATE(2077), + [sym_delete_expression] = STATE(2077), + [sym_lambda_expression] = STATE(2077), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4728), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -63125,650 +63244,650 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4714), - [sym_char_literal] = ACTIONS(4714), + [sym_number_literal] = ACTIONS(4728), + [sym_char_literal] = ACTIONS(4728), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4716), - [sym_false] = ACTIONS(4716), - [sym_null] = ACTIONS(4716), + [sym_true] = ACTIONS(4730), + [sym_false] = ACTIONS(4730), + [sym_null] = ACTIONS(4730), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4716), + [sym_nullptr] = ACTIONS(4730), }, - [1515] = { - [anon_sym_SEMI] = ACTIONS(4718), + [1518] = { + [anon_sym_SEMI] = ACTIONS(4732), [sym_comment] = ACTIONS(49), }, - [1516] = { + [1519] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1517] = { - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_SEMI] = ACTIONS(4720), + [1520] = { + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_SEMI] = ACTIONS(4734), [sym_comment] = ACTIONS(49), }, - [1518] = { + [1521] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1519] = { + [1522] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(4722), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(4736), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1520] = { + [1523] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1521] = { + [1524] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1522] = { + [1525] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1523] = { + [1526] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1524] = { + [1527] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1525] = { + [1528] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1526] = { + [1529] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1527] = { + [1530] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_SEMI] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1528] = { + [1531] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1529] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_SEMI] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [1532] = { + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_SEMI] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, - [1530] = { - [anon_sym_LPAREN] = ACTIONS(4724), - [anon_sym_LBRACE] = ACTIONS(4724), + [1533] = { + [anon_sym_LPAREN] = ACTIONS(4738), + [anon_sym_LBRACE] = ACTIONS(4738), [anon_sym_LT] = ACTIONS(1140), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1144), }, - [1531] = { - [anon_sym_LPAREN] = ACTIONS(4726), - [anon_sym_LBRACE] = ACTIONS(4726), - [anon_sym_LT] = ACTIONS(4726), + [1534] = { + [anon_sym_LPAREN] = ACTIONS(4740), + [anon_sym_LBRACE] = ACTIONS(4740), + [anon_sym_LT] = ACTIONS(4740), [sym_comment] = ACTIONS(49), }, - [1532] = { - [anon_sym_COMMA] = ACTIONS(4728), - [anon_sym_LBRACE] = ACTIONS(4728), + [1535] = { + [anon_sym_COMMA] = ACTIONS(4742), + [anon_sym_LBRACE] = ACTIONS(4742), [sym_comment] = ACTIONS(49), }, - [1533] = { - [aux_sym_field_initializer_list_repeat1] = STATE(1533), - [anon_sym_COMMA] = ACTIONS(4730), - [anon_sym_LBRACE] = ACTIONS(4728), + [1536] = { + [aux_sym_field_initializer_list_repeat1] = STATE(1536), + [anon_sym_COMMA] = ACTIONS(4744), + [anon_sym_LBRACE] = ACTIONS(4742), [sym_comment] = ACTIONS(49), }, - [1534] = { - [anon_sym_LPAREN] = ACTIONS(4733), - [anon_sym_LBRACE] = ACTIONS(4733), - [anon_sym_LT] = ACTIONS(1799), + [1537] = { + [anon_sym_LPAREN] = ACTIONS(4747), + [anon_sym_LBRACE] = ACTIONS(4747), + [anon_sym_LT] = ACTIONS(1801), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, - [1535] = { - [anon_sym_LPAREN] = ACTIONS(4735), - [anon_sym_LBRACE] = ACTIONS(4735), - [anon_sym_LT] = ACTIONS(4735), + [1538] = { + [anon_sym_LPAREN] = ACTIONS(4749), + [anon_sym_LBRACE] = ACTIONS(4749), + [anon_sym_LT] = ACTIONS(4749), [sym_comment] = ACTIONS(49), }, - [1536] = { - [anon_sym_COMMA] = ACTIONS(4737), - [anon_sym_RPAREN] = ACTIONS(4737), + [1539] = { + [anon_sym_COMMA] = ACTIONS(4751), + [anon_sym_RPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(49), }, - [1537] = { - [anon_sym_LF] = ACTIONS(4739), - [sym_preproc_arg] = ACTIONS(4739), + [1540] = { + [anon_sym_LF] = ACTIONS(4753), + [sym_preproc_arg] = ACTIONS(4753), [sym_comment] = ACTIONS(83), }, - [1538] = { - [aux_sym_preproc_params_repeat1] = STATE(1538), - [anon_sym_COMMA] = ACTIONS(4741), - [anon_sym_RPAREN] = ACTIONS(4737), + [1541] = { + [aux_sym_preproc_params_repeat1] = STATE(1541), + [anon_sym_COMMA] = ACTIONS(4755), + [anon_sym_RPAREN] = ACTIONS(4751), [sym_comment] = ACTIONS(49), }, - [1539] = { - [sym_enumerator_list] = STATE(1895), + [1542] = { + [sym_enumerator_list] = STATE(1898), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_COMMA] = ACTIONS(350), [anon_sym_RPAREN] = ACTIONS(350), [anon_sym_SEMI] = ACTIONS(350), - [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_LBRACE] = ACTIONS(2825), [anon_sym_STAR] = ACTIONS(350), [anon_sym_LBRACK] = ACTIONS(350), [anon_sym_const] = ACTIONS(352), @@ -63785,13 +63904,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(350), }, - [1540] = { - [sym_field_declaration_list] = STATE(1898), - [sym_base_class_clause] = STATE(1899), + [1543] = { + [sym_field_declaration_list] = STATE(1901), + [sym_base_class_clause] = STATE(1902), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_RPAREN] = ACTIONS(406), [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACK] = ACTIONS(406), [anon_sym_const] = ACTIONS(408), @@ -63808,13 +63927,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(406), }, - [1541] = { - [sym_field_declaration_list] = STATE(1900), - [sym_base_class_clause] = STATE(1901), + [1544] = { + [sym_field_declaration_list] = STATE(1903), + [sym_base_class_clause] = STATE(1904), [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(416), [anon_sym_LBRACK] = ACTIONS(416), [anon_sym_const] = ACTIONS(418), @@ -63831,13 +63950,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(416), }, - [1542] = { - [sym_field_declaration_list] = STATE(1905), - [sym_base_class_clause] = STATE(1906), + [1545] = { + [sym_field_declaration_list] = STATE(1908), + [sym_base_class_clause] = STATE(1909), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_RPAREN] = ACTIONS(451), [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(451), [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_const] = ACTIONS(453), @@ -63854,90 +63973,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(451), }, - [1543] = { - [sym__abstract_declarator] = STATE(2075), - [sym_abstract_pointer_declarator] = STATE(2075), - [sym_abstract_function_declarator] = STATE(2075), - [sym_abstract_array_declarator] = STATE(2075), - [sym_parameter_list] = STATE(1546), - [sym_abstract_reference_declarator] = STATE(2075), + [1546] = { + [sym__abstract_declarator] = STATE(2081), + [sym_abstract_pointer_declarator] = STATE(2081), + [sym_abstract_function_declarator] = STATE(2081), + [sym_abstract_array_declarator] = STATE(2081), + [sym_parameter_list] = STATE(1549), + [sym_abstract_reference_declarator] = STATE(2081), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(3358), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [1544] = { - [sym__abstract_declarator] = STATE(2076), - [sym_abstract_pointer_declarator] = STATE(2076), - [sym_abstract_function_declarator] = STATE(2076), - [sym_abstract_array_declarator] = STATE(2076), - [sym_parameter_list] = STATE(1546), - [sym_abstract_reference_declarator] = STATE(2076), + [1547] = { + [sym__abstract_declarator] = STATE(2082), + [sym_abstract_pointer_declarator] = STATE(2082), + [sym_abstract_function_declarator] = STATE(2082), + [sym_abstract_array_declarator] = STATE(2082), + [sym_parameter_list] = STATE(1549), + [sym_abstract_reference_declarator] = STATE(2082), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(3358), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(3354), - [anon_sym_AMP_AMP] = ACTIONS(3356), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [1545] = { - [sym_parameter_list] = STATE(2077), + [1548] = { + [sym_parameter_list] = STATE(2083), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), + [sym_noexcept] = ACTIONS(4364), }, - [1546] = { - [sym_type_qualifier] = STATE(2078), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2078), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [1549] = { + [sym_type_qualifier] = STATE(2084), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2084), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [1547] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1547), + [1550] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1550), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_RPAREN] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), @@ -63949,9 +64068,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(4744), - [anon_sym_long] = ACTIONS(4744), - [anon_sym_short] = ACTIONS(4744), + [anon_sym_unsigned] = ACTIONS(4758), + [anon_sym_long] = ACTIONS(4758), + [anon_sym_short] = ACTIONS(4758), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -63960,211 +64079,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [1548] = { - [anon_sym_LF] = ACTIONS(4747), + [1551] = { + [anon_sym_LF] = ACTIONS(4761), [sym_comment] = ACTIONS(83), }, - [1549] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [sym_operator_name] = ACTIONS(1821), + [1552] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_template] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [sym_operator_name] = ACTIONS(1823), }, - [1550] = { - [anon_sym_LF] = ACTIONS(4749), + [1553] = { + [anon_sym_LF] = ACTIONS(4763), [sym_comment] = ACTIONS(83), }, - [1551] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1909), - [sym_preproc_directive] = ACTIONS(1909), - [anon_sym_typedef] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_inline] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_restrict] = ACTIONS(1909), - [anon_sym_volatile] = ACTIONS(1909), - [anon_sym__Atomic] = ACTIONS(1909), - [anon_sym_mutable] = ACTIONS(1909), - [anon_sym_explicit] = ACTIONS(1909), - [anon_sym_constexpr] = ACTIONS(1909), - [anon_sym_unsigned] = ACTIONS(1909), - [anon_sym_long] = ACTIONS(1909), - [anon_sym_short] = ACTIONS(1909), - [sym_primitive_type] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1909), - [sym_auto] = ACTIONS(1909), - [anon_sym_typename] = ACTIONS(1909), - [anon_sym_template] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [sym_operator_name] = ACTIONS(1907), + [1554] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1911), + [sym_preproc_directive] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_restrict] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym__Atomic] = ACTIONS(1911), + [anon_sym_mutable] = ACTIONS(1911), + [anon_sym_explicit] = ACTIONS(1911), + [anon_sym_constexpr] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1911), + [sym_auto] = ACTIONS(1911), + [anon_sym_typename] = ACTIONS(1911), + [anon_sym_template] = ACTIONS(1911), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [sym_operator_name] = ACTIONS(1909), }, - [1552] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4751), + [1555] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4765), [sym_comment] = ACTIONS(49), }, - [1553] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1960), - [sym_preproc_directive] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_restrict] = ACTIONS(1960), - [anon_sym_volatile] = ACTIONS(1960), - [anon_sym__Atomic] = ACTIONS(1960), - [anon_sym_mutable] = ACTIONS(1960), - [anon_sym_explicit] = ACTIONS(1960), - [anon_sym_constexpr] = ACTIONS(1960), - [anon_sym_unsigned] = ACTIONS(1960), - [anon_sym_long] = ACTIONS(1960), - [anon_sym_short] = ACTIONS(1960), - [sym_primitive_type] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1960), - [sym_auto] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1960), - [anon_sym_namespace] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [sym_operator_name] = ACTIONS(1958), + [1556] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1962), + [sym_preproc_directive] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_register] = ACTIONS(1962), + [anon_sym_inline] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_restrict] = ACTIONS(1962), + [anon_sym_volatile] = ACTIONS(1962), + [anon_sym__Atomic] = ACTIONS(1962), + [anon_sym_mutable] = ACTIONS(1962), + [anon_sym_explicit] = ACTIONS(1962), + [anon_sym_constexpr] = ACTIONS(1962), + [anon_sym_unsigned] = ACTIONS(1962), + [anon_sym_long] = ACTIONS(1962), + [anon_sym_short] = ACTIONS(1962), + [sym_primitive_type] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1962), + [sym_auto] = ACTIONS(1962), + [anon_sym_typename] = ACTIONS(1962), + [anon_sym_template] = ACTIONS(1962), + [anon_sym_namespace] = ACTIONS(1962), + [anon_sym_using] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [sym_operator_name] = ACTIONS(1960), }, - [1554] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4753), + [1557] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4767), [sym_comment] = ACTIONS(49), }, - [1555] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1966), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_mutable] = ACTIONS(1966), - [anon_sym_explicit] = ACTIONS(1966), - [anon_sym_constexpr] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_typename] = ACTIONS(1966), - [anon_sym_template] = ACTIONS(1966), - [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_using] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [sym_operator_name] = ACTIONS(1964), + [1558] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_mutable] = ACTIONS(1968), + [anon_sym_explicit] = ACTIONS(1968), + [anon_sym_constexpr] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_typename] = ACTIONS(1968), + [anon_sym_template] = ACTIONS(1968), + [anon_sym_namespace] = ACTIONS(1968), + [anon_sym_using] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [sym_operator_name] = ACTIONS(1966), }, - [1556] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4755), + [1559] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4769), [sym_comment] = ACTIONS(49), }, - [1557] = { - [sym_preproc_arg] = ACTIONS(4757), + [1560] = { + [sym_preproc_arg] = ACTIONS(4771), [sym_comment] = ACTIONS(83), }, - [1558] = { + [1561] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(827), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(827), [anon_sym_LPAREN] = ACTIONS(825), @@ -64207,12 +64326,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(825), [sym_operator_name] = ACTIONS(825), }, - [1559] = { - [anon_sym_LF] = ACTIONS(4759), - [sym_preproc_arg] = ACTIONS(4761), + [1562] = { + [anon_sym_LF] = ACTIONS(4773), + [sym_preproc_arg] = ACTIONS(4775), [sym_comment] = ACTIONS(83), }, - [1560] = { + [1563] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(859), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(859), [anon_sym_LPAREN] = ACTIONS(857), @@ -64255,19 +64374,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(857), [sym_operator_name] = ACTIONS(857), }, - [1561] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4763), + [1564] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4777), [sym_comment] = ACTIONS(49), }, - [1562] = { + [1565] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(2088), - [sym_preproc_elif] = STATE(2088), + [sym_preproc_else] = STATE(2094), + [sym_preproc_elif] = STATE(2094), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -64309,7 +64428,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4765), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4779), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -64349,7 +64468,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [1563] = { + [1566] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(921), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(921), [anon_sym_LPAREN] = ACTIONS(919), @@ -64392,19 +64511,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(919), [sym_operator_name] = ACTIONS(919), }, - [1564] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4767), + [1567] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4781), [sym_comment] = ACTIONS(49), }, - [1565] = { + [1568] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(2090), - [sym_preproc_elif] = STATE(2090), + [sym_preproc_else] = STATE(2096), + [sym_preproc_elif] = STATE(2096), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -64446,7 +64565,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4783), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -64486,7 +64605,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [1566] = { + [1569] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(929), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(929), [anon_sym_LPAREN] = ACTIONS(927), @@ -64529,19 +64648,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(927), [sym_operator_name] = ACTIONS(927), }, - [1567] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4771), + [1570] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4785), [sym_comment] = ACTIONS(49), }, - [1568] = { + [1571] = { [sym_preproc_include] = STATE(486), [sym_preproc_def] = STATE(486), [sym_preproc_function_def] = STATE(486), [sym_preproc_call] = STATE(486), [sym_preproc_if] = STATE(486), [sym_preproc_ifdef] = STATE(486), - [sym_preproc_else] = STATE(2092), - [sym_preproc_elif] = STATE(2092), + [sym_preproc_else] = STATE(2098), + [sym_preproc_elif] = STATE(2098), [sym_function_definition] = STATE(486), [sym_declaration] = STATE(486), [sym_type_definition] = STATE(486), @@ -64583,7 +64702,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(275), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(277), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4773), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4787), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(281), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(283), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(285), @@ -64623,19 +64742,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [1569] = { - [anon_sym_LF] = ACTIONS(4775), + [1572] = { + [anon_sym_LF] = ACTIONS(4789), [sym_comment] = ACTIONS(83), }, - [1570] = { + [1573] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4777), + [anon_sym_SEMI] = ACTIONS(4791), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [1571] = { - [sym__type_declarator] = STATE(2095), + [1574] = { + [sym__type_declarator] = STATE(2101), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -64644,7 +64763,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [1572] = { + [1575] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(977), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(977), [anon_sym_LPAREN] = ACTIONS(975), @@ -64687,16 +64806,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(975), [sym_operator_name] = ACTIONS(975), }, - [1573] = { - [sym__declarator] = STATE(967), - [sym_pointer_declarator] = STATE(967), - [sym_function_declarator] = STATE(967), - [sym_array_declarator] = STATE(967), - [sym_init_declarator] = STATE(968), - [sym_reference_declarator] = STATE(967), + [1576] = { + [sym__declarator] = STATE(968), + [sym_pointer_declarator] = STATE(968), + [sym_function_declarator] = STATE(968), + [sym_array_declarator] = STATE(968), + [sym_init_declarator] = STATE(969), + [sym_reference_declarator] = STATE(968), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(967), - [sym_destructor_name] = STATE(967), + [sym_template_function] = STATE(968), + [sym_destructor_name] = STATE(968), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -64708,16 +64827,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1883), + [sym_operator_name] = ACTIONS(1885), }, - [1574] = { + [1577] = { [sym_parameter_list] = STATE(299), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4779), + [anon_sym_SEMI] = ACTIONS(4793), [anon_sym_LBRACK] = ACTIONS(208), [sym_comment] = ACTIONS(49), }, - [1575] = { + [1578] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1192), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1192), [anon_sym_LPAREN] = ACTIONS(1190), @@ -64760,7 +64879,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1190), [sym_operator_name] = ACTIONS(1190), }, - [1576] = { + [1579] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1200), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1200), [anon_sym_LPAREN] = ACTIONS(1198), @@ -64803,21 +64922,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1198), [sym_operator_name] = ACTIONS(1198), }, - [1577] = { - [sym__declarator] = STATE(967), - [sym_pointer_declarator] = STATE(967), - [sym_function_declarator] = STATE(967), - [sym_array_declarator] = STATE(967), - [sym_init_declarator] = STATE(968), - [sym_reference_declarator] = STATE(967), + [1580] = { + [sym__declarator] = STATE(968), + [sym_pointer_declarator] = STATE(968), + [sym_function_declarator] = STATE(968), + [sym_array_declarator] = STATE(968), + [sym_init_declarator] = STATE(969), + [sym_reference_declarator] = STATE(968), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(967), - [sym_destructor_name] = STATE(967), + [sym_template_function] = STATE(968), + [sym_destructor_name] = STATE(968), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1883), [anon_sym_STAR] = ACTIONS(196), [anon_sym_AMP] = ACTIONS(526), [anon_sym_AMP_AMP] = ACTIONS(528), @@ -64825,9 +64944,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(1883), + [sym_operator_name] = ACTIONS(1885), }, - [1578] = { + [1581] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1219), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1219), [anon_sym_LPAREN] = ACTIONS(1217), @@ -64870,7 +64989,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1217), [sym_operator_name] = ACTIONS(1217), }, - [1579] = { + [1582] = { [sym_preproc_include] = STATE(634), [sym_preproc_def] = STATE(634), [sym_preproc_function_def] = STATE(634), @@ -64923,7 +65042,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_preproc_directive] = ACTIONS(19), [anon_sym_typedef] = ACTIONS(21), [anon_sym_extern] = ACTIONS(23), - [anon_sym_RBRACE] = ACTIONS(4781), + [anon_sym_RBRACE] = ACTIONS(4795), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -64956,7 +65075,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(61), [sym_operator_name] = ACTIONS(63), }, - [1580] = { + [1583] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1225), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1225), [anon_sym_LPAREN] = ACTIONS(1223), @@ -64999,7 +65118,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1223), [sym_operator_name] = ACTIONS(1223), }, - [1581] = { + [1584] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1229), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1229), [anon_sym_LPAREN] = ACTIONS(1227), @@ -65042,14 +65161,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1227), [sym_operator_name] = ACTIONS(1227), }, - [1582] = { + [1585] = { [sym_type_qualifier] = STATE(638), [sym__type_specifier] = STATE(636), [sym_sized_type_specifier] = STATE(636), [sym_enum_specifier] = STATE(636), [sym_struct_specifier] = STATE(636), [sym_union_specifier] = STATE(636), - [sym_type_descriptor] = STATE(2098), + [sym_type_descriptor] = STATE(2104), [sym_macro_type_specifier] = STATE(636), [sym_class_specifier] = STATE(636), [sym_dependent_type] = STATE(636), @@ -65079,18 +65198,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typename] = ACTIONS(1235), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1583] = { + [1586] = { [sym_template_argument_list] = STATE(203), - [anon_sym_SEMI] = ACTIONS(4783), + [anon_sym_SEMI] = ACTIONS(4797), [anon_sym_LT] = ACTIONS(146), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(501), }, - [1584] = { - [anon_sym_SEMI] = ACTIONS(4783), + [1587] = { + [anon_sym_SEMI] = ACTIONS(4797), [sym_comment] = ACTIONS(49), }, - [1585] = { + [1588] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), [anon_sym_LPAREN] = ACTIONS(1261), @@ -65133,17 +65252,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1261), [sym_operator_name] = ACTIONS(1261), }, - [1586] = { - [sym_preproc_include] = STATE(1594), - [sym_preproc_def] = STATE(1594), - [sym_preproc_function_def] = STATE(1594), - [sym_preproc_call] = STATE(1594), + [1589] = { + [sym_preproc_include] = STATE(1597), + [sym_preproc_def] = STATE(1597), + [sym_preproc_function_def] = STATE(1597), + [sym_preproc_call] = STATE(1597), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1594), - [sym_type_definition] = STATE(1594), + [sym_declaration] = STATE(1597), + [sym_type_definition] = STATE(1597), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1594), + [sym_compound_statement] = STATE(1597), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -65151,18 +65270,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1594), - [sym_expression_statement] = STATE(1594), - [sym_if_statement] = STATE(1594), - [sym_switch_statement] = STATE(1594), - [sym_case_statement] = STATE(1594), - [sym_while_statement] = STATE(1594), - [sym_do_statement] = STATE(1594), - [sym_for_statement] = STATE(1594), - [sym_return_statement] = STATE(1594), - [sym_break_statement] = STATE(1594), - [sym_continue_statement] = STATE(1594), - [sym_goto_statement] = STATE(1594), + [sym_labeled_statement] = STATE(1597), + [sym_expression_statement] = STATE(1597), + [sym_if_statement] = STATE(1597), + [sym_switch_statement] = STATE(1597), + [sym_case_statement] = STATE(1597), + [sym_while_statement] = STATE(1597), + [sym_do_statement] = STATE(1597), + [sym_for_statement] = STATE(1597), + [sym_return_statement] = STATE(1597), + [sym_break_statement] = STATE(1597), + [sym_continue_statement] = STATE(1597), + [sym_goto_statement] = STATE(1597), [sym__expression] = STATE(669), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(669), @@ -65186,14 +65305,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), [sym_concatenated_string] = STATE(669), - [sym__empty_declaration] = STATE(1594), + [sym__empty_declaration] = STATE(1597), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1594), + [sym_structured_binding_declaration] = STATE(1597), [sym_template_type] = STATE(415), [sym_template_function] = STATE(669), - [sym_for_range_loop] = STATE(1594), + [sym_for_range_loop] = STATE(1597), [sym_new_expression] = STATE(669), [sym_delete_expression] = STATE(669), [sym_lambda_expression] = STATE(669), @@ -65201,7 +65320,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1594), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1597), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_initializer_pair_repeat1] = STATE(671), @@ -65218,7 +65337,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(4785), + [anon_sym_RBRACE] = ACTIONS(4799), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_static] = ACTIONS(154), @@ -65274,7 +65393,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1293), }, - [1587] = { + [1590] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1307), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1307), [anon_sym_LPAREN] = ACTIONS(1305), @@ -65317,42 +65436,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1305), [sym_operator_name] = ACTIONS(1305), }, - [1588] = { + [1591] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(4787), + [anon_sym_SEMI] = ACTIONS(4801), [sym_comment] = ACTIONS(49), }, - [1589] = { - [sym__expression] = STATE(2102), - [sym_conditional_expression] = STATE(2102), - [sym_assignment_expression] = STATE(2102), - [sym_pointer_expression] = STATE(2102), - [sym_logical_expression] = STATE(2102), - [sym_bitwise_expression] = STATE(2102), - [sym_equality_expression] = STATE(2102), - [sym_relational_expression] = STATE(2102), - [sym_shift_expression] = STATE(2102), - [sym_math_expression] = STATE(2102), - [sym_cast_expression] = STATE(2102), - [sym_sizeof_expression] = STATE(2102), - [sym_subscript_expression] = STATE(2102), - [sym_call_expression] = STATE(2102), - [sym_field_expression] = STATE(2102), - [sym_compound_literal_expression] = STATE(2102), - [sym_parenthesized_expression] = STATE(2102), - [sym_initializer_list] = STATE(2103), - [sym_concatenated_string] = STATE(2102), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2102), - [sym_new_expression] = STATE(2102), - [sym_delete_expression] = STATE(2102), - [sym_lambda_expression] = STATE(2102), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4789), + [1592] = { + [sym__expression] = STATE(2108), + [sym_conditional_expression] = STATE(2108), + [sym_assignment_expression] = STATE(2108), + [sym_pointer_expression] = STATE(2108), + [sym_logical_expression] = STATE(2108), + [sym_bitwise_expression] = STATE(2108), + [sym_equality_expression] = STATE(2108), + [sym_relational_expression] = STATE(2108), + [sym_shift_expression] = STATE(2108), + [sym_math_expression] = STATE(2108), + [sym_cast_expression] = STATE(2108), + [sym_sizeof_expression] = STATE(2108), + [sym_subscript_expression] = STATE(2108), + [sym_call_expression] = STATE(2108), + [sym_field_expression] = STATE(2108), + [sym_compound_literal_expression] = STATE(2108), + [sym_parenthesized_expression] = STATE(2108), + [sym_initializer_list] = STATE(2109), + [sym_concatenated_string] = STATE(2108), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2108), + [sym_new_expression] = STATE(2108), + [sym_delete_expression] = STATE(2108), + [sym_lambda_expression] = STATE(2108), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4803), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -65365,53 +65484,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4789), - [sym_char_literal] = ACTIONS(4789), + [sym_number_literal] = ACTIONS(4803), + [sym_char_literal] = ACTIONS(4803), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4791), - [sym_false] = ACTIONS(4791), - [sym_null] = ACTIONS(4791), + [sym_true] = ACTIONS(4805), + [sym_false] = ACTIONS(4805), + [sym_null] = ACTIONS(4805), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4791), + [sym_nullptr] = ACTIONS(4805), }, - [1590] = { - [anon_sym_SEMI] = ACTIONS(4793), + [1593] = { + [anon_sym_SEMI] = ACTIONS(4807), [sym_comment] = ACTIONS(49), }, - [1591] = { - [sym__expression] = STATE(2105), - [sym_conditional_expression] = STATE(2105), - [sym_assignment_expression] = STATE(2105), - [sym_pointer_expression] = STATE(2105), - [sym_logical_expression] = STATE(2105), - [sym_bitwise_expression] = STATE(2105), - [sym_equality_expression] = STATE(2105), - [sym_relational_expression] = STATE(2105), - [sym_shift_expression] = STATE(2105), - [sym_math_expression] = STATE(2105), - [sym_cast_expression] = STATE(2105), - [sym_sizeof_expression] = STATE(2105), - [sym_subscript_expression] = STATE(2105), - [sym_call_expression] = STATE(2105), - [sym_field_expression] = STATE(2105), - [sym_compound_literal_expression] = STATE(2105), - [sym_parenthesized_expression] = STATE(2105), - [sym_initializer_list] = STATE(2106), - [sym_concatenated_string] = STATE(2105), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2105), - [sym_new_expression] = STATE(2105), - [sym_delete_expression] = STATE(2105), - [sym_lambda_expression] = STATE(2105), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4795), + [1594] = { + [sym__expression] = STATE(2111), + [sym_conditional_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2111), + [sym_pointer_expression] = STATE(2111), + [sym_logical_expression] = STATE(2111), + [sym_bitwise_expression] = STATE(2111), + [sym_equality_expression] = STATE(2111), + [sym_relational_expression] = STATE(2111), + [sym_shift_expression] = STATE(2111), + [sym_math_expression] = STATE(2111), + [sym_cast_expression] = STATE(2111), + [sym_sizeof_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_call_expression] = STATE(2111), + [sym_field_expression] = STATE(2111), + [sym_compound_literal_expression] = STATE(2111), + [sym_parenthesized_expression] = STATE(2111), + [sym_initializer_list] = STATE(2112), + [sym_concatenated_string] = STATE(2111), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2111), + [sym_new_expression] = STATE(2111), + [sym_delete_expression] = STATE(2111), + [sym_lambda_expression] = STATE(2111), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4809), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -65424,24 +65543,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4795), - [sym_char_literal] = ACTIONS(4795), + [sym_number_literal] = ACTIONS(4809), + [sym_char_literal] = ACTIONS(4809), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4797), - [sym_false] = ACTIONS(4797), - [sym_null] = ACTIONS(4797), + [sym_true] = ACTIONS(4811), + [sym_false] = ACTIONS(4811), + [sym_null] = ACTIONS(4811), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4797), + [sym_nullptr] = ACTIONS(4811), }, - [1592] = { - [anon_sym_SEMI] = ACTIONS(4799), + [1595] = { + [anon_sym_SEMI] = ACTIONS(4813), [sym_comment] = ACTIONS(49), }, - [1593] = { + [1596] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), @@ -65484,17 +65603,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [1594] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [1597] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -65502,18 +65621,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -65533,14 +65652,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -65548,7 +65667,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -65563,7 +65682,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(4801), + [anon_sym_RBRACE] = ACTIONS(4815), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -65618,299 +65737,299 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1595] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1786), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1788), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1788), - [sym_preproc_directive] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_register] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_const] = ACTIONS(1788), - [anon_sym_restrict] = ACTIONS(1788), - [anon_sym_volatile] = ACTIONS(1788), - [anon_sym__Atomic] = ACTIONS(1788), - [anon_sym_mutable] = ACTIONS(1788), - [anon_sym_explicit] = ACTIONS(1788), - [anon_sym_constexpr] = ACTIONS(1788), - [anon_sym_unsigned] = ACTIONS(1788), - [anon_sym_long] = ACTIONS(1788), - [anon_sym_short] = ACTIONS(1788), - [sym_primitive_type] = ACTIONS(1788), - [anon_sym_enum] = ACTIONS(1788), - [anon_sym_struct] = ACTIONS(1788), - [anon_sym_union] = ACTIONS(1788), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_TILDE] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1788), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1788), - [sym_auto] = ACTIONS(1788), - [anon_sym_typename] = ACTIONS(1788), - [anon_sym_template] = ACTIONS(1788), - [anon_sym_namespace] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_COLON_COLON] = ACTIONS(1786), - [sym_operator_name] = ACTIONS(1786), - }, - [1596] = { - [sym_compound_statement] = STATE(2109), - [anon_sym_LBRACE] = ACTIONS(1885), - [sym_comment] = ACTIONS(49), - }, - [1597] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4803), - [sym_comment] = ACTIONS(49), - }, [1598] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_template] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1972), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [sym_operator_name] = ACTIONS(1970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1790), + [anon_sym_LPAREN] = ACTIONS(1788), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1790), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1790), + [sym_preproc_directive] = ACTIONS(1790), + [anon_sym_typedef] = ACTIONS(1790), + [anon_sym_extern] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1788), + [anon_sym_static] = ACTIONS(1790), + [anon_sym_register] = ACTIONS(1790), + [anon_sym_inline] = ACTIONS(1790), + [anon_sym_const] = ACTIONS(1790), + [anon_sym_restrict] = ACTIONS(1790), + [anon_sym_volatile] = ACTIONS(1790), + [anon_sym__Atomic] = ACTIONS(1790), + [anon_sym_mutable] = ACTIONS(1790), + [anon_sym_explicit] = ACTIONS(1790), + [anon_sym_constexpr] = ACTIONS(1790), + [anon_sym_unsigned] = ACTIONS(1790), + [anon_sym_long] = ACTIONS(1790), + [anon_sym_short] = ACTIONS(1790), + [sym_primitive_type] = ACTIONS(1790), + [anon_sym_enum] = ACTIONS(1790), + [anon_sym_struct] = ACTIONS(1790), + [anon_sym_union] = ACTIONS(1790), + [anon_sym_AMP] = ACTIONS(1790), + [anon_sym_AMP_AMP] = ACTIONS(1788), + [anon_sym_TILDE] = ACTIONS(1788), + [sym_identifier] = ACTIONS(1790), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1790), + [sym_auto] = ACTIONS(1790), + [anon_sym_typename] = ACTIONS(1790), + [anon_sym_template] = ACTIONS(1790), + [anon_sym_namespace] = ACTIONS(1790), + [anon_sym_using] = ACTIONS(1790), + [anon_sym_COLON_COLON] = ACTIONS(1788), + [sym_operator_name] = ACTIONS(1788), }, [1599] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [sym_operator_name] = ACTIONS(1986), + [sym_compound_statement] = STATE(2115), + [anon_sym_LBRACE] = ACTIONS(1887), + [sym_comment] = ACTIONS(49), }, [1600] = { - [sym_parameter_list] = STATE(513), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4805), - [anon_sym_LBRACK] = ACTIONS(955), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4817), [sym_comment] = ACTIONS(49), }, [1601] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2340), - [sym_preproc_directive] = ACTIONS(2340), - [anon_sym_typedef] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_register] = ACTIONS(2340), - [anon_sym_inline] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_restrict] = ACTIONS(2340), - [anon_sym_volatile] = ACTIONS(2340), - [anon_sym__Atomic] = ACTIONS(2340), - [anon_sym_mutable] = ACTIONS(2340), - [anon_sym_explicit] = ACTIONS(2340), - [anon_sym_constexpr] = ACTIONS(2340), - [anon_sym_unsigned] = ACTIONS(2340), - [anon_sym_long] = ACTIONS(2340), - [anon_sym_short] = ACTIONS(2340), - [sym_primitive_type] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2340), - [sym_auto] = ACTIONS(2340), - [anon_sym_typename] = ACTIONS(2340), - [anon_sym_template] = ACTIONS(2340), - [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_using] = ACTIONS(2340), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [sym_operator_name] = ACTIONS(2338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [sym_operator_name] = ACTIONS(1972), }, [1602] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2355), - [sym_auto] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2353), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_template] = ACTIONS(1990), + [anon_sym_namespace] = ACTIONS(1990), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [sym_operator_name] = ACTIONS(1988), }, [1603] = { - [anon_sym_SEMI] = ACTIONS(4807), + [sym_parameter_list] = STATE(513), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, [1604] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2371), - [sym_auto] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [sym_operator_name] = ACTIONS(2369), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2342), + [sym_preproc_directive] = ACTIONS(2342), + [anon_sym_typedef] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_inline] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_restrict] = ACTIONS(2342), + [anon_sym_volatile] = ACTIONS(2342), + [anon_sym__Atomic] = ACTIONS(2342), + [anon_sym_mutable] = ACTIONS(2342), + [anon_sym_explicit] = ACTIONS(2342), + [anon_sym_constexpr] = ACTIONS(2342), + [anon_sym_unsigned] = ACTIONS(2342), + [anon_sym_long] = ACTIONS(2342), + [anon_sym_short] = ACTIONS(2342), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2342), + [sym_auto] = ACTIONS(2342), + [anon_sym_typename] = ACTIONS(2342), + [anon_sym_template] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2342), + [anon_sym_using] = ACTIONS(2342), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [sym_operator_name] = ACTIONS(2340), }, [1605] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2355), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2357), + [sym_auto] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2355), + }, + [1606] = { + [anon_sym_SEMI] = ACTIONS(4821), + [sym_comment] = ACTIONS(49), + }, + [1607] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2373), + [sym_auto] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [sym_operator_name] = ACTIONS(2371), + }, + [1608] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2400), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1624), @@ -65918,7 +66037,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1624), [sym_preproc_directive] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2400), [anon_sym_typedef] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_STAR] = ACTIONS(1622), @@ -65953,355 +66072,355 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [1606] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [sym_operator_name] = ACTIONS(2476), + [1609] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_template] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [sym_operator_name] = ACTIONS(2478), }, - [1607] = { + [1610] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4809), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4823), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1608] = { - [anon_sym_SEMI] = ACTIONS(4809), + [1611] = { + [anon_sym_SEMI] = ACTIONS(4823), [sym_comment] = ACTIONS(49), }, - [1609] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_template] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [sym_operator_name] = ACTIONS(2579), + [1612] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [sym_operator_name] = ACTIONS(2581), }, - [1610] = { + [1613] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4811), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4825), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1611] = { - [anon_sym_SEMI] = ACTIONS(4811), + [1614] = { + [anon_sym_SEMI] = ACTIONS(4825), [sym_comment] = ACTIONS(49), }, - [1612] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [sym_operator_name] = ACTIONS(2585), + [1615] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [sym_operator_name] = ACTIONS(2587), }, - [1613] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(3176), + [1616] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [sym_operator_name] = ACTIONS(3182), }, - [1614] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_mutable] = ACTIONS(3334), - [anon_sym_explicit] = ACTIONS(3334), - [anon_sym_constexpr] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3334), - [sym_auto] = ACTIONS(3334), - [anon_sym_typename] = ACTIONS(3334), - [anon_sym_template] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_COLON_COLON] = ACTIONS(3332), - [sym_operator_name] = ACTIONS(3332), + [1617] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3340), + [sym_preproc_directive] = ACTIONS(3340), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_explicit] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3340), + [sym_auto] = ACTIONS(3340), + [anon_sym_typename] = ACTIONS(3340), + [anon_sym_template] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [sym_operator_name] = ACTIONS(3338), }, - [1615] = { - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3533), + [1618] = { + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_STAR] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3539), [sym_comment] = ACTIONS(49), }, - [1616] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(4813), + [1619] = { + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(4827), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [1617] = { - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_COLON] = ACTIONS(3772), - [sym_identifier] = ACTIONS(3770), + [1620] = { + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3778), + [sym_identifier] = ACTIONS(3776), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(3770), + [anon_sym_COLON_COLON] = ACTIONS(3776), }, - [1618] = { - [anon_sym_LPAREN] = ACTIONS(4815), - [anon_sym_RPAREN] = ACTIONS(4815), - [anon_sym_SEMI] = ACTIONS(4815), - [anon_sym_LBRACK] = ACTIONS(4815), + [1621] = { + [anon_sym_LPAREN] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4829), + [anon_sym_SEMI] = ACTIONS(4829), + [anon_sym_LBRACK] = ACTIONS(4829), [sym_comment] = ACTIONS(49), }, - [1619] = { + [1622] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4817), + [anon_sym_RBRACK] = ACTIONS(4831), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -66337,86 +66456,86 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1620] = { - [sym__abstract_declarator] = STATE(2116), - [sym_abstract_pointer_declarator] = STATE(2116), - [sym_abstract_function_declarator] = STATE(2116), - [sym_abstract_array_declarator] = STATE(2116), - [sym_parameter_list] = STATE(1623), - [sym_abstract_reference_declarator] = STATE(2116), + [1623] = { + [sym__abstract_declarator] = STATE(2122), + [sym_abstract_pointer_declarator] = STATE(2122), + [sym_abstract_function_declarator] = STATE(2122), + [sym_abstract_array_declarator] = STATE(2122), + [sym_parameter_list] = STATE(1626), + [sym_abstract_reference_declarator] = STATE(2122), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3523), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [1621] = { - [sym__abstract_declarator] = STATE(2117), - [sym_abstract_pointer_declarator] = STATE(2117), - [sym_abstract_function_declarator] = STATE(2117), - [sym_abstract_array_declarator] = STATE(2117), - [sym_parameter_list] = STATE(1623), - [sym_abstract_reference_declarator] = STATE(2117), + [1624] = { + [sym__abstract_declarator] = STATE(2123), + [sym_abstract_pointer_declarator] = STATE(2123), + [sym_abstract_function_declarator] = STATE(2123), + [sym_abstract_array_declarator] = STATE(2123), + [sym_parameter_list] = STATE(1626), + [sym_abstract_reference_declarator] = STATE(2123), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_STAR] = ACTIONS(3517), + [anon_sym_STAR] = ACTIONS(3523), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(3519), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(3525), + [anon_sym_AMP_AMP] = ACTIONS(3527), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [1622] = { - [sym_parameter_list] = STATE(2118), + [1625] = { + [sym_parameter_list] = STATE(2124), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), + [sym_noexcept] = ACTIONS(4364), }, - [1623] = { - [sym_type_qualifier] = STATE(2119), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2119), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [1626] = { + [sym_type_qualifier] = STATE(2125), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2125), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [1624] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1624), + [1627] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1627), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), @@ -66427,9 +66546,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(4819), - [anon_sym_long] = ACTIONS(4819), - [anon_sym_short] = ACTIONS(4819), + [anon_sym_unsigned] = ACTIONS(4833), + [anon_sym_long] = ACTIONS(4833), + [anon_sym_short] = ACTIONS(4833), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -66438,44 +66557,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [1625] = { - [anon_sym_LPAREN] = ACTIONS(4822), - [anon_sym_COMMA] = ACTIONS(4822), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_extern] = ACTIONS(4824), - [anon_sym_LBRACE] = ACTIONS(4822), - [anon_sym_STAR] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_static] = ACTIONS(4824), - [anon_sym_register] = ACTIONS(4824), - [anon_sym_inline] = ACTIONS(4824), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_explicit] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_COLON] = ACTIONS(4824), - [anon_sym_AMP] = ACTIONS(4824), - [anon_sym_AMP_AMP] = ACTIONS(4822), - [anon_sym_TILDE] = ACTIONS(4822), - [anon_sym_GT] = ACTIONS(4822), - [sym_identifier] = ACTIONS(4824), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4822), - [sym_operator_name] = ACTIONS(4822), + [1628] = { + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_extern] = ACTIONS(4838), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_static] = ACTIONS(4838), + [anon_sym_register] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_const] = ACTIONS(4838), + [anon_sym_restrict] = ACTIONS(4838), + [anon_sym_volatile] = ACTIONS(4838), + [anon_sym__Atomic] = ACTIONS(4838), + [anon_sym_mutable] = ACTIONS(4838), + [anon_sym_explicit] = ACTIONS(4838), + [anon_sym_constexpr] = ACTIONS(4838), + [anon_sym_COLON] = ACTIONS(4838), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [sym_identifier] = ACTIONS(4838), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [sym_operator_name] = ACTIONS(4836), }, - [1626] = { - [sym_enumerator] = STATE(1029), + [1629] = { + [sym_enumerator] = STATE(1030), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [1627] = { + [1630] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(2120), + [sym_type_definition] = STATE(2126), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -66488,32 +66607,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(2120), - [sym_field_declaration] = STATE(2120), + [sym__field_declaration_list_item] = STATE(2126), + [sym_field_declaration] = STATE(2126), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(2120), + [sym_template_declaration] = STATE(2126), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(2120), - [sym_access_specifier] = STATE(2120), + [sym_friend_declaration] = STATE(2126), + [sym_access_specifier] = STATE(2126), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(2120), - [sym_alias_declaration] = STATE(2120), + [sym_using_declaration] = STATE(2126), + [sym_alias_declaration] = STATE(2126), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2120), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2126), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4826), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4840), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), @@ -66553,12 +66672,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1628] = { + [1631] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(2121), - [sym_preproc_elif_in_field_declaration_list] = STATE(2122), - [sym_type_definition] = STATE(2123), + [sym_preproc_else_in_field_declaration_list] = STATE(2127), + [sym_preproc_elif_in_field_declaration_list] = STATE(2128), + [sym_type_definition] = STATE(2129), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -66571,36 +66690,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(2123), - [sym_field_declaration] = STATE(2123), + [sym__field_declaration_list_item] = STATE(2129), + [sym_field_declaration] = STATE(2129), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(2123), + [sym_template_declaration] = STATE(2129), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(2123), - [sym_access_specifier] = STATE(2123), + [sym_friend_declaration] = STATE(2129), + [sym_access_specifier] = STATE(2129), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(2123), - [sym_alias_declaration] = STATE(2123), + [sym_using_declaration] = STATE(2129), + [sym_alias_declaration] = STATE(2129), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2123), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2129), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4828), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4842), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -66638,156 +66757,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1629] = { - [anon_sym_LPAREN] = ACTIONS(4830), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4832), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4830), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4830), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4830), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4830), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4830), - [anon_sym_typedef] = ACTIONS(4832), - [anon_sym_extern] = ACTIONS(4832), - [anon_sym_RBRACE] = ACTIONS(4830), - [anon_sym_STAR] = ACTIONS(4830), - [anon_sym_static] = ACTIONS(4832), - [anon_sym_register] = ACTIONS(4832), - [anon_sym_inline] = ACTIONS(4832), - [anon_sym_const] = ACTIONS(4832), - [anon_sym_restrict] = ACTIONS(4832), - [anon_sym_volatile] = ACTIONS(4832), - [anon_sym__Atomic] = ACTIONS(4832), - [anon_sym_mutable] = ACTIONS(4832), - [anon_sym_explicit] = ACTIONS(4832), - [anon_sym_constexpr] = ACTIONS(4832), - [anon_sym_unsigned] = ACTIONS(4832), - [anon_sym_long] = ACTIONS(4832), - [anon_sym_short] = ACTIONS(4832), - [sym_primitive_type] = ACTIONS(4832), - [anon_sym_enum] = ACTIONS(4832), - [anon_sym_struct] = ACTIONS(4832), - [anon_sym_union] = ACTIONS(4832), - [anon_sym_AMP] = ACTIONS(4832), - [anon_sym_AMP_AMP] = ACTIONS(4830), - [anon_sym_TILDE] = ACTIONS(4830), - [sym_identifier] = ACTIONS(4832), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4832), - [anon_sym_public] = ACTIONS(4832), - [sym_auto] = ACTIONS(4832), - [anon_sym_typename] = ACTIONS(4832), - [anon_sym_template] = ACTIONS(4832), - [anon_sym_friend] = ACTIONS(4832), - [anon_sym_private] = ACTIONS(4832), - [anon_sym_protected] = ACTIONS(4832), - [anon_sym_using] = ACTIONS(4832), - [anon_sym_COLON_COLON] = ACTIONS(4830), - [sym_operator_name] = ACTIONS(4830), + [1632] = { + [anon_sym_LPAREN] = ACTIONS(4844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4846), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4844), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4844), + [anon_sym_typedef] = ACTIONS(4846), + [anon_sym_extern] = ACTIONS(4846), + [anon_sym_RBRACE] = ACTIONS(4844), + [anon_sym_STAR] = ACTIONS(4844), + [anon_sym_static] = ACTIONS(4846), + [anon_sym_register] = ACTIONS(4846), + [anon_sym_inline] = ACTIONS(4846), + [anon_sym_const] = ACTIONS(4846), + [anon_sym_restrict] = ACTIONS(4846), + [anon_sym_volatile] = ACTIONS(4846), + [anon_sym__Atomic] = ACTIONS(4846), + [anon_sym_mutable] = ACTIONS(4846), + [anon_sym_explicit] = ACTIONS(4846), + [anon_sym_constexpr] = ACTIONS(4846), + [anon_sym_unsigned] = ACTIONS(4846), + [anon_sym_long] = ACTIONS(4846), + [anon_sym_short] = ACTIONS(4846), + [sym_primitive_type] = ACTIONS(4846), + [anon_sym_enum] = ACTIONS(4846), + [anon_sym_struct] = ACTIONS(4846), + [anon_sym_union] = ACTIONS(4846), + [anon_sym_AMP] = ACTIONS(4846), + [anon_sym_AMP_AMP] = ACTIONS(4844), + [anon_sym_TILDE] = ACTIONS(4844), + [sym_identifier] = ACTIONS(4846), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4846), + [anon_sym_public] = ACTIONS(4846), + [sym_auto] = ACTIONS(4846), + [anon_sym_typename] = ACTIONS(4846), + [anon_sym_template] = ACTIONS(4846), + [anon_sym_friend] = ACTIONS(4846), + [anon_sym_private] = ACTIONS(4846), + [anon_sym_protected] = ACTIONS(4846), + [anon_sym_using] = ACTIONS(4846), + [anon_sym_COLON_COLON] = ACTIONS(4844), + [sym_operator_name] = ACTIONS(4844), }, - [1630] = { - [anon_sym_LPAREN] = ACTIONS(4834), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4836), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4834), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4834), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4834), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4834), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4834), - [anon_sym_typedef] = ACTIONS(4836), - [anon_sym_extern] = ACTIONS(4836), - [anon_sym_RBRACE] = ACTIONS(4834), - [anon_sym_STAR] = ACTIONS(4834), - [anon_sym_static] = ACTIONS(4836), - [anon_sym_register] = ACTIONS(4836), - [anon_sym_inline] = ACTIONS(4836), - [anon_sym_const] = ACTIONS(4836), - [anon_sym_restrict] = ACTIONS(4836), - [anon_sym_volatile] = ACTIONS(4836), - [anon_sym__Atomic] = ACTIONS(4836), - [anon_sym_mutable] = ACTIONS(4836), - [anon_sym_explicit] = ACTIONS(4836), - [anon_sym_constexpr] = ACTIONS(4836), - [anon_sym_unsigned] = ACTIONS(4836), - [anon_sym_long] = ACTIONS(4836), - [anon_sym_short] = ACTIONS(4836), - [sym_primitive_type] = ACTIONS(4836), - [anon_sym_enum] = ACTIONS(4836), - [anon_sym_struct] = ACTIONS(4836), - [anon_sym_union] = ACTIONS(4836), - [anon_sym_AMP] = ACTIONS(4836), - [anon_sym_AMP_AMP] = ACTIONS(4834), - [anon_sym_TILDE] = ACTIONS(4834), - [sym_identifier] = ACTIONS(4836), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4836), - [anon_sym_public] = ACTIONS(4836), - [sym_auto] = ACTIONS(4836), - [anon_sym_typename] = ACTIONS(4836), - [anon_sym_template] = ACTIONS(4836), - [anon_sym_friend] = ACTIONS(4836), - [anon_sym_private] = ACTIONS(4836), - [anon_sym_protected] = ACTIONS(4836), - [anon_sym_using] = ACTIONS(4836), - [anon_sym_COLON_COLON] = ACTIONS(4834), - [sym_operator_name] = ACTIONS(4834), + [1633] = { + [anon_sym_LPAREN] = ACTIONS(4848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4850), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4848), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4848), + [anon_sym_typedef] = ACTIONS(4850), + [anon_sym_extern] = ACTIONS(4850), + [anon_sym_RBRACE] = ACTIONS(4848), + [anon_sym_STAR] = ACTIONS(4848), + [anon_sym_static] = ACTIONS(4850), + [anon_sym_register] = ACTIONS(4850), + [anon_sym_inline] = ACTIONS(4850), + [anon_sym_const] = ACTIONS(4850), + [anon_sym_restrict] = ACTIONS(4850), + [anon_sym_volatile] = ACTIONS(4850), + [anon_sym__Atomic] = ACTIONS(4850), + [anon_sym_mutable] = ACTIONS(4850), + [anon_sym_explicit] = ACTIONS(4850), + [anon_sym_constexpr] = ACTIONS(4850), + [anon_sym_unsigned] = ACTIONS(4850), + [anon_sym_long] = ACTIONS(4850), + [anon_sym_short] = ACTIONS(4850), + [sym_primitive_type] = ACTIONS(4850), + [anon_sym_enum] = ACTIONS(4850), + [anon_sym_struct] = ACTIONS(4850), + [anon_sym_union] = ACTIONS(4850), + [anon_sym_AMP] = ACTIONS(4850), + [anon_sym_AMP_AMP] = ACTIONS(4848), + [anon_sym_TILDE] = ACTIONS(4848), + [sym_identifier] = ACTIONS(4850), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4850), + [anon_sym_public] = ACTIONS(4850), + [sym_auto] = ACTIONS(4850), + [anon_sym_typename] = ACTIONS(4850), + [anon_sym_template] = ACTIONS(4850), + [anon_sym_friend] = ACTIONS(4850), + [anon_sym_private] = ACTIONS(4850), + [anon_sym_protected] = ACTIONS(4850), + [anon_sym_using] = ACTIONS(4850), + [anon_sym_COLON_COLON] = ACTIONS(4848), + [sym_operator_name] = ACTIONS(4848), }, - [1631] = { - [anon_sym_LPAREN] = ACTIONS(4838), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4838), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4838), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4838), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4838), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4838), - [anon_sym_typedef] = ACTIONS(4840), - [anon_sym_extern] = ACTIONS(4840), - [anon_sym_RBRACE] = ACTIONS(4838), - [anon_sym_STAR] = ACTIONS(4838), - [anon_sym_static] = ACTIONS(4840), - [anon_sym_register] = ACTIONS(4840), - [anon_sym_inline] = ACTIONS(4840), - [anon_sym_const] = ACTIONS(4840), - [anon_sym_restrict] = ACTIONS(4840), - [anon_sym_volatile] = ACTIONS(4840), - [anon_sym__Atomic] = ACTIONS(4840), - [anon_sym_mutable] = ACTIONS(4840), - [anon_sym_explicit] = ACTIONS(4840), - [anon_sym_constexpr] = ACTIONS(4840), - [anon_sym_unsigned] = ACTIONS(4840), - [anon_sym_long] = ACTIONS(4840), - [anon_sym_short] = ACTIONS(4840), - [sym_primitive_type] = ACTIONS(4840), - [anon_sym_enum] = ACTIONS(4840), - [anon_sym_struct] = ACTIONS(4840), - [anon_sym_union] = ACTIONS(4840), - [anon_sym_AMP] = ACTIONS(4840), - [anon_sym_AMP_AMP] = ACTIONS(4838), - [anon_sym_TILDE] = ACTIONS(4838), - [sym_identifier] = ACTIONS(4840), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4840), - [anon_sym_public] = ACTIONS(4840), - [sym_auto] = ACTIONS(4840), - [anon_sym_typename] = ACTIONS(4840), - [anon_sym_template] = ACTIONS(4840), - [anon_sym_friend] = ACTIONS(4840), - [anon_sym_private] = ACTIONS(4840), - [anon_sym_protected] = ACTIONS(4840), - [anon_sym_using] = ACTIONS(4840), - [anon_sym_COLON_COLON] = ACTIONS(4838), - [sym_operator_name] = ACTIONS(4838), + [1634] = { + [anon_sym_LPAREN] = ACTIONS(4852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4854), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4852), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4852), + [anon_sym_typedef] = ACTIONS(4854), + [anon_sym_extern] = ACTIONS(4854), + [anon_sym_RBRACE] = ACTIONS(4852), + [anon_sym_STAR] = ACTIONS(4852), + [anon_sym_static] = ACTIONS(4854), + [anon_sym_register] = ACTIONS(4854), + [anon_sym_inline] = ACTIONS(4854), + [anon_sym_const] = ACTIONS(4854), + [anon_sym_restrict] = ACTIONS(4854), + [anon_sym_volatile] = ACTIONS(4854), + [anon_sym__Atomic] = ACTIONS(4854), + [anon_sym_mutable] = ACTIONS(4854), + [anon_sym_explicit] = ACTIONS(4854), + [anon_sym_constexpr] = ACTIONS(4854), + [anon_sym_unsigned] = ACTIONS(4854), + [anon_sym_long] = ACTIONS(4854), + [anon_sym_short] = ACTIONS(4854), + [sym_primitive_type] = ACTIONS(4854), + [anon_sym_enum] = ACTIONS(4854), + [anon_sym_struct] = ACTIONS(4854), + [anon_sym_union] = ACTIONS(4854), + [anon_sym_AMP] = ACTIONS(4854), + [anon_sym_AMP_AMP] = ACTIONS(4852), + [anon_sym_TILDE] = ACTIONS(4852), + [sym_identifier] = ACTIONS(4854), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4854), + [anon_sym_public] = ACTIONS(4854), + [sym_auto] = ACTIONS(4854), + [anon_sym_typename] = ACTIONS(4854), + [anon_sym_template] = ACTIONS(4854), + [anon_sym_friend] = ACTIONS(4854), + [anon_sym_private] = ACTIONS(4854), + [anon_sym_protected] = ACTIONS(4854), + [anon_sym_using] = ACTIONS(4854), + [anon_sym_COLON_COLON] = ACTIONS(4852), + [sym_operator_name] = ACTIONS(4852), }, - [1632] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4842), + [1635] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4856), [sym_comment] = ACTIONS(49), }, - [1633] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4844), + [1636] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4858), [sym_comment] = ACTIONS(49), }, - [1634] = { + [1637] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(1634), + [sym_type_definition] = STATE(1637), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -66800,419 +66919,419 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1634), - [sym_field_declaration] = STATE(1634), + [sym__field_declaration_list_item] = STATE(1637), + [sym_field_declaration] = STATE(1637), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1634), + [sym_template_declaration] = STATE(1637), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1634), - [sym_access_specifier] = STATE(1634), + [sym_friend_declaration] = STATE(1637), + [sym_access_specifier] = STATE(1637), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1634), - [sym_alias_declaration] = STATE(1634), + [sym_using_declaration] = STATE(1637), + [sym_alias_declaration] = STATE(1637), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1634), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1637), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), - [anon_sym_LPAREN] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2125), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2134), - [anon_sym_typedef] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_inline] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_restrict] = ACTIONS(2139), - [anon_sym_volatile] = ACTIONS(2139), - [anon_sym__Atomic] = ACTIONS(2139), - [anon_sym_mutable] = ACTIONS(2139), - [anon_sym_explicit] = ACTIONS(2139), - [anon_sym_constexpr] = ACTIONS(2139), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2166), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_public] = ACTIONS(2172), - [sym_auto] = ACTIONS(2145), - [anon_sym_typename] = ACTIONS(2175), - [anon_sym_template] = ACTIONS(2178), - [anon_sym_friend] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [sym_operator_name] = ACTIONS(2190), - }, - [1635] = { - [anon_sym_LPAREN] = ACTIONS(4846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4848), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4846), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4846), - [anon_sym_typedef] = ACTIONS(4848), - [anon_sym_extern] = ACTIONS(4848), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_STAR] = ACTIONS(4846), - [anon_sym_static] = ACTIONS(4848), - [anon_sym_register] = ACTIONS(4848), - [anon_sym_inline] = ACTIONS(4848), - [anon_sym_const] = ACTIONS(4848), - [anon_sym_restrict] = ACTIONS(4848), - [anon_sym_volatile] = ACTIONS(4848), - [anon_sym__Atomic] = ACTIONS(4848), - [anon_sym_mutable] = ACTIONS(4848), - [anon_sym_explicit] = ACTIONS(4848), - [anon_sym_constexpr] = ACTIONS(4848), - [anon_sym_unsigned] = ACTIONS(4848), - [anon_sym_long] = ACTIONS(4848), - [anon_sym_short] = ACTIONS(4848), - [sym_primitive_type] = ACTIONS(4848), - [anon_sym_enum] = ACTIONS(4848), - [anon_sym_struct] = ACTIONS(4848), - [anon_sym_union] = ACTIONS(4848), - [anon_sym_AMP] = ACTIONS(4848), - [anon_sym_AMP_AMP] = ACTIONS(4846), - [anon_sym_TILDE] = ACTIONS(4846), - [sym_identifier] = ACTIONS(4848), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4848), - [anon_sym_public] = ACTIONS(4848), - [sym_auto] = ACTIONS(4848), - [anon_sym_typename] = ACTIONS(4848), - [anon_sym_template] = ACTIONS(4848), - [anon_sym_friend] = ACTIONS(4848), - [anon_sym_private] = ACTIONS(4848), - [anon_sym_protected] = ACTIONS(4848), - [anon_sym_using] = ACTIONS(4848), - [anon_sym_COLON_COLON] = ACTIONS(4846), - [sym_operator_name] = ACTIONS(4846), - }, - [1636] = { - [anon_sym_LPAREN] = ACTIONS(4850), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4852), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4850), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4850), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4850), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4850), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4850), - [anon_sym_typedef] = ACTIONS(4852), - [anon_sym_extern] = ACTIONS(4852), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_STAR] = ACTIONS(4850), - [anon_sym_static] = ACTIONS(4852), - [anon_sym_register] = ACTIONS(4852), - [anon_sym_inline] = ACTIONS(4852), - [anon_sym_const] = ACTIONS(4852), - [anon_sym_restrict] = ACTIONS(4852), - [anon_sym_volatile] = ACTIONS(4852), - [anon_sym__Atomic] = ACTIONS(4852), - [anon_sym_mutable] = ACTIONS(4852), - [anon_sym_explicit] = ACTIONS(4852), - [anon_sym_constexpr] = ACTIONS(4852), - [anon_sym_unsigned] = ACTIONS(4852), - [anon_sym_long] = ACTIONS(4852), - [anon_sym_short] = ACTIONS(4852), - [sym_primitive_type] = ACTIONS(4852), - [anon_sym_enum] = ACTIONS(4852), - [anon_sym_struct] = ACTIONS(4852), - [anon_sym_union] = ACTIONS(4852), - [anon_sym_AMP] = ACTIONS(4852), - [anon_sym_AMP_AMP] = ACTIONS(4850), - [anon_sym_TILDE] = ACTIONS(4850), - [sym_identifier] = ACTIONS(4852), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4852), - [anon_sym_public] = ACTIONS(4852), - [sym_auto] = ACTIONS(4852), - [anon_sym_typename] = ACTIONS(4852), - [anon_sym_template] = ACTIONS(4852), - [anon_sym_friend] = ACTIONS(4852), - [anon_sym_private] = ACTIONS(4852), - [anon_sym_protected] = ACTIONS(4852), - [anon_sym_using] = ACTIONS(4852), - [anon_sym_COLON_COLON] = ACTIONS(4850), - [sym_operator_name] = ACTIONS(4850), - }, - [1637] = { - [anon_sym_LPAREN] = ACTIONS(4854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4854), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4854), - [anon_sym_typedef] = ACTIONS(4856), - [anon_sym_extern] = ACTIONS(4856), - [anon_sym_RBRACE] = ACTIONS(4854), - [anon_sym_STAR] = ACTIONS(4854), - [anon_sym_static] = ACTIONS(4856), - [anon_sym_register] = ACTIONS(4856), - [anon_sym_inline] = ACTIONS(4856), - [anon_sym_const] = ACTIONS(4856), - [anon_sym_restrict] = ACTIONS(4856), - [anon_sym_volatile] = ACTIONS(4856), - [anon_sym__Atomic] = ACTIONS(4856), - [anon_sym_mutable] = ACTIONS(4856), - [anon_sym_explicit] = ACTIONS(4856), - [anon_sym_constexpr] = ACTIONS(4856), - [anon_sym_unsigned] = ACTIONS(4856), - [anon_sym_long] = ACTIONS(4856), - [anon_sym_short] = ACTIONS(4856), - [sym_primitive_type] = ACTIONS(4856), - [anon_sym_enum] = ACTIONS(4856), - [anon_sym_struct] = ACTIONS(4856), - [anon_sym_union] = ACTIONS(4856), - [anon_sym_AMP] = ACTIONS(4856), - [anon_sym_AMP_AMP] = ACTIONS(4854), - [anon_sym_TILDE] = ACTIONS(4854), - [sym_identifier] = ACTIONS(4856), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4856), - [anon_sym_public] = ACTIONS(4856), - [sym_auto] = ACTIONS(4856), - [anon_sym_typename] = ACTIONS(4856), - [anon_sym_template] = ACTIONS(4856), - [anon_sym_friend] = ACTIONS(4856), - [anon_sym_private] = ACTIONS(4856), - [anon_sym_protected] = ACTIONS(4856), - [anon_sym_using] = ACTIONS(4856), - [anon_sym_COLON_COLON] = ACTIONS(4854), - [sym_operator_name] = ACTIONS(4854), + [anon_sym_LPAREN] = ACTIONS(2118), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2127), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2136), + [anon_sym_typedef] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_restrict] = ACTIONS(2141), + [anon_sym_volatile] = ACTIONS(2141), + [anon_sym__Atomic] = ACTIONS(2141), + [anon_sym_mutable] = ACTIONS(2141), + [anon_sym_explicit] = ACTIONS(2141), + [anon_sym_constexpr] = ACTIONS(2141), + [anon_sym_unsigned] = ACTIONS(2144), + [anon_sym_long] = ACTIONS(2144), + [anon_sym_short] = ACTIONS(2144), + [sym_primitive_type] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2168), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2171), + [anon_sym_public] = ACTIONS(2174), + [sym_auto] = ACTIONS(2147), + [anon_sym_typename] = ACTIONS(2177), + [anon_sym_template] = ACTIONS(2180), + [anon_sym_friend] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [sym_operator_name] = ACTIONS(2192), }, [1638] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4858), - [sym_comment] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(4860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4860), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4860), + [anon_sym_typedef] = ACTIONS(4862), + [anon_sym_extern] = ACTIONS(4862), + [anon_sym_RBRACE] = ACTIONS(4860), + [anon_sym_STAR] = ACTIONS(4860), + [anon_sym_static] = ACTIONS(4862), + [anon_sym_register] = ACTIONS(4862), + [anon_sym_inline] = ACTIONS(4862), + [anon_sym_const] = ACTIONS(4862), + [anon_sym_restrict] = ACTIONS(4862), + [anon_sym_volatile] = ACTIONS(4862), + [anon_sym__Atomic] = ACTIONS(4862), + [anon_sym_mutable] = ACTIONS(4862), + [anon_sym_explicit] = ACTIONS(4862), + [anon_sym_constexpr] = ACTIONS(4862), + [anon_sym_unsigned] = ACTIONS(4862), + [anon_sym_long] = ACTIONS(4862), + [anon_sym_short] = ACTIONS(4862), + [sym_primitive_type] = ACTIONS(4862), + [anon_sym_enum] = ACTIONS(4862), + [anon_sym_struct] = ACTIONS(4862), + [anon_sym_union] = ACTIONS(4862), + [anon_sym_AMP] = ACTIONS(4862), + [anon_sym_AMP_AMP] = ACTIONS(4860), + [anon_sym_TILDE] = ACTIONS(4860), + [sym_identifier] = ACTIONS(4862), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4862), + [anon_sym_public] = ACTIONS(4862), + [sym_auto] = ACTIONS(4862), + [anon_sym_typename] = ACTIONS(4862), + [anon_sym_template] = ACTIONS(4862), + [anon_sym_friend] = ACTIONS(4862), + [anon_sym_private] = ACTIONS(4862), + [anon_sym_protected] = ACTIONS(4862), + [anon_sym_using] = ACTIONS(4862), + [anon_sym_COLON_COLON] = ACTIONS(4860), + [sym_operator_name] = ACTIONS(4860), }, [1639] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4860), - [sym_comment] = ACTIONS(49), + [anon_sym_LPAREN] = ACTIONS(4864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4864), + [anon_sym_typedef] = ACTIONS(4866), + [anon_sym_extern] = ACTIONS(4866), + [anon_sym_RBRACE] = ACTIONS(4864), + [anon_sym_STAR] = ACTIONS(4864), + [anon_sym_static] = ACTIONS(4866), + [anon_sym_register] = ACTIONS(4866), + [anon_sym_inline] = ACTIONS(4866), + [anon_sym_const] = ACTIONS(4866), + [anon_sym_restrict] = ACTIONS(4866), + [anon_sym_volatile] = ACTIONS(4866), + [anon_sym__Atomic] = ACTIONS(4866), + [anon_sym_mutable] = ACTIONS(4866), + [anon_sym_explicit] = ACTIONS(4866), + [anon_sym_constexpr] = ACTIONS(4866), + [anon_sym_unsigned] = ACTIONS(4866), + [anon_sym_long] = ACTIONS(4866), + [anon_sym_short] = ACTIONS(4866), + [sym_primitive_type] = ACTIONS(4866), + [anon_sym_enum] = ACTIONS(4866), + [anon_sym_struct] = ACTIONS(4866), + [anon_sym_union] = ACTIONS(4866), + [anon_sym_AMP] = ACTIONS(4866), + [anon_sym_AMP_AMP] = ACTIONS(4864), + [anon_sym_TILDE] = ACTIONS(4864), + [sym_identifier] = ACTIONS(4866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4866), + [anon_sym_public] = ACTIONS(4866), + [sym_auto] = ACTIONS(4866), + [anon_sym_typename] = ACTIONS(4866), + [anon_sym_template] = ACTIONS(4866), + [anon_sym_friend] = ACTIONS(4866), + [anon_sym_private] = ACTIONS(4866), + [anon_sym_protected] = ACTIONS(4866), + [anon_sym_using] = ACTIONS(4866), + [anon_sym_COLON_COLON] = ACTIONS(4864), + [sym_operator_name] = ACTIONS(4864), }, [1640] = { - [anon_sym_LPAREN] = ACTIONS(4862), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4864), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4862), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4862), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4862), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4862), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4862), - [anon_sym_typedef] = ACTIONS(4864), - [anon_sym_extern] = ACTIONS(4864), - [anon_sym_RBRACE] = ACTIONS(4862), - [anon_sym_STAR] = ACTIONS(4862), - [anon_sym_static] = ACTIONS(4864), - [anon_sym_register] = ACTIONS(4864), - [anon_sym_inline] = ACTIONS(4864), - [anon_sym_const] = ACTIONS(4864), - [anon_sym_restrict] = ACTIONS(4864), - [anon_sym_volatile] = ACTIONS(4864), - [anon_sym__Atomic] = ACTIONS(4864), - [anon_sym_mutable] = ACTIONS(4864), - [anon_sym_explicit] = ACTIONS(4864), - [anon_sym_constexpr] = ACTIONS(4864), - [anon_sym_unsigned] = ACTIONS(4864), - [anon_sym_long] = ACTIONS(4864), - [anon_sym_short] = ACTIONS(4864), - [sym_primitive_type] = ACTIONS(4864), - [anon_sym_enum] = ACTIONS(4864), - [anon_sym_struct] = ACTIONS(4864), - [anon_sym_union] = ACTIONS(4864), - [anon_sym_AMP] = ACTIONS(4864), - [anon_sym_AMP_AMP] = ACTIONS(4862), - [anon_sym_TILDE] = ACTIONS(4862), - [sym_identifier] = ACTIONS(4864), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4864), - [anon_sym_public] = ACTIONS(4864), - [sym_auto] = ACTIONS(4864), - [anon_sym_typename] = ACTIONS(4864), - [anon_sym_template] = ACTIONS(4864), - [anon_sym_friend] = ACTIONS(4864), - [anon_sym_private] = ACTIONS(4864), - [anon_sym_protected] = ACTIONS(4864), - [anon_sym_using] = ACTIONS(4864), - [anon_sym_COLON_COLON] = ACTIONS(4862), - [sym_operator_name] = ACTIONS(4862), + [anon_sym_LPAREN] = ACTIONS(4868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4870), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4868), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4868), + [anon_sym_typedef] = ACTIONS(4870), + [anon_sym_extern] = ACTIONS(4870), + [anon_sym_RBRACE] = ACTIONS(4868), + [anon_sym_STAR] = ACTIONS(4868), + [anon_sym_static] = ACTIONS(4870), + [anon_sym_register] = ACTIONS(4870), + [anon_sym_inline] = ACTIONS(4870), + [anon_sym_const] = ACTIONS(4870), + [anon_sym_restrict] = ACTIONS(4870), + [anon_sym_volatile] = ACTIONS(4870), + [anon_sym__Atomic] = ACTIONS(4870), + [anon_sym_mutable] = ACTIONS(4870), + [anon_sym_explicit] = ACTIONS(4870), + [anon_sym_constexpr] = ACTIONS(4870), + [anon_sym_unsigned] = ACTIONS(4870), + [anon_sym_long] = ACTIONS(4870), + [anon_sym_short] = ACTIONS(4870), + [sym_primitive_type] = ACTIONS(4870), + [anon_sym_enum] = ACTIONS(4870), + [anon_sym_struct] = ACTIONS(4870), + [anon_sym_union] = ACTIONS(4870), + [anon_sym_AMP] = ACTIONS(4870), + [anon_sym_AMP_AMP] = ACTIONS(4868), + [anon_sym_TILDE] = ACTIONS(4868), + [sym_identifier] = ACTIONS(4870), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4870), + [anon_sym_public] = ACTIONS(4870), + [sym_auto] = ACTIONS(4870), + [anon_sym_typename] = ACTIONS(4870), + [anon_sym_template] = ACTIONS(4870), + [anon_sym_friend] = ACTIONS(4870), + [anon_sym_private] = ACTIONS(4870), + [anon_sym_protected] = ACTIONS(4870), + [anon_sym_using] = ACTIONS(4870), + [anon_sym_COLON_COLON] = ACTIONS(4868), + [sym_operator_name] = ACTIONS(4868), }, [1641] = { - [anon_sym_LPAREN] = ACTIONS(4866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4868), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4866), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4866), - [anon_sym_typedef] = ACTIONS(4868), - [anon_sym_extern] = ACTIONS(4868), - [anon_sym_RBRACE] = ACTIONS(4866), - [anon_sym_STAR] = ACTIONS(4866), - [anon_sym_static] = ACTIONS(4868), - [anon_sym_register] = ACTIONS(4868), - [anon_sym_inline] = ACTIONS(4868), - [anon_sym_const] = ACTIONS(4868), - [anon_sym_restrict] = ACTIONS(4868), - [anon_sym_volatile] = ACTIONS(4868), - [anon_sym__Atomic] = ACTIONS(4868), - [anon_sym_mutable] = ACTIONS(4868), - [anon_sym_explicit] = ACTIONS(4868), - [anon_sym_constexpr] = ACTIONS(4868), - [anon_sym_unsigned] = ACTIONS(4868), - [anon_sym_long] = ACTIONS(4868), - [anon_sym_short] = ACTIONS(4868), - [sym_primitive_type] = ACTIONS(4868), - [anon_sym_enum] = ACTIONS(4868), - [anon_sym_struct] = ACTIONS(4868), - [anon_sym_union] = ACTIONS(4868), - [anon_sym_AMP] = ACTIONS(4868), - [anon_sym_AMP_AMP] = ACTIONS(4866), - [anon_sym_TILDE] = ACTIONS(4866), - [sym_identifier] = ACTIONS(4868), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4868), - [anon_sym_public] = ACTIONS(4868), - [sym_auto] = ACTIONS(4868), - [anon_sym_typename] = ACTIONS(4868), - [anon_sym_template] = ACTIONS(4868), - [anon_sym_friend] = ACTIONS(4868), - [anon_sym_private] = ACTIONS(4868), - [anon_sym_protected] = ACTIONS(4868), - [anon_sym_using] = ACTIONS(4868), - [anon_sym_COLON_COLON] = ACTIONS(4866), - [sym_operator_name] = ACTIONS(4866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4872), + [sym_comment] = ACTIONS(49), }, [1642] = { - [anon_sym_LPAREN] = ACTIONS(4870), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4872), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4870), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4870), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4870), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4870), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4870), - [anon_sym_typedef] = ACTIONS(4872), - [anon_sym_extern] = ACTIONS(4872), - [anon_sym_RBRACE] = ACTIONS(4870), - [anon_sym_STAR] = ACTIONS(4870), - [anon_sym_static] = ACTIONS(4872), - [anon_sym_register] = ACTIONS(4872), - [anon_sym_inline] = ACTIONS(4872), - [anon_sym_const] = ACTIONS(4872), - [anon_sym_restrict] = ACTIONS(4872), - [anon_sym_volatile] = ACTIONS(4872), - [anon_sym__Atomic] = ACTIONS(4872), - [anon_sym_mutable] = ACTIONS(4872), - [anon_sym_explicit] = ACTIONS(4872), - [anon_sym_constexpr] = ACTIONS(4872), - [anon_sym_unsigned] = ACTIONS(4872), - [anon_sym_long] = ACTIONS(4872), - [anon_sym_short] = ACTIONS(4872), - [sym_primitive_type] = ACTIONS(4872), - [anon_sym_enum] = ACTIONS(4872), - [anon_sym_struct] = ACTIONS(4872), - [anon_sym_union] = ACTIONS(4872), - [anon_sym_AMP] = ACTIONS(4872), - [anon_sym_AMP_AMP] = ACTIONS(4870), - [anon_sym_TILDE] = ACTIONS(4870), - [sym_identifier] = ACTIONS(4872), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4872), - [anon_sym_public] = ACTIONS(4872), - [sym_auto] = ACTIONS(4872), - [anon_sym_typename] = ACTIONS(4872), - [anon_sym_template] = ACTIONS(4872), - [anon_sym_friend] = ACTIONS(4872), - [anon_sym_private] = ACTIONS(4872), - [anon_sym_protected] = ACTIONS(4872), - [anon_sym_using] = ACTIONS(4872), - [anon_sym_COLON_COLON] = ACTIONS(4870), - [sym_operator_name] = ACTIONS(4870), - }, - [1643] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4874), [sym_comment] = ACTIONS(49), }, - [1644] = { + [1643] = { + [anon_sym_LPAREN] = ACTIONS(4876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4878), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4876), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4876), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4876), + [anon_sym_typedef] = ACTIONS(4878), + [anon_sym_extern] = ACTIONS(4878), + [anon_sym_RBRACE] = ACTIONS(4876), + [anon_sym_STAR] = ACTIONS(4876), + [anon_sym_static] = ACTIONS(4878), + [anon_sym_register] = ACTIONS(4878), + [anon_sym_inline] = ACTIONS(4878), + [anon_sym_const] = ACTIONS(4878), + [anon_sym_restrict] = ACTIONS(4878), + [anon_sym_volatile] = ACTIONS(4878), + [anon_sym__Atomic] = ACTIONS(4878), + [anon_sym_mutable] = ACTIONS(4878), + [anon_sym_explicit] = ACTIONS(4878), + [anon_sym_constexpr] = ACTIONS(4878), + [anon_sym_unsigned] = ACTIONS(4878), + [anon_sym_long] = ACTIONS(4878), + [anon_sym_short] = ACTIONS(4878), + [sym_primitive_type] = ACTIONS(4878), + [anon_sym_enum] = ACTIONS(4878), + [anon_sym_struct] = ACTIONS(4878), + [anon_sym_union] = ACTIONS(4878), + [anon_sym_AMP] = ACTIONS(4878), + [anon_sym_AMP_AMP] = ACTIONS(4876), + [anon_sym_TILDE] = ACTIONS(4876), + [sym_identifier] = ACTIONS(4878), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4878), + [anon_sym_public] = ACTIONS(4878), + [sym_auto] = ACTIONS(4878), + [anon_sym_typename] = ACTIONS(4878), + [anon_sym_template] = ACTIONS(4878), + [anon_sym_friend] = ACTIONS(4878), + [anon_sym_private] = ACTIONS(4878), + [anon_sym_protected] = ACTIONS(4878), + [anon_sym_using] = ACTIONS(4878), + [anon_sym_COLON_COLON] = ACTIONS(4876), + [sym_operator_name] = ACTIONS(4876), + }, + [1644] = { + [anon_sym_LPAREN] = ACTIONS(4880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4882), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4880), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4880), + [anon_sym_typedef] = ACTIONS(4882), + [anon_sym_extern] = ACTIONS(4882), + [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_STAR] = ACTIONS(4880), + [anon_sym_static] = ACTIONS(4882), + [anon_sym_register] = ACTIONS(4882), + [anon_sym_inline] = ACTIONS(4882), + [anon_sym_const] = ACTIONS(4882), + [anon_sym_restrict] = ACTIONS(4882), + [anon_sym_volatile] = ACTIONS(4882), + [anon_sym__Atomic] = ACTIONS(4882), + [anon_sym_mutable] = ACTIONS(4882), + [anon_sym_explicit] = ACTIONS(4882), + [anon_sym_constexpr] = ACTIONS(4882), + [anon_sym_unsigned] = ACTIONS(4882), + [anon_sym_long] = ACTIONS(4882), + [anon_sym_short] = ACTIONS(4882), + [sym_primitive_type] = ACTIONS(4882), + [anon_sym_enum] = ACTIONS(4882), + [anon_sym_struct] = ACTIONS(4882), + [anon_sym_union] = ACTIONS(4882), + [anon_sym_AMP] = ACTIONS(4882), + [anon_sym_AMP_AMP] = ACTIONS(4880), + [anon_sym_TILDE] = ACTIONS(4880), + [sym_identifier] = ACTIONS(4882), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4882), + [anon_sym_public] = ACTIONS(4882), + [sym_auto] = ACTIONS(4882), + [anon_sym_typename] = ACTIONS(4882), + [anon_sym_template] = ACTIONS(4882), + [anon_sym_friend] = ACTIONS(4882), + [anon_sym_private] = ACTIONS(4882), + [anon_sym_protected] = ACTIONS(4882), + [anon_sym_using] = ACTIONS(4882), + [anon_sym_COLON_COLON] = ACTIONS(4880), + [sym_operator_name] = ACTIONS(4880), }, [1645] = { - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_friend] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [sym_operator_name] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(4884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4886), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4884), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4884), + [anon_sym_typedef] = ACTIONS(4886), + [anon_sym_extern] = ACTIONS(4886), + [anon_sym_RBRACE] = ACTIONS(4884), + [anon_sym_STAR] = ACTIONS(4884), + [anon_sym_static] = ACTIONS(4886), + [anon_sym_register] = ACTIONS(4886), + [anon_sym_inline] = ACTIONS(4886), + [anon_sym_const] = ACTIONS(4886), + [anon_sym_restrict] = ACTIONS(4886), + [anon_sym_volatile] = ACTIONS(4886), + [anon_sym__Atomic] = ACTIONS(4886), + [anon_sym_mutable] = ACTIONS(4886), + [anon_sym_explicit] = ACTIONS(4886), + [anon_sym_constexpr] = ACTIONS(4886), + [anon_sym_unsigned] = ACTIONS(4886), + [anon_sym_long] = ACTIONS(4886), + [anon_sym_short] = ACTIONS(4886), + [sym_primitive_type] = ACTIONS(4886), + [anon_sym_enum] = ACTIONS(4886), + [anon_sym_struct] = ACTIONS(4886), + [anon_sym_union] = ACTIONS(4886), + [anon_sym_AMP] = ACTIONS(4886), + [anon_sym_AMP_AMP] = ACTIONS(4884), + [anon_sym_TILDE] = ACTIONS(4884), + [sym_identifier] = ACTIONS(4886), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4886), + [anon_sym_public] = ACTIONS(4886), + [sym_auto] = ACTIONS(4886), + [anon_sym_typename] = ACTIONS(4886), + [anon_sym_template] = ACTIONS(4886), + [anon_sym_friend] = ACTIONS(4886), + [anon_sym_private] = ACTIONS(4886), + [anon_sym_protected] = ACTIONS(4886), + [anon_sym_using] = ACTIONS(4886), + [anon_sym_COLON_COLON] = ACTIONS(4884), + [sym_operator_name] = ACTIONS(4884), }, [1646] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4888), + [sym_comment] = ACTIONS(49), + }, + [1647] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4890), + [sym_comment] = ACTIONS(49), + }, + [1648] = { + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [anon_sym_public] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_template] = ACTIONS(1990), + [anon_sym_friend] = ACTIONS(1990), + [anon_sym_private] = ACTIONS(1990), + [anon_sym_protected] = ACTIONS(1990), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [sym_operator_name] = ACTIONS(1988), + }, + [1649] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4878), + [anon_sym_SEMI] = ACTIONS(4892), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [1647] = { + [1650] = { [anon_sym_LPAREN] = ACTIONS(522), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(524), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(522), @@ -67258,7 +67377,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(522), [sym_operator_name] = ACTIONS(522), }, - [1648] = { + [1651] = { [anon_sym_LPAREN] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1261), @@ -67304,17 +67423,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1261), [sym_operator_name] = ACTIONS(1261), }, - [1649] = { - [sym_preproc_include] = STATE(1081), - [sym_preproc_def] = STATE(1081), - [sym_preproc_function_def] = STATE(1081), - [sym_preproc_call] = STATE(1081), + [1652] = { + [sym_preproc_include] = STATE(1082), + [sym_preproc_def] = STATE(1082), + [sym_preproc_function_def] = STATE(1082), + [sym_preproc_call] = STATE(1082), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(1081), - [sym_type_definition] = STATE(1081), + [sym_declaration] = STATE(1082), + [sym_type_definition] = STATE(1082), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(1081), + [sym_compound_statement] = STATE(1082), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -67322,18 +67441,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1081), - [sym_expression_statement] = STATE(1081), - [sym_if_statement] = STATE(1081), - [sym_switch_statement] = STATE(1081), - [sym_case_statement] = STATE(1081), - [sym_while_statement] = STATE(1081), - [sym_do_statement] = STATE(1081), - [sym_for_statement] = STATE(1081), - [sym_return_statement] = STATE(1081), - [sym_break_statement] = STATE(1081), - [sym_continue_statement] = STATE(1081), - [sym_goto_statement] = STATE(1081), + [sym_labeled_statement] = STATE(1082), + [sym_expression_statement] = STATE(1082), + [sym_if_statement] = STATE(1082), + [sym_switch_statement] = STATE(1082), + [sym_case_statement] = STATE(1082), + [sym_while_statement] = STATE(1082), + [sym_do_statement] = STATE(1082), + [sym_for_statement] = STATE(1082), + [sym_return_statement] = STATE(1082), + [sym_break_statement] = STATE(1082), + [sym_continue_statement] = STATE(1082), + [sym_goto_statement] = STATE(1082), [sym__expression] = STATE(669), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(669), @@ -67357,14 +67476,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), [sym_concatenated_string] = STATE(669), - [sym__empty_declaration] = STATE(1081), + [sym__empty_declaration] = STATE(1082), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1081), + [sym_structured_binding_declaration] = STATE(1082), [sym_template_type] = STATE(415), [sym_template_function] = STATE(669), - [sym_for_range_loop] = STATE(1081), + [sym_for_range_loop] = STATE(1082), [sym_new_expression] = STATE(669), [sym_delete_expression] = STATE(669), [sym_lambda_expression] = STATE(669), @@ -67372,7 +67491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1081), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1082), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [aux_sym_initializer_pair_repeat1] = STATE(671), @@ -67389,7 +67508,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(1271), - [anon_sym_RBRACE] = ACTIONS(4880), + [anon_sym_RBRACE] = ACTIONS(4894), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_static] = ACTIONS(154), @@ -67445,7 +67564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1297), [sym_nullptr] = ACTIONS(1293), }, - [1650] = { + [1653] = { [anon_sym_LPAREN] = ACTIONS(1305), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1307), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1305), @@ -67491,93 +67610,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1305), [sym_operator_name] = ACTIONS(1305), }, - [1651] = { + [1654] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(4882), + [anon_sym_SEMI] = ACTIONS(4896), [sym_comment] = ACTIONS(49), }, - [1652] = { - [anon_sym_SEMI] = ACTIONS(4884), + [1655] = { + [anon_sym_SEMI] = ACTIONS(4898), [sym_comment] = ACTIONS(49), }, - [1653] = { - [anon_sym_LPAREN] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2369), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2371), - [anon_sym_public] = ACTIONS(2371), - [sym_auto] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_friend] = ACTIONS(2371), - [anon_sym_private] = ACTIONS(2371), - [anon_sym_protected] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [sym_operator_name] = ACTIONS(2369), + [1656] = { + [anon_sym_LPAREN] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2371), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2371), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2373), + [anon_sym_public] = ACTIONS(2373), + [sym_auto] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_friend] = ACTIONS(2373), + [anon_sym_private] = ACTIONS(2373), + [anon_sym_protected] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [sym_operator_name] = ACTIONS(2371), }, - [1654] = { - [sym_parameter_list] = STATE(1657), + [1657] = { + [sym_parameter_list] = STATE(1660), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(2086), [sym_comment] = ACTIONS(49), }, - [1655] = { - [sym_parameter_list] = STATE(1657), + [1658] = { + [sym_parameter_list] = STATE(1660), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(2084), + [anon_sym_RPAREN] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(2086), [sym_comment] = ACTIONS(49), }, - [1656] = { - [anon_sym_LPAREN] = ACTIONS(4886), - [anon_sym_COMMA] = ACTIONS(4886), - [anon_sym_RPAREN] = ACTIONS(4886), - [anon_sym_SEMI] = ACTIONS(4886), - [anon_sym_LBRACE] = ACTIONS(4886), - [anon_sym_LBRACK] = ACTIONS(4886), - [anon_sym_COLON] = ACTIONS(4886), + [1659] = { + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_COMMA] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4900), + [anon_sym_SEMI] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4900), + [anon_sym_LBRACK] = ACTIONS(4900), + [anon_sym_COLON] = ACTIONS(4900), [sym_comment] = ACTIONS(49), }, - [1657] = { - [sym_type_qualifier] = STATE(2134), - [sym_trailing_return_type] = STATE(2134), - [aux_sym_function_declarator_repeat1] = STATE(2134), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_RPAREN] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), + [1660] = { + [sym_type_qualifier] = STATE(2140), + [sym_trailing_return_type] = STATE(2140), + [aux_sym_function_declarator_repeat1] = STATE(2140), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_RPAREN] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3645), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -67587,151 +67706,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(845), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4888), + [sym_noexcept] = ACTIONS(4902), }, - [1658] = { - [anon_sym_LPAREN] = ACTIONS(4890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4892), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4890), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4890), - [anon_sym_typedef] = ACTIONS(4892), - [anon_sym_extern] = ACTIONS(4892), - [anon_sym_RBRACE] = ACTIONS(4890), - [anon_sym_STAR] = ACTIONS(4890), - [anon_sym_static] = ACTIONS(4892), - [anon_sym_register] = ACTIONS(4892), - [anon_sym_inline] = ACTIONS(4892), - [anon_sym_const] = ACTIONS(4892), - [anon_sym_restrict] = ACTIONS(4892), - [anon_sym_volatile] = ACTIONS(4892), - [anon_sym__Atomic] = ACTIONS(4892), - [anon_sym_mutable] = ACTIONS(4892), - [anon_sym_explicit] = ACTIONS(4892), - [anon_sym_constexpr] = ACTIONS(4892), - [anon_sym_unsigned] = ACTIONS(4892), - [anon_sym_long] = ACTIONS(4892), - [anon_sym_short] = ACTIONS(4892), - [sym_primitive_type] = ACTIONS(4892), - [anon_sym_enum] = ACTIONS(4892), - [anon_sym_struct] = ACTIONS(4892), - [anon_sym_union] = ACTIONS(4892), - [anon_sym_AMP] = ACTIONS(4892), - [anon_sym_AMP_AMP] = ACTIONS(4890), - [anon_sym_TILDE] = ACTIONS(4890), - [sym_identifier] = ACTIONS(4892), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4892), - [anon_sym_public] = ACTIONS(4892), - [sym_auto] = ACTIONS(4892), - [anon_sym_typename] = ACTIONS(4892), - [anon_sym_template] = ACTIONS(4892), - [anon_sym_friend] = ACTIONS(4892), - [anon_sym_private] = ACTIONS(4892), - [anon_sym_protected] = ACTIONS(4892), - [anon_sym_using] = ACTIONS(4892), - [anon_sym_COLON_COLON] = ACTIONS(4890), - [sym_operator_name] = ACTIONS(4890), + [1661] = { + [anon_sym_LPAREN] = ACTIONS(4904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4906), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4904), + [anon_sym_typedef] = ACTIONS(4906), + [anon_sym_extern] = ACTIONS(4906), + [anon_sym_RBRACE] = ACTIONS(4904), + [anon_sym_STAR] = ACTIONS(4904), + [anon_sym_static] = ACTIONS(4906), + [anon_sym_register] = ACTIONS(4906), + [anon_sym_inline] = ACTIONS(4906), + [anon_sym_const] = ACTIONS(4906), + [anon_sym_restrict] = ACTIONS(4906), + [anon_sym_volatile] = ACTIONS(4906), + [anon_sym__Atomic] = ACTIONS(4906), + [anon_sym_mutable] = ACTIONS(4906), + [anon_sym_explicit] = ACTIONS(4906), + [anon_sym_constexpr] = ACTIONS(4906), + [anon_sym_unsigned] = ACTIONS(4906), + [anon_sym_long] = ACTIONS(4906), + [anon_sym_short] = ACTIONS(4906), + [sym_primitive_type] = ACTIONS(4906), + [anon_sym_enum] = ACTIONS(4906), + [anon_sym_struct] = ACTIONS(4906), + [anon_sym_union] = ACTIONS(4906), + [anon_sym_AMP] = ACTIONS(4906), + [anon_sym_AMP_AMP] = ACTIONS(4904), + [anon_sym_TILDE] = ACTIONS(4904), + [sym_identifier] = ACTIONS(4906), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4906), + [anon_sym_public] = ACTIONS(4906), + [sym_auto] = ACTIONS(4906), + [anon_sym_typename] = ACTIONS(4906), + [anon_sym_template] = ACTIONS(4906), + [anon_sym_friend] = ACTIONS(4906), + [anon_sym_private] = ACTIONS(4906), + [anon_sym_protected] = ACTIONS(4906), + [anon_sym_using] = ACTIONS(4906), + [anon_sym_COLON_COLON] = ACTIONS(4904), + [sym_operator_name] = ACTIONS(4904), }, - [1659] = { - [anon_sym_LT] = ACTIONS(4894), + [1662] = { + [anon_sym_LT] = ACTIONS(4908), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1144), }, - [1660] = { - [sym__field_declarator] = STATE(2135), + [1663] = { + [sym__field_declarator] = STATE(2141), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(2135), + [sym_template_method] = STATE(2141), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3623), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(4897), + [sym_operator_name] = ACTIONS(4911), }, - [1661] = { - [sym__field_declarator] = STATE(2136), + [1664] = { + [sym__field_declarator] = STATE(2142), [sym_pointer_field_declarator] = STATE(549), [sym_function_field_declarator] = STATE(550), [sym_array_field_declarator] = STATE(551), [sym_reference_field_declarator] = STATE(552), [sym_template_type] = STATE(553), - [sym_template_method] = STATE(2136), + [sym_template_method] = STATE(2142), [sym_scoped_field_identifier] = STATE(554), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(553), [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(3613), - [anon_sym_AMP] = ACTIONS(3615), - [anon_sym_AMP_AMP] = ACTIONS(3617), + [anon_sym_STAR] = ACTIONS(3619), + [anon_sym_AMP] = ACTIONS(3621), + [anon_sym_AMP_AMP] = ACTIONS(3623), [sym_identifier] = ACTIONS(1041), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1043), - [sym_operator_name] = ACTIONS(4899), + [sym_operator_name] = ACTIONS(4913), }, - [1662] = { - [sym_parameter_list] = STATE(2137), + [1665] = { + [sym_parameter_list] = STATE(2143), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4901), - [anon_sym_SEMI] = ACTIONS(4901), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(4901), + [anon_sym_COMMA] = ACTIONS(4915), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(4915), [sym_comment] = ACTIONS(49), }, - [1663] = { - [anon_sym_LPAREN] = ACTIONS(4903), - [anon_sym_COMMA] = ACTIONS(4903), - [anon_sym_RPAREN] = ACTIONS(4903), - [anon_sym_SEMI] = ACTIONS(4903), - [anon_sym_LBRACE] = ACTIONS(4903), - [anon_sym_LBRACK] = ACTIONS(4903), - [anon_sym_COLON] = ACTIONS(4903), + [1666] = { + [anon_sym_LPAREN] = ACTIONS(4917), + [anon_sym_COMMA] = ACTIONS(4917), + [anon_sym_RPAREN] = ACTIONS(4917), + [anon_sym_SEMI] = ACTIONS(4917), + [anon_sym_LBRACE] = ACTIONS(4917), + [anon_sym_LBRACK] = ACTIONS(4917), + [anon_sym_COLON] = ACTIONS(4917), [sym_comment] = ACTIONS(49), }, - [1664] = { - [sym__expression] = STATE(2139), - [sym_conditional_expression] = STATE(2139), - [sym_assignment_expression] = STATE(2139), - [sym_pointer_expression] = STATE(2139), - [sym_logical_expression] = STATE(2139), - [sym_bitwise_expression] = STATE(2139), - [sym_equality_expression] = STATE(2139), - [sym_relational_expression] = STATE(2139), - [sym_shift_expression] = STATE(2139), - [sym_math_expression] = STATE(2139), - [sym_cast_expression] = STATE(2139), - [sym_sizeof_expression] = STATE(2139), - [sym_subscript_expression] = STATE(2139), - [sym_call_expression] = STATE(2139), - [sym_field_expression] = STATE(2139), - [sym_compound_literal_expression] = STATE(2139), - [sym_parenthesized_expression] = STATE(2139), - [sym_concatenated_string] = STATE(2139), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2139), - [sym_new_expression] = STATE(2139), - [sym_delete_expression] = STATE(2139), - [sym_lambda_expression] = STATE(2139), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4905), + [1667] = { + [sym__expression] = STATE(2145), + [sym_conditional_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2145), + [sym_pointer_expression] = STATE(2145), + [sym_logical_expression] = STATE(2145), + [sym_bitwise_expression] = STATE(2145), + [sym_equality_expression] = STATE(2145), + [sym_relational_expression] = STATE(2145), + [sym_shift_expression] = STATE(2145), + [sym_math_expression] = STATE(2145), + [sym_cast_expression] = STATE(2145), + [sym_sizeof_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_call_expression] = STATE(2145), + [sym_field_expression] = STATE(2145), + [sym_compound_literal_expression] = STATE(2145), + [sym_parenthesized_expression] = STATE(2145), + [sym_concatenated_string] = STATE(2145), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2145), + [sym_new_expression] = STATE(2145), + [sym_delete_expression] = STATE(2145), + [sym_lambda_expression] = STATE(2145), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4919), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4921), [anon_sym_AMP] = ACTIONS(568), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), @@ -67740,25 +67859,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(4905), - [sym_char_literal] = ACTIONS(4905), + [sym_number_literal] = ACTIONS(4919), + [sym_char_literal] = ACTIONS(4919), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4909), - [sym_false] = ACTIONS(4909), - [sym_null] = ACTIONS(4909), + [sym_true] = ACTIONS(4923), + [sym_false] = ACTIONS(4923), + [sym_null] = ACTIONS(4923), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4909), + [sym_nullptr] = ACTIONS(4923), }, - [1665] = { + [1668] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4907), + [anon_sym_RBRACK] = ACTIONS(4921), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -67794,83 +67913,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1666] = { + [1669] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4911), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4925), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1667] = { - [sym__type_specifier] = STATE(2142), - [sym_sized_type_specifier] = STATE(2142), - [sym_enum_specifier] = STATE(2142), - [sym_struct_specifier] = STATE(2142), - [sym_union_specifier] = STATE(2142), - [sym_macro_type_specifier] = STATE(2142), - [sym_class_specifier] = STATE(2142), - [sym_dependent_type] = STATE(2142), + [1670] = { + [sym__type_specifier] = STATE(2148), + [sym_sized_type_specifier] = STATE(2148), + [sym_enum_specifier] = STATE(2148), + [sym_struct_specifier] = STATE(2148), + [sym_union_specifier] = STATE(2148), + [sym_macro_type_specifier] = STATE(2148), + [sym_class_specifier] = STATE(2148), + [sym_dependent_type] = STATE(2148), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2143), - [anon_sym_unsigned] = ACTIONS(4913), - [anon_sym_long] = ACTIONS(4913), - [anon_sym_short] = ACTIONS(4913), - [sym_primitive_type] = ACTIONS(4915), + [aux_sym_sized_type_specifier_repeat1] = STATE(2149), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(4929), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(4915), - [anon_sym_typename] = ACTIONS(4917), + [sym_auto] = ACTIONS(4929), + [anon_sym_typename] = ACTIONS(4931), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1668] = { - [sym_type_qualifier] = STATE(2144), - [sym_trailing_return_type] = STATE(2144), - [aux_sym_function_declarator_repeat1] = STATE(2144), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_LBRACE] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), + [1671] = { + [sym_type_qualifier] = STATE(2150), + [sym_trailing_return_type] = STATE(2150), + [aux_sym_function_declarator_repeat1] = STATE(2150), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4933), + [anon_sym_LBRACE] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -67878,40 +67997,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4919), - [anon_sym_DASH_GT] = ACTIONS(3641), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(3647), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4921), + [sym_noexcept] = ACTIONS(4935), }, - [1669] = { - [sym__expression] = STATE(2145), - [sym_conditional_expression] = STATE(2145), - [sym_assignment_expression] = STATE(2145), - [sym_pointer_expression] = STATE(2145), - [sym_logical_expression] = STATE(2145), - [sym_bitwise_expression] = STATE(2145), - [sym_equality_expression] = STATE(2145), - [sym_relational_expression] = STATE(2145), - [sym_shift_expression] = STATE(2145), - [sym_math_expression] = STATE(2145), - [sym_cast_expression] = STATE(2145), - [sym_sizeof_expression] = STATE(2145), - [sym_subscript_expression] = STATE(2145), - [sym_call_expression] = STATE(2145), - [sym_field_expression] = STATE(2145), - [sym_compound_literal_expression] = STATE(2145), - [sym_parenthesized_expression] = STATE(2145), - [sym_concatenated_string] = STATE(2145), + [1672] = { + [sym__expression] = STATE(2151), + [sym_conditional_expression] = STATE(2151), + [sym_assignment_expression] = STATE(2151), + [sym_pointer_expression] = STATE(2151), + [sym_logical_expression] = STATE(2151), + [sym_bitwise_expression] = STATE(2151), + [sym_equality_expression] = STATE(2151), + [sym_relational_expression] = STATE(2151), + [sym_shift_expression] = STATE(2151), + [sym_math_expression] = STATE(2151), + [sym_cast_expression] = STATE(2151), + [sym_sizeof_expression] = STATE(2151), + [sym_subscript_expression] = STATE(2151), + [sym_call_expression] = STATE(2151), + [sym_field_expression] = STATE(2151), + [sym_compound_literal_expression] = STATE(2151), + [sym_parenthesized_expression] = STATE(2151), + [sym_concatenated_string] = STATE(2151), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2145), - [sym_new_expression] = STATE(2145), - [sym_delete_expression] = STATE(2145), - [sym_lambda_expression] = STATE(2145), + [sym_template_function] = STATE(2151), + [sym_new_expression] = STATE(2151), + [sym_delete_expression] = STATE(2151), + [sym_lambda_expression] = STATE(2151), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4923), + [sym_raw_string_literal] = ACTIONS(4937), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -67923,32 +68042,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4923), - [sym_char_literal] = ACTIONS(4923), + [sym_number_literal] = ACTIONS(4937), + [sym_char_literal] = ACTIONS(4937), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4925), - [sym_false] = ACTIONS(4925), - [sym_null] = ACTIONS(4925), + [sym_true] = ACTIONS(4939), + [sym_false] = ACTIONS(4939), + [sym_null] = ACTIONS(4939), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4925), + [sym_nullptr] = ACTIONS(4939), }, - [1670] = { - [aux_sym_field_declaration_repeat1] = STATE(1670), - [anon_sym_COMMA] = ACTIONS(4927), - [anon_sym_SEMI] = ACTIONS(4901), - [anon_sym_COLON] = ACTIONS(4901), + [1673] = { + [aux_sym_field_declaration_repeat1] = STATE(1673), + [anon_sym_COMMA] = ACTIONS(4941), + [anon_sym_SEMI] = ACTIONS(4915), + [anon_sym_COLON] = ACTIONS(4915), [sym_comment] = ACTIONS(49), }, - [1671] = { - [anon_sym_LT] = ACTIONS(4930), + [1674] = { + [anon_sym_LT] = ACTIONS(4944), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, - [1672] = { + [1675] = { [anon_sym_LPAREN] = ACTIONS(1111), [anon_sym_COMMA] = ACTIONS(1111), [anon_sym_SEMI] = ACTIONS(1111), @@ -67991,67 +68110,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1111), [sym_comment] = ACTIONS(49), }, - [1673] = { - [aux_sym_template_argument_list_repeat1] = STATE(2147), + [1676] = { + [aux_sym_template_argument_list_repeat1] = STATE(2153), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(4933), + [anon_sym_GT] = ACTIONS(4947), [sym_comment] = ACTIONS(49), }, - [1674] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [1677] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(1676), - [anon_sym_unsigned] = ACTIONS(3655), - [anon_sym_long] = ACTIONS(3655), - [anon_sym_short] = ACTIONS(3655), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(1679), + [anon_sym_unsigned] = ACTIONS(3661), + [anon_sym_long] = ACTIONS(3661), + [anon_sym_short] = ACTIONS(3661), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(3659), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(3665), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1675] = { - [sym__abstract_declarator] = STATE(2150), - [sym_abstract_pointer_declarator] = STATE(2150), - [sym_abstract_function_declarator] = STATE(2150), - [sym_abstract_array_declarator] = STATE(2150), - [sym_parameter_list] = STATE(2151), - [sym_abstract_reference_declarator] = STATE(2150), + [1678] = { + [sym__abstract_declarator] = STATE(2156), + [sym_abstract_pointer_declarator] = STATE(2156), + [sym_abstract_function_declarator] = STATE(2156), + [sym_abstract_array_declarator] = STATE(2156), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(2156), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(4949), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [1676] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2152), + [1679] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2158), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), [anon_sym_LBRACE] = ACTIONS(238), @@ -68064,165 +68183,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(4941), - [anon_sym_long] = ACTIONS(4941), - [anon_sym_short] = ACTIONS(4941), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(4955), + [anon_sym_long] = ACTIONS(4955), + [anon_sym_short] = ACTIONS(4955), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_COLON] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [1677] = { - [sym_type_qualifier] = STATE(1677), - [sym_trailing_return_type] = STATE(1677), - [aux_sym_function_declarator_repeat1] = STATE(1677), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(4943), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4946), + [1680] = { + [sym_type_qualifier] = STATE(1680), + [sym_trailing_return_type] = STATE(1680), + [aux_sym_function_declarator_repeat1] = STATE(1680), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(4957), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4960), }, - [1678] = { - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_friend] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(3176), + [1681] = { + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_friend] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [sym_operator_name] = ACTIONS(3182), }, - [1679] = { - [anon_sym_LPAREN] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3332), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_mutable] = ACTIONS(3334), - [anon_sym_explicit] = ACTIONS(3334), - [anon_sym_constexpr] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [sym_auto] = ACTIONS(3334), - [anon_sym_typename] = ACTIONS(3334), - [anon_sym_template] = ACTIONS(3334), - [anon_sym_friend] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_COLON_COLON] = ACTIONS(3332), - [sym_operator_name] = ACTIONS(3332), + [1682] = { + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3338), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_explicit] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [sym_auto] = ACTIONS(3340), + [anon_sym_typename] = ACTIONS(3340), + [anon_sym_template] = ACTIONS(3340), + [anon_sym_friend] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [sym_operator_name] = ACTIONS(3338), }, - [1680] = { - [anon_sym_COMMA] = ACTIONS(4949), - [anon_sym_LBRACE] = ACTIONS(4949), + [1683] = { + [anon_sym_COMMA] = ACTIONS(4963), + [anon_sym_LBRACE] = ACTIONS(4963), [sym_comment] = ACTIONS(49), }, - [1681] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1684] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1089), @@ -68235,67 +68354,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1682] = { - [anon_sym_RPAREN] = ACTIONS(4951), + [1685] = { + [anon_sym_RPAREN] = ACTIONS(4965), [sym_comment] = ACTIONS(49), }, - [1683] = { - [aux_sym_concatenated_string_repeat1] = STATE(1683), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_RPAREN] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(4953), + [1686] = { + [aux_sym_concatenated_string_repeat1] = STATE(1686), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(4967), [sym_comment] = ACTIONS(49), }, - [1684] = { + [1687] = { [anon_sym_LPAREN] = ACTIONS(1146), [anon_sym_COMMA] = ACTIONS(1146), [anon_sym_RPAREN] = ACTIONS(1146), @@ -68325,7 +68444,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CARET] = ACTIONS(1148), [anon_sym_EQ_EQ] = ACTIONS(1146), [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4239), [anon_sym_GT] = ACTIONS(1148), [anon_sym_LT_EQ] = ACTIONS(1146), [anon_sym_GT_EQ] = ACTIONS(1146), @@ -68342,7 +68461,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1144), }, - [1685] = { + [1688] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -68375,7 +68494,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4956), + [anon_sym_RBRACK] = ACTIONS(4970), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -68398,82 +68517,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1686] = { + [1689] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_RPAREN] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1687] = { - [sym__expression] = STATE(2155), - [sym_conditional_expression] = STATE(2155), - [sym_assignment_expression] = STATE(2155), - [sym_pointer_expression] = STATE(2155), - [sym_logical_expression] = STATE(2155), - [sym_bitwise_expression] = STATE(2155), - [sym_equality_expression] = STATE(2155), - [sym_relational_expression] = STATE(2155), - [sym_shift_expression] = STATE(2155), - [sym_math_expression] = STATE(2155), - [sym_cast_expression] = STATE(2155), - [sym_sizeof_expression] = STATE(2155), - [sym_subscript_expression] = STATE(2155), - [sym_call_expression] = STATE(2155), - [sym_field_expression] = STATE(2155), - [sym_compound_literal_expression] = STATE(2155), - [sym_parenthesized_expression] = STATE(2155), - [sym_concatenated_string] = STATE(2155), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2155), - [sym_new_expression] = STATE(2155), - [sym_delete_expression] = STATE(2155), - [sym_lambda_expression] = STATE(2155), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4958), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1690] = { + [sym__expression] = STATE(2161), + [sym_conditional_expression] = STATE(2161), + [sym_assignment_expression] = STATE(2161), + [sym_pointer_expression] = STATE(2161), + [sym_logical_expression] = STATE(2161), + [sym_bitwise_expression] = STATE(2161), + [sym_equality_expression] = STATE(2161), + [sym_relational_expression] = STATE(2161), + [sym_shift_expression] = STATE(2161), + [sym_math_expression] = STATE(2161), + [sym_cast_expression] = STATE(2161), + [sym_sizeof_expression] = STATE(2161), + [sym_subscript_expression] = STATE(2161), + [sym_call_expression] = STATE(2161), + [sym_field_expression] = STATE(2161), + [sym_compound_literal_expression] = STATE(2161), + [sym_parenthesized_expression] = STATE(2161), + [sym_concatenated_string] = STATE(2161), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2161), + [sym_new_expression] = STATE(2161), + [sym_delete_expression] = STATE(2161), + [sym_lambda_expression] = STATE(2161), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4972), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1091), [anon_sym_TILDE] = ACTIONS(1093), [anon_sym_PLUS] = ACTIONS(1095), @@ -68481,611 +68600,611 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(4958), - [sym_char_literal] = ACTIONS(4958), + [sym_number_literal] = ACTIONS(4972), + [sym_char_literal] = ACTIONS(4972), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(4960), - [sym_false] = ACTIONS(4960), - [sym_null] = ACTIONS(4960), + [sym_true] = ACTIONS(4974), + [sym_false] = ACTIONS(4974), + [sym_null] = ACTIONS(4974), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(4960), + [sym_nullptr] = ACTIONS(4974), }, - [1688] = { + [1691] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_RPAREN] = ACTIONS(4720), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1689] = { + [1692] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_RPAREN] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1690] = { + [1693] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(4962), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(4976), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1691] = { + [1694] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1692] = { + [1695] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1693] = { + [1696] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_RPAREN] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1694] = { + [1697] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1695] = { + [1698] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1696] = { + [1699] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RPAREN] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1697] = { + [1700] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1698] = { + [1701] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_RPAREN] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_RPAREN] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1699] = { + [1702] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_RPAREN] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1700] = { - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1805), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_COLON] = ACTIONS(1807), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1805), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [1703] = { + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_RPAREN] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_RBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1809), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, - [1701] = { - [sym_parameter_list] = STATE(1704), + [1704] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1702] = { - [sym_parameter_list] = STATE(1704), + [1705] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1703] = { - [anon_sym_LPAREN] = ACTIONS(4964), - [anon_sym_COMMA] = ACTIONS(4964), - [anon_sym_RPAREN] = ACTIONS(4964), - [anon_sym_SEMI] = ACTIONS(4964), - [anon_sym_LBRACE] = ACTIONS(4964), - [anon_sym_LBRACK] = ACTIONS(4964), - [anon_sym_EQ] = ACTIONS(4964), - [anon_sym_const] = ACTIONS(4966), - [anon_sym_restrict] = ACTIONS(4964), - [anon_sym_volatile] = ACTIONS(4964), - [anon_sym__Atomic] = ACTIONS(4964), - [anon_sym_mutable] = ACTIONS(4964), - [anon_sym_explicit] = ACTIONS(4964), - [anon_sym_constexpr] = ACTIONS(4964), - [anon_sym_COLON] = ACTIONS(4964), - [anon_sym_GT] = ACTIONS(4964), - [anon_sym_DASH_GT] = ACTIONS(4964), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4964), + [1706] = { + [anon_sym_LPAREN] = ACTIONS(4978), + [anon_sym_COMMA] = ACTIONS(4978), + [anon_sym_RPAREN] = ACTIONS(4978), + [anon_sym_SEMI] = ACTIONS(4978), + [anon_sym_LBRACE] = ACTIONS(4978), + [anon_sym_LBRACK] = ACTIONS(4978), + [anon_sym_EQ] = ACTIONS(4978), + [anon_sym_const] = ACTIONS(4980), + [anon_sym_restrict] = ACTIONS(4978), + [anon_sym_volatile] = ACTIONS(4978), + [anon_sym__Atomic] = ACTIONS(4978), + [anon_sym_mutable] = ACTIONS(4978), + [anon_sym_explicit] = ACTIONS(4978), + [anon_sym_constexpr] = ACTIONS(4978), + [anon_sym_COLON] = ACTIONS(4978), + [anon_sym_GT] = ACTIONS(4978), + [anon_sym_DASH_GT] = ACTIONS(4978), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4978), }, - [1704] = { - [sym_type_qualifier] = STATE(2157), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2157), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1707] = { + [sym_type_qualifier] = STATE(2163), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2163), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -69093,19 +69212,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3746), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4968), + [sym_noexcept] = ACTIONS(4982), }, - [1705] = { - [sym__type_specifier] = STATE(2158), - [sym_sized_type_specifier] = STATE(2158), - [sym_enum_specifier] = STATE(2158), - [sym_struct_specifier] = STATE(2158), - [sym_union_specifier] = STATE(2158), - [sym_macro_type_specifier] = STATE(2158), - [sym_class_specifier] = STATE(2158), - [sym_dependent_type] = STATE(2158), + [1708] = { + [sym__type_specifier] = STATE(2164), + [sym_sized_type_specifier] = STATE(2164), + [sym_enum_specifier] = STATE(2164), + [sym_struct_specifier] = STATE(2164), + [sym_union_specifier] = STATE(2164), + [sym_macro_type_specifier] = STATE(2164), + [sym_class_specifier] = STATE(2164), + [sym_dependent_type] = STATE(2164), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), @@ -69113,24 +69232,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1399), [anon_sym_long] = ACTIONS(1399), [anon_sym_short] = ACTIONS(1399), - [sym_primitive_type] = ACTIONS(4970), + [sym_primitive_type] = ACTIONS(4984), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(4970), + [sym_auto] = ACTIONS(4984), [anon_sym_typename] = ACTIONS(1407), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1706] = { - [sym_type_qualifier] = STATE(2159), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2159), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1709] = { + [sym_type_qualifier] = STATE(2165), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2165), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -69138,37 +69257,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3746), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4972), + [sym_noexcept] = ACTIONS(4986), }, - [1707] = { - [anon_sym_LPAREN] = ACTIONS(4974), - [anon_sym_COMMA] = ACTIONS(4974), - [anon_sym_RPAREN] = ACTIONS(4974), - [anon_sym_SEMI] = ACTIONS(4974), - [anon_sym_LBRACE] = ACTIONS(4974), - [anon_sym_LBRACK] = ACTIONS(4974), - [anon_sym_EQ] = ACTIONS(4974), - [anon_sym_const] = ACTIONS(4976), - [anon_sym_restrict] = ACTIONS(4974), - [anon_sym_volatile] = ACTIONS(4974), - [anon_sym__Atomic] = ACTIONS(4974), - [anon_sym_mutable] = ACTIONS(4974), - [anon_sym_explicit] = ACTIONS(4974), - [anon_sym_constexpr] = ACTIONS(4974), - [anon_sym_COLON] = ACTIONS(4974), - [anon_sym_GT] = ACTIONS(4974), - [anon_sym_DASH_GT] = ACTIONS(4974), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4974), + [1710] = { + [anon_sym_LPAREN] = ACTIONS(4988), + [anon_sym_COMMA] = ACTIONS(4988), + [anon_sym_RPAREN] = ACTIONS(4988), + [anon_sym_SEMI] = ACTIONS(4988), + [anon_sym_LBRACE] = ACTIONS(4988), + [anon_sym_LBRACK] = ACTIONS(4988), + [anon_sym_EQ] = ACTIONS(4988), + [anon_sym_const] = ACTIONS(4990), + [anon_sym_restrict] = ACTIONS(4988), + [anon_sym_volatile] = ACTIONS(4988), + [anon_sym__Atomic] = ACTIONS(4988), + [anon_sym_mutable] = ACTIONS(4988), + [anon_sym_explicit] = ACTIONS(4988), + [anon_sym_constexpr] = ACTIONS(4988), + [anon_sym_COLON] = ACTIONS(4988), + [anon_sym_GT] = ACTIONS(4988), + [anon_sym_DASH_GT] = ACTIONS(4988), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4988), }, - [1708] = { + [1711] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4992), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -69204,39 +69323,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1709] = { - [sym__expression] = STATE(2161), - [sym_conditional_expression] = STATE(2161), - [sym_assignment_expression] = STATE(2161), - [sym_pointer_expression] = STATE(2161), - [sym_logical_expression] = STATE(2161), - [sym_bitwise_expression] = STATE(2161), - [sym_equality_expression] = STATE(2161), - [sym_relational_expression] = STATE(2161), - [sym_shift_expression] = STATE(2161), - [sym_math_expression] = STATE(2161), - [sym_cast_expression] = STATE(2161), - [sym_sizeof_expression] = STATE(2161), - [sym_subscript_expression] = STATE(2161), - [sym_call_expression] = STATE(2161), - [sym_field_expression] = STATE(2161), - [sym_compound_literal_expression] = STATE(2161), - [sym_parenthesized_expression] = STATE(2161), - [sym_concatenated_string] = STATE(2161), + [1712] = { + [sym__expression] = STATE(2167), + [sym_conditional_expression] = STATE(2167), + [sym_assignment_expression] = STATE(2167), + [sym_pointer_expression] = STATE(2167), + [sym_logical_expression] = STATE(2167), + [sym_bitwise_expression] = STATE(2167), + [sym_equality_expression] = STATE(2167), + [sym_relational_expression] = STATE(2167), + [sym_shift_expression] = STATE(2167), + [sym_math_expression] = STATE(2167), + [sym_cast_expression] = STATE(2167), + [sym_sizeof_expression] = STATE(2167), + [sym_subscript_expression] = STATE(2167), + [sym_call_expression] = STATE(2167), + [sym_field_expression] = STATE(2167), + [sym_compound_literal_expression] = STATE(2167), + [sym_parenthesized_expression] = STATE(2167), + [sym_concatenated_string] = STATE(2167), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2161), - [sym_new_expression] = STATE(2161), - [sym_delete_expression] = STATE(2161), - [sym_lambda_expression] = STATE(2161), + [sym_template_function] = STATE(2167), + [sym_new_expression] = STATE(2167), + [sym_delete_expression] = STATE(2167), + [sym_lambda_expression] = STATE(2167), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4980), + [sym_raw_string_literal] = ACTIONS(4994), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(4978), + [anon_sym_RBRACK] = ACTIONS(4992), [anon_sym_AMP] = ACTIONS(568), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), @@ -69245,47 +69364,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(4980), - [sym_char_literal] = ACTIONS(4980), + [sym_number_literal] = ACTIONS(4994), + [sym_char_literal] = ACTIONS(4994), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4982), - [sym_false] = ACTIONS(4982), - [sym_null] = ACTIONS(4982), + [sym_true] = ACTIONS(4996), + [sym_false] = ACTIONS(4996), + [sym_null] = ACTIONS(4996), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4982), + [sym_nullptr] = ACTIONS(4996), }, - [1710] = { - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), - [anon_sym_const] = ACTIONS(4986), - [anon_sym_restrict] = ACTIONS(4984), - [anon_sym_volatile] = ACTIONS(4984), - [anon_sym__Atomic] = ACTIONS(4984), - [anon_sym_mutable] = ACTIONS(4984), - [anon_sym_explicit] = ACTIONS(4984), - [anon_sym_constexpr] = ACTIONS(4984), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(4984), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4984), + [1713] = { + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), + [anon_sym_const] = ACTIONS(5000), + [anon_sym_restrict] = ACTIONS(4998), + [anon_sym_volatile] = ACTIONS(4998), + [anon_sym__Atomic] = ACTIONS(4998), + [anon_sym_mutable] = ACTIONS(4998), + [anon_sym_explicit] = ACTIONS(4998), + [anon_sym_constexpr] = ACTIONS(4998), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(4998), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4998), }, - [1711] = { - [sym_type_qualifier] = STATE(1713), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1713), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [1714] = { + [sym_type_qualifier] = STATE(1716), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1716), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -69293,46 +69412,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(2286), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3766), + [sym_noexcept] = ACTIONS(3772), }, - [1712] = { - [sym__abstract_declarator] = STATE(2163), - [sym_abstract_pointer_declarator] = STATE(2163), - [sym_abstract_function_declarator] = STATE(2163), - [sym_abstract_array_declarator] = STATE(2163), + [1715] = { + [sym__abstract_declarator] = STATE(2169), + [sym_abstract_pointer_declarator] = STATE(2169), + [sym_abstract_function_declarator] = STATE(2169), + [sym_abstract_array_declarator] = STATE(2169), [sym_parameter_list] = STATE(598), - [sym_abstract_reference_declarator] = STATE(2163), + [sym_abstract_reference_declarator] = STATE(2169), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), + [anon_sym_COMMA] = ACTIONS(2841), [anon_sym_STAR] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1121), [anon_sym_AMP] = ACTIONS(1123), [anon_sym_AMP_AMP] = ACTIONS(1125), - [anon_sym_GT] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2841), [sym_comment] = ACTIONS(49), }, - [1713] = { - [sym_type_qualifier] = STATE(1713), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1713), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4996), + [1716] = { + [sym_type_qualifier] = STATE(1716), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1716), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5010), }, - [1714] = { + [1717] = { [sym__type_specifier] = STATE(93), [sym_sized_type_specifier] = STATE(93), [sym_enum_specifier] = STATE(93), @@ -69344,10 +69463,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1716), - [anon_sym_unsigned] = ACTIONS(3779), - [anon_sym_long] = ACTIONS(3779), - [anon_sym_short] = ACTIONS(3779), + [aux_sym_sized_type_specifier_repeat1] = STATE(1719), + [anon_sym_unsigned] = ACTIONS(3785), + [anon_sym_long] = ACTIONS(3785), + [anon_sym_short] = ACTIONS(3785), [sym_primitive_type] = ACTIONS(150), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), @@ -69356,26 +69475,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), [sym_auto] = ACTIONS(150), - [anon_sym_typename] = ACTIONS(3783), + [anon_sym_typename] = ACTIONS(3789), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1715] = { - [anon_sym_COMMA] = ACTIONS(4999), - [anon_sym_GT] = ACTIONS(4999), + [1718] = { + [anon_sym_COMMA] = ACTIONS(5013), + [anon_sym_GT] = ACTIONS(5013), [sym_comment] = ACTIONS(49), }, - [1716] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2164), + [1719] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), [anon_sym_COMMA] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(5001), - [anon_sym_long] = ACTIONS(5001), - [anon_sym_short] = ACTIONS(5001), + [anon_sym_unsigned] = ACTIONS(5015), + [anon_sym_long] = ACTIONS(5015), + [anon_sym_short] = ACTIONS(5015), [sym_primitive_type] = ACTIONS(244), [anon_sym_GT] = ACTIONS(238), [sym_identifier] = ACTIONS(1135), [sym_comment] = ACTIONS(49), }, - [1717] = { + [1720] = { [anon_sym_LPAREN] = ACTIONS(1146), [anon_sym_COMMA] = ACTIONS(1146), [anon_sym_LBRACE] = ACTIONS(1146), @@ -69385,114 +69504,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(1146), [sym_comment] = ACTIONS(49), }, - [1718] = { + [1721] = { [sym_argument_list] = STATE(802), - [aux_sym_argument_list_repeat1] = STATE(2166), + [aux_sym_argument_list_repeat1] = STATE(2172), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(5003), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(5017), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1719] = { - [aux_sym_argument_list_repeat1] = STATE(2166), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(5003), + [1722] = { + [aux_sym_argument_list_repeat1] = STATE(2172), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(5017), [sym_comment] = ACTIONS(49), }, - [1720] = { - [anon_sym_RBRACE] = ACTIONS(5005), + [1723] = { + [anon_sym_RBRACE] = ACTIONS(5019), [sym_comment] = ACTIONS(49), }, - [1721] = { - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_GT] = ACTIONS(2398), + [1724] = { + [anon_sym_COMMA] = ACTIONS(2400), + [anon_sym_GT] = ACTIONS(2400), [sym_comment] = ACTIONS(49), }, - [1722] = { + [1725] = { [sym_argument_list] = STATE(802), - [aux_sym_initializer_list_repeat1] = STATE(2169), + [aux_sym_initializer_list_repeat1] = STATE(2175), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5005), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(5019), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1723] = { - [aux_sym_initializer_list_repeat1] = STATE(2169), - [anon_sym_COMMA] = ACTIONS(5007), - [anon_sym_RBRACE] = ACTIONS(5005), + [1726] = { + [aux_sym_initializer_list_repeat1] = STATE(2175), + [anon_sym_COMMA] = ACTIONS(5021), + [anon_sym_RBRACE] = ACTIONS(5019), [sym_comment] = ACTIONS(49), }, - [1724] = { + [1727] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -69511,7 +69630,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(2170), + [sym_type_descriptor] = STATE(2176), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -69575,7 +69694,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1725] = { + [1728] = { [sym__expression] = STATE(727), [sym_conditional_expression] = STATE(727), [sym_assignment_expression] = STATE(727), @@ -69604,31 +69723,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1411), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(1411), [sym_char_literal] = ACTIONS(1411), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(1413), [sym_false] = ACTIONS(1413), [sym_null] = ACTIONS(1413), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(1413), }, - [1726] = { + [1729] = { [sym__expression] = STATE(757), [sym_conditional_expression] = STATE(757), [sym_assignment_expression] = STATE(757), @@ -69657,31 +69776,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(1459), [sym_char_literal] = ACTIONS(1459), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(1461), [sym_false] = ACTIONS(1461), [sym_null] = ACTIONS(1461), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(1461), }, - [1727] = { + [1730] = { [sym__expression] = STATE(758), [sym_conditional_expression] = STATE(758), [sym_assignment_expression] = STATE(758), @@ -69710,31 +69829,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(1463), [sym_char_literal] = ACTIONS(1463), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(1465), [sym_false] = ACTIONS(1465), [sym_null] = ACTIONS(1465), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(1465), }, - [1728] = { + [1731] = { [sym__expression] = STATE(759), [sym_conditional_expression] = STATE(759), [sym_assignment_expression] = STATE(759), @@ -69763,85 +69882,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(1467), [sym_char_literal] = ACTIONS(1467), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(1469), [sym_false] = ACTIONS(1469), [sym_null] = ACTIONS(1469), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(1469), }, - [1729] = { - [sym__expression] = STATE(2172), - [sym_conditional_expression] = STATE(2172), - [sym_assignment_expression] = STATE(2172), - [sym_pointer_expression] = STATE(2172), - [sym_logical_expression] = STATE(2172), - [sym_bitwise_expression] = STATE(2172), - [sym_equality_expression] = STATE(2172), - [sym_relational_expression] = STATE(2172), - [sym_shift_expression] = STATE(2172), - [sym_math_expression] = STATE(2172), - [sym_cast_expression] = STATE(2172), - [sym_sizeof_expression] = STATE(2172), - [sym_subscript_expression] = STATE(2172), - [sym_call_expression] = STATE(2172), - [sym_field_expression] = STATE(2172), - [sym_compound_literal_expression] = STATE(2172), - [sym_parenthesized_expression] = STATE(2172), - [sym_concatenated_string] = STATE(2172), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2172), - [sym_new_expression] = STATE(2172), - [sym_delete_expression] = STATE(2172), - [sym_lambda_expression] = STATE(2172), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5009), - [anon_sym_LPAREN] = ACTIONS(5011), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5009), - [sym_char_literal] = ACTIONS(5009), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5013), - [sym_false] = ACTIONS(5013), - [sym_null] = ACTIONS(5013), + [1732] = { + [sym__expression] = STATE(2178), + [sym_conditional_expression] = STATE(2178), + [sym_assignment_expression] = STATE(2178), + [sym_pointer_expression] = STATE(2178), + [sym_logical_expression] = STATE(2178), + [sym_bitwise_expression] = STATE(2178), + [sym_equality_expression] = STATE(2178), + [sym_relational_expression] = STATE(2178), + [sym_shift_expression] = STATE(2178), + [sym_math_expression] = STATE(2178), + [sym_cast_expression] = STATE(2178), + [sym_sizeof_expression] = STATE(2178), + [sym_subscript_expression] = STATE(2178), + [sym_call_expression] = STATE(2178), + [sym_field_expression] = STATE(2178), + [sym_compound_literal_expression] = STATE(2178), + [sym_parenthesized_expression] = STATE(2178), + [sym_concatenated_string] = STATE(2178), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2178), + [sym_new_expression] = STATE(2178), + [sym_delete_expression] = STATE(2178), + [sym_lambda_expression] = STATE(2178), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5023), + [anon_sym_LPAREN] = ACTIONS(5025), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5023), + [sym_char_literal] = ACTIONS(5023), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5027), + [sym_false] = ACTIONS(5027), + [sym_null] = ACTIONS(5027), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5013), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5027), }, - [1730] = { - [aux_sym_concatenated_string_repeat1] = STATE(2173), + [1733] = { + [aux_sym_concatenated_string_repeat1] = STATE(2179), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_STAR] = ACTIONS(1479), @@ -69879,142 +69998,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1477), [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), - [sym_string_literal] = ACTIONS(5015), + [sym_string_literal] = ACTIONS(5029), [sym_comment] = ACTIONS(49), }, - [1731] = { + [1734] = { [sym_destructor_name] = STATE(120), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2220), [sym_comment] = ACTIONS(49), - [anon_sym_delete] = ACTIONS(5017), + [anon_sym_delete] = ACTIONS(5031), [sym_operator_name] = ACTIONS(190), }, - [1732] = { - [sym__expression] = STATE(2176), - [sym_conditional_expression] = STATE(2176), - [sym_assignment_expression] = STATE(2176), - [sym_pointer_expression] = STATE(2176), - [sym_logical_expression] = STATE(2176), - [sym_bitwise_expression] = STATE(2176), - [sym_equality_expression] = STATE(2176), - [sym_relational_expression] = STATE(2176), - [sym_shift_expression] = STATE(2176), - [sym_math_expression] = STATE(2176), - [sym_cast_expression] = STATE(2176), - [sym_sizeof_expression] = STATE(2176), - [sym_subscript_expression] = STATE(2176), - [sym_call_expression] = STATE(2176), - [sym_field_expression] = STATE(2176), - [sym_compound_literal_expression] = STATE(2176), - [sym_parenthesized_expression] = STATE(2176), - [sym_concatenated_string] = STATE(2176), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2176), - [sym_new_expression] = STATE(2176), - [sym_delete_expression] = STATE(2176), - [sym_lambda_expression] = STATE(2176), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5019), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(5021), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5019), - [sym_char_literal] = ACTIONS(5019), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5023), - [sym_false] = ACTIONS(5023), - [sym_null] = ACTIONS(5023), + [1735] = { + [sym__expression] = STATE(2182), + [sym_conditional_expression] = STATE(2182), + [sym_assignment_expression] = STATE(2182), + [sym_pointer_expression] = STATE(2182), + [sym_logical_expression] = STATE(2182), + [sym_bitwise_expression] = STATE(2182), + [sym_equality_expression] = STATE(2182), + [sym_relational_expression] = STATE(2182), + [sym_shift_expression] = STATE(2182), + [sym_math_expression] = STATE(2182), + [sym_cast_expression] = STATE(2182), + [sym_sizeof_expression] = STATE(2182), + [sym_subscript_expression] = STATE(2182), + [sym_call_expression] = STATE(2182), + [sym_field_expression] = STATE(2182), + [sym_compound_literal_expression] = STATE(2182), + [sym_parenthesized_expression] = STATE(2182), + [sym_concatenated_string] = STATE(2182), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2182), + [sym_new_expression] = STATE(2182), + [sym_delete_expression] = STATE(2182), + [sym_lambda_expression] = STATE(2182), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5033), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(5035), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5033), + [sym_char_literal] = ACTIONS(5033), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5037), + [sym_false] = ACTIONS(5037), + [sym_null] = ACTIONS(5037), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5023), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5037), }, - [1733] = { + [1736] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5029), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_LT_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_GT_EQ] = ACTIONS(5031), - [anon_sym_AMP_EQ] = ACTIONS(5031), - [anon_sym_CARET_EQ] = ACTIONS(5031), - [anon_sym_PIPE_EQ] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(5041), + [anon_sym_QMARK] = ACTIONS(5043), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_LT_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_GT_EQ] = ACTIONS(5045), + [anon_sym_AMP_EQ] = ACTIONS(5045), + [anon_sym_CARET_EQ] = ACTIONS(5045), + [anon_sym_PIPE_EQ] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1734] = { - [sym__type_specifier] = STATE(2190), - [sym_sized_type_specifier] = STATE(2190), - [sym_enum_specifier] = STATE(2190), - [sym_struct_specifier] = STATE(2190), - [sym_union_specifier] = STATE(2190), - [sym_macro_type_specifier] = STATE(2190), - [sym_class_specifier] = STATE(2190), - [sym_dependent_type] = STATE(2190), + [1737] = { + [sym__type_specifier] = STATE(2196), + [sym_sized_type_specifier] = STATE(2196), + [sym_enum_specifier] = STATE(2196), + [sym_struct_specifier] = STATE(2196), + [sym_union_specifier] = STATE(2196), + [sym_macro_type_specifier] = STATE(2196), + [sym_class_specifier] = STATE(2196), + [sym_dependent_type] = STATE(2196), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2191), - [anon_sym_unsigned] = ACTIONS(5053), - [anon_sym_long] = ACTIONS(5053), - [anon_sym_short] = ACTIONS(5053), - [sym_primitive_type] = ACTIONS(5055), + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [anon_sym_unsigned] = ACTIONS(5067), + [anon_sym_long] = ACTIONS(5067), + [anon_sym_short] = ACTIONS(5067), + [sym_primitive_type] = ACTIONS(5069), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(5055), - [anon_sym_typename] = ACTIONS(5057), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(5069), + [anon_sym_typename] = ACTIONS(5071), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1735] = { - [sym_type_qualifier] = STATE(2192), - [sym_trailing_return_type] = STATE(2192), - [aux_sym_function_declarator_repeat1] = STATE(2192), + [1738] = { + [sym_type_qualifier] = STATE(2198), + [sym_trailing_return_type] = STATE(2198), + [aux_sym_function_declarator_repeat1] = STATE(2198), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_COMMA] = ACTIONS(1596), [anon_sym_LBRACE] = ACTIONS(1596), @@ -70028,104 +70147,104 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_GT] = ACTIONS(1596), - [anon_sym_DASH_GT] = ACTIONS(3823), + [anon_sym_DASH_GT] = ACTIONS(3829), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5059), + [sym_noexcept] = ACTIONS(5073), }, - [1736] = { - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_LBRACE] = ACTIONS(1805), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(1805), - [anon_sym_GT] = ACTIONS(1805), + [1739] = { + [anon_sym_LPAREN] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_GT] = ACTIONS(1807), [sym_comment] = ACTIONS(49), }, - [1737] = { - [sym__abstract_declarator] = STATE(2193), - [sym_abstract_pointer_declarator] = STATE(2193), - [sym_abstract_function_declarator] = STATE(2193), - [sym_abstract_array_declarator] = STATE(2193), - [sym_parameter_list] = STATE(1740), - [sym_abstract_reference_declarator] = STATE(2193), + [1740] = { + [sym__abstract_declarator] = STATE(2199), + [sym_abstract_pointer_declarator] = STATE(2199), + [sym_abstract_function_declarator] = STATE(2199), + [sym_abstract_array_declarator] = STATE(2199), + [sym_parameter_list] = STATE(1743), + [sym_abstract_reference_declarator] = STATE(2199), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(3844), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_AMP_AMP] = ACTIONS(3848), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [1738] = { - [sym__abstract_declarator] = STATE(2194), - [sym_abstract_pointer_declarator] = STATE(2194), - [sym_abstract_function_declarator] = STATE(2194), - [sym_abstract_array_declarator] = STATE(2194), - [sym_parameter_list] = STATE(1740), - [sym_abstract_reference_declarator] = STATE(2194), + [1741] = { + [sym__abstract_declarator] = STATE(2200), + [sym_abstract_pointer_declarator] = STATE(2200), + [sym_abstract_function_declarator] = STATE(2200), + [sym_abstract_array_declarator] = STATE(2200), + [sym_parameter_list] = STATE(1743), + [sym_abstract_reference_declarator] = STATE(2200), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(3838), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(3844), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(3840), - [anon_sym_AMP_AMP] = ACTIONS(3842), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_AMP_AMP] = ACTIONS(3848), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [1739] = { - [sym_parameter_list] = STATE(2195), + [1742] = { + [sym_parameter_list] = STATE(2201), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), + [sym_noexcept] = ACTIONS(4364), }, - [1740] = { - [sym_type_qualifier] = STATE(2196), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2196), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [1743] = { + [sym_type_qualifier] = STATE(2202), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2202), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [1741] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1741), + [1744] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1744), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), @@ -70137,9 +70256,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(5061), - [anon_sym_long] = ACTIONS(5061), - [anon_sym_short] = ACTIONS(5061), + [anon_sym_unsigned] = ACTIONS(5075), + [anon_sym_long] = ACTIONS(5075), + [anon_sym_short] = ACTIONS(5075), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -70148,27 +70267,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [1742] = { - [sym_parameter_list] = STATE(1744), + [1745] = { + [sym_parameter_list] = STATE(1747), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1743] = { - [sym_parameter_list] = STATE(1744), + [1746] = { + [sym_parameter_list] = STATE(1747), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1744] = { - [sym_type_qualifier] = STATE(2197), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2197), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1747] = { + [sym_type_qualifier] = STATE(2203), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2203), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -70176,19 +70295,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3858), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5064), + [sym_noexcept] = ACTIONS(5078), }, - [1745] = { - [sym__type_specifier] = STATE(2198), - [sym_sized_type_specifier] = STATE(2198), - [sym_enum_specifier] = STATE(2198), - [sym_struct_specifier] = STATE(2198), - [sym_union_specifier] = STATE(2198), - [sym_macro_type_specifier] = STATE(2198), - [sym_class_specifier] = STATE(2198), - [sym_dependent_type] = STATE(2198), + [1748] = { + [sym__type_specifier] = STATE(2204), + [sym_sized_type_specifier] = STATE(2204), + [sym_enum_specifier] = STATE(2204), + [sym_struct_specifier] = STATE(2204), + [sym_union_specifier] = STATE(2204), + [sym_macro_type_specifier] = STATE(2204), + [sym_class_specifier] = STATE(2204), + [sym_dependent_type] = STATE(2204), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), @@ -70196,24 +70315,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(1231), [anon_sym_long] = ACTIONS(1231), [anon_sym_short] = ACTIONS(1231), - [sym_primitive_type] = ACTIONS(5066), + [sym_primitive_type] = ACTIONS(5080), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(5066), + [sym_auto] = ACTIONS(5080), [anon_sym_typename] = ACTIONS(1235), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1746] = { - [sym_type_qualifier] = STATE(2199), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2199), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1749] = { + [sym_type_qualifier] = STATE(2205), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2205), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -70221,24 +70340,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3858), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5068), + [sym_noexcept] = ACTIONS(5082), }, - [1747] = { - [sym_parameter_list] = STATE(1744), + [1750] = { + [sym_parameter_list] = STATE(1747), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(3783), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1748] = { + [1751] = { [anon_sym_LPAREN] = ACTIONS(1137), [anon_sym_COMMA] = ACTIONS(1137), [anon_sym_RPAREN] = ACTIONS(1137), [anon_sym_extern] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(1137), [anon_sym_EQ] = ACTIONS(1148), [anon_sym_static] = ACTIONS(1142), @@ -70262,7 +70381,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1146), [anon_sym_CARET_EQ] = ACTIONS(1146), [anon_sym_PIPE_EQ] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4239), [anon_sym_PIPE_PIPE] = ACTIONS(1146), [anon_sym_AMP_AMP] = ACTIONS(1137), [anon_sym_PIPE] = ACTIONS(1148), @@ -70270,7 +70389,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1140), [anon_sym_EQ_EQ] = ACTIONS(1146), [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4239), [anon_sym_GT] = ACTIONS(1148), [anon_sym_LT_EQ] = ACTIONS(1146), [anon_sym_GT_EQ] = ACTIONS(1146), @@ -70289,192 +70408,192 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), [sym_operator_name] = ACTIONS(1140), }, - [1749] = { + [1752] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5070), - [anon_sym_RPAREN] = ACTIONS(5070), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1750] = { - [anon_sym_COMMA] = ACTIONS(5070), - [anon_sym_RPAREN] = ACTIONS(5070), + [1753] = { + [anon_sym_COMMA] = ACTIONS(5084), + [anon_sym_RPAREN] = ACTIONS(5084), [sym_comment] = ACTIONS(49), }, - [1751] = { - [anon_sym_LPAREN] = ACTIONS(5072), - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_RPAREN] = ACTIONS(5072), - [anon_sym_SEMI] = ACTIONS(5072), - [anon_sym_LBRACE] = ACTIONS(5072), - [anon_sym_RBRACE] = ACTIONS(5072), - [anon_sym_STAR] = ACTIONS(5074), - [anon_sym_LBRACK] = ACTIONS(5072), - [anon_sym_RBRACK] = ACTIONS(5072), - [anon_sym_EQ] = ACTIONS(5074), - [anon_sym_COLON] = ACTIONS(5072), - [anon_sym_QMARK] = ACTIONS(5072), - [anon_sym_STAR_EQ] = ACTIONS(5072), - [anon_sym_SLASH_EQ] = ACTIONS(5072), - [anon_sym_PERCENT_EQ] = ACTIONS(5072), - [anon_sym_PLUS_EQ] = ACTIONS(5072), - [anon_sym_DASH_EQ] = ACTIONS(5072), - [anon_sym_LT_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_GT_EQ] = ACTIONS(5072), - [anon_sym_AMP_EQ] = ACTIONS(5072), - [anon_sym_CARET_EQ] = ACTIONS(5072), - [anon_sym_PIPE_EQ] = ACTIONS(5072), - [anon_sym_AMP] = ACTIONS(5074), - [anon_sym_PIPE_PIPE] = ACTIONS(5072), - [anon_sym_AMP_AMP] = ACTIONS(5072), - [anon_sym_PIPE] = ACTIONS(5074), - [anon_sym_CARET] = ACTIONS(5074), - [anon_sym_EQ_EQ] = ACTIONS(5072), - [anon_sym_BANG_EQ] = ACTIONS(5072), - [anon_sym_LT] = ACTIONS(5074), - [anon_sym_GT] = ACTIONS(5074), - [anon_sym_LT_EQ] = ACTIONS(5072), - [anon_sym_GT_EQ] = ACTIONS(5072), - [anon_sym_LT_LT] = ACTIONS(5074), - [anon_sym_GT_GT] = ACTIONS(5074), - [anon_sym_PLUS] = ACTIONS(5074), - [anon_sym_DASH] = ACTIONS(5074), - [anon_sym_SLASH] = ACTIONS(5074), - [anon_sym_PERCENT] = ACTIONS(5074), - [anon_sym_DASH_DASH] = ACTIONS(5072), - [anon_sym_PLUS_PLUS] = ACTIONS(5072), - [anon_sym_DOT] = ACTIONS(5072), - [anon_sym_DASH_GT] = ACTIONS(5072), + [1754] = { + [anon_sym_LPAREN] = ACTIONS(5086), + [anon_sym_COMMA] = ACTIONS(5086), + [anon_sym_RPAREN] = ACTIONS(5086), + [anon_sym_SEMI] = ACTIONS(5086), + [anon_sym_LBRACE] = ACTIONS(5086), + [anon_sym_RBRACE] = ACTIONS(5086), + [anon_sym_STAR] = ACTIONS(5088), + [anon_sym_LBRACK] = ACTIONS(5086), + [anon_sym_RBRACK] = ACTIONS(5086), + [anon_sym_EQ] = ACTIONS(5088), + [anon_sym_COLON] = ACTIONS(5086), + [anon_sym_QMARK] = ACTIONS(5086), + [anon_sym_STAR_EQ] = ACTIONS(5086), + [anon_sym_SLASH_EQ] = ACTIONS(5086), + [anon_sym_PERCENT_EQ] = ACTIONS(5086), + [anon_sym_PLUS_EQ] = ACTIONS(5086), + [anon_sym_DASH_EQ] = ACTIONS(5086), + [anon_sym_LT_LT_EQ] = ACTIONS(5086), + [anon_sym_GT_GT_EQ] = ACTIONS(5086), + [anon_sym_AMP_EQ] = ACTIONS(5086), + [anon_sym_CARET_EQ] = ACTIONS(5086), + [anon_sym_PIPE_EQ] = ACTIONS(5086), + [anon_sym_AMP] = ACTIONS(5088), + [anon_sym_PIPE_PIPE] = ACTIONS(5086), + [anon_sym_AMP_AMP] = ACTIONS(5086), + [anon_sym_PIPE] = ACTIONS(5088), + [anon_sym_CARET] = ACTIONS(5088), + [anon_sym_EQ_EQ] = ACTIONS(5086), + [anon_sym_BANG_EQ] = ACTIONS(5086), + [anon_sym_LT] = ACTIONS(5088), + [anon_sym_GT] = ACTIONS(5088), + [anon_sym_LT_EQ] = ACTIONS(5086), + [anon_sym_GT_EQ] = ACTIONS(5086), + [anon_sym_LT_LT] = ACTIONS(5088), + [anon_sym_GT_GT] = ACTIONS(5088), + [anon_sym_PLUS] = ACTIONS(5088), + [anon_sym_DASH] = ACTIONS(5088), + [anon_sym_SLASH] = ACTIONS(5088), + [anon_sym_PERCENT] = ACTIONS(5088), + [anon_sym_DASH_DASH] = ACTIONS(5086), + [anon_sym_PLUS_PLUS] = ACTIONS(5086), + [anon_sym_DOT] = ACTIONS(5086), + [anon_sym_DASH_GT] = ACTIONS(5086), [sym_comment] = ACTIONS(49), }, - [1752] = { - [aux_sym_argument_list_repeat1] = STATE(1752), - [anon_sym_COMMA] = ACTIONS(5076), - [anon_sym_RPAREN] = ACTIONS(5070), + [1755] = { + [aux_sym_argument_list_repeat1] = STATE(1755), + [anon_sym_COMMA] = ACTIONS(5090), + [anon_sym_RPAREN] = ACTIONS(5084), [sym_comment] = ACTIONS(49), }, - [1753] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1796), - [anon_sym_RPAREN] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(1796), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [1756] = { + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1798), + [anon_sym_RPAREN] = ACTIONS(1798), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(1798), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, - [1754] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1757] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1275), @@ -70487,78 +70606,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1755] = { - [anon_sym_LPAREN] = ACTIONS(4162), - [anon_sym_STAR] = ACTIONS(4162), - [anon_sym_LBRACK] = ACTIONS(4162), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_AMP] = ACTIONS(4164), - [anon_sym_AMP_AMP] = ACTIONS(4162), - [anon_sym_DOT] = ACTIONS(5079), + [1758] = { + [anon_sym_LPAREN] = ACTIONS(4168), + [anon_sym_STAR] = ACTIONS(4168), + [anon_sym_LBRACK] = ACTIONS(4168), + [anon_sym_EQ] = ACTIONS(5093), + [anon_sym_AMP] = ACTIONS(4170), + [anon_sym_AMP_AMP] = ACTIONS(4168), + [anon_sym_DOT] = ACTIONS(5093), [sym_comment] = ACTIONS(49), }, - [1756] = { - [anon_sym_RPAREN] = ACTIONS(5081), + [1759] = { + [anon_sym_RPAREN] = ACTIONS(5095), [sym_comment] = ACTIONS(49), }, - [1757] = { - [aux_sym_concatenated_string_repeat1] = STATE(1757), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4224), - [anon_sym_RBRACE] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(5083), + [1760] = { + [aux_sym_concatenated_string_repeat1] = STATE(1760), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(5097), [sym_comment] = ACTIONS(49), }, - [1758] = { + [1761] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -70591,7 +70710,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5086), + [anon_sym_RBRACK] = ACTIONS(5100), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -70614,83 +70733,83 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1759] = { + [1762] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1760] = { - [sym__expression] = STATE(2202), - [sym_conditional_expression] = STATE(2202), - [sym_assignment_expression] = STATE(2202), - [sym_pointer_expression] = STATE(2202), - [sym_logical_expression] = STATE(2202), - [sym_bitwise_expression] = STATE(2202), - [sym_equality_expression] = STATE(2202), - [sym_relational_expression] = STATE(2202), - [sym_shift_expression] = STATE(2202), - [sym_math_expression] = STATE(2202), - [sym_cast_expression] = STATE(2202), - [sym_sizeof_expression] = STATE(2202), - [sym_subscript_expression] = STATE(2202), - [sym_call_expression] = STATE(2202), - [sym_field_expression] = STATE(2202), - [sym_compound_literal_expression] = STATE(2202), - [sym_parenthesized_expression] = STATE(2202), - [sym_concatenated_string] = STATE(2202), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2202), - [sym_new_expression] = STATE(2202), - [sym_delete_expression] = STATE(2202), - [sym_lambda_expression] = STATE(2202), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5088), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1763] = { + [sym__expression] = STATE(2208), + [sym_conditional_expression] = STATE(2208), + [sym_assignment_expression] = STATE(2208), + [sym_pointer_expression] = STATE(2208), + [sym_logical_expression] = STATE(2208), + [sym_bitwise_expression] = STATE(2208), + [sym_equality_expression] = STATE(2208), + [sym_relational_expression] = STATE(2208), + [sym_shift_expression] = STATE(2208), + [sym_math_expression] = STATE(2208), + [sym_cast_expression] = STATE(2208), + [sym_sizeof_expression] = STATE(2208), + [sym_subscript_expression] = STATE(2208), + [sym_call_expression] = STATE(2208), + [sym_field_expression] = STATE(2208), + [sym_compound_literal_expression] = STATE(2208), + [sym_parenthesized_expression] = STATE(2208), + [sym_concatenated_string] = STATE(2208), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2208), + [sym_new_expression] = STATE(2208), + [sym_delete_expression] = STATE(2208), + [sym_lambda_expression] = STATE(2208), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5102), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1279), [anon_sym_TILDE] = ACTIONS(1281), [anon_sym_PLUS] = ACTIONS(1283), @@ -70698,621 +70817,621 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(5088), - [sym_char_literal] = ACTIONS(5088), + [sym_number_literal] = ACTIONS(5102), + [sym_char_literal] = ACTIONS(5102), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(5090), - [sym_false] = ACTIONS(5090), - [sym_null] = ACTIONS(5090), + [sym_true] = ACTIONS(5104), + [sym_false] = ACTIONS(5104), + [sym_null] = ACTIONS(5104), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(5090), + [sym_nullptr] = ACTIONS(5104), }, - [1761] = { - [anon_sym_LPAREN] = ACTIONS(5092), - [anon_sym_COMMA] = ACTIONS(5092), - [anon_sym_RPAREN] = ACTIONS(5092), - [anon_sym_SEMI] = ACTIONS(5092), - [anon_sym_LBRACE] = ACTIONS(5092), - [anon_sym_RBRACE] = ACTIONS(5092), - [anon_sym_STAR] = ACTIONS(5094), - [anon_sym_LBRACK] = ACTIONS(5092), - [anon_sym_RBRACK] = ACTIONS(5092), - [anon_sym_EQ] = ACTIONS(5094), - [anon_sym_COLON] = ACTIONS(5092), - [anon_sym_QMARK] = ACTIONS(5092), - [anon_sym_STAR_EQ] = ACTIONS(5092), - [anon_sym_SLASH_EQ] = ACTIONS(5092), - [anon_sym_PERCENT_EQ] = ACTIONS(5092), - [anon_sym_PLUS_EQ] = ACTIONS(5092), - [anon_sym_DASH_EQ] = ACTIONS(5092), - [anon_sym_LT_LT_EQ] = ACTIONS(5092), - [anon_sym_GT_GT_EQ] = ACTIONS(5092), - [anon_sym_AMP_EQ] = ACTIONS(5092), - [anon_sym_CARET_EQ] = ACTIONS(5092), - [anon_sym_PIPE_EQ] = ACTIONS(5092), - [anon_sym_AMP] = ACTIONS(5094), - [anon_sym_PIPE_PIPE] = ACTIONS(5092), - [anon_sym_AMP_AMP] = ACTIONS(5092), - [anon_sym_PIPE] = ACTIONS(5094), - [anon_sym_CARET] = ACTIONS(5094), - [anon_sym_EQ_EQ] = ACTIONS(5092), - [anon_sym_BANG_EQ] = ACTIONS(5092), - [anon_sym_LT] = ACTIONS(5094), - [anon_sym_GT] = ACTIONS(5094), - [anon_sym_LT_EQ] = ACTIONS(5092), - [anon_sym_GT_EQ] = ACTIONS(5092), - [anon_sym_LT_LT] = ACTIONS(5094), - [anon_sym_GT_GT] = ACTIONS(5094), - [anon_sym_PLUS] = ACTIONS(5094), - [anon_sym_DASH] = ACTIONS(5094), - [anon_sym_SLASH] = ACTIONS(5094), - [anon_sym_PERCENT] = ACTIONS(5094), - [anon_sym_DASH_DASH] = ACTIONS(5092), - [anon_sym_PLUS_PLUS] = ACTIONS(5092), - [anon_sym_DOT] = ACTIONS(5092), - [anon_sym_DASH_GT] = ACTIONS(5092), + [1764] = { + [anon_sym_LPAREN] = ACTIONS(5106), + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_RPAREN] = ACTIONS(5106), + [anon_sym_SEMI] = ACTIONS(5106), + [anon_sym_LBRACE] = ACTIONS(5106), + [anon_sym_RBRACE] = ACTIONS(5106), + [anon_sym_STAR] = ACTIONS(5108), + [anon_sym_LBRACK] = ACTIONS(5106), + [anon_sym_RBRACK] = ACTIONS(5106), + [anon_sym_EQ] = ACTIONS(5108), + [anon_sym_COLON] = ACTIONS(5106), + [anon_sym_QMARK] = ACTIONS(5106), + [anon_sym_STAR_EQ] = ACTIONS(5106), + [anon_sym_SLASH_EQ] = ACTIONS(5106), + [anon_sym_PERCENT_EQ] = ACTIONS(5106), + [anon_sym_PLUS_EQ] = ACTIONS(5106), + [anon_sym_DASH_EQ] = ACTIONS(5106), + [anon_sym_LT_LT_EQ] = ACTIONS(5106), + [anon_sym_GT_GT_EQ] = ACTIONS(5106), + [anon_sym_AMP_EQ] = ACTIONS(5106), + [anon_sym_CARET_EQ] = ACTIONS(5106), + [anon_sym_PIPE_EQ] = ACTIONS(5106), + [anon_sym_AMP] = ACTIONS(5108), + [anon_sym_PIPE_PIPE] = ACTIONS(5106), + [anon_sym_AMP_AMP] = ACTIONS(5106), + [anon_sym_PIPE] = ACTIONS(5108), + [anon_sym_CARET] = ACTIONS(5108), + [anon_sym_EQ_EQ] = ACTIONS(5106), + [anon_sym_BANG_EQ] = ACTIONS(5106), + [anon_sym_LT] = ACTIONS(5108), + [anon_sym_GT] = ACTIONS(5108), + [anon_sym_LT_EQ] = ACTIONS(5106), + [anon_sym_GT_EQ] = ACTIONS(5106), + [anon_sym_LT_LT] = ACTIONS(5108), + [anon_sym_GT_GT] = ACTIONS(5108), + [anon_sym_PLUS] = ACTIONS(5108), + [anon_sym_DASH] = ACTIONS(5108), + [anon_sym_SLASH] = ACTIONS(5108), + [anon_sym_PERCENT] = ACTIONS(5108), + [anon_sym_DASH_DASH] = ACTIONS(5106), + [anon_sym_PLUS_PLUS] = ACTIONS(5106), + [anon_sym_DOT] = ACTIONS(5106), + [anon_sym_DASH_GT] = ACTIONS(5106), [sym_comment] = ACTIONS(49), }, - [1762] = { + [1765] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5096), - [anon_sym_SEMI] = ACTIONS(4720), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(5110), + [anon_sym_SEMI] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_QMARK] = ACTIONS(2430), - [anon_sym_STAR_EQ] = ACTIONS(2432), - [anon_sym_SLASH_EQ] = ACTIONS(2432), - [anon_sym_PERCENT_EQ] = ACTIONS(2432), - [anon_sym_PLUS_EQ] = ACTIONS(2432), - [anon_sym_DASH_EQ] = ACTIONS(2432), - [anon_sym_LT_LT_EQ] = ACTIONS(2432), - [anon_sym_GT_GT_EQ] = ACTIONS(2432), - [anon_sym_AMP_EQ] = ACTIONS(2432), - [anon_sym_CARET_EQ] = ACTIONS(2432), - [anon_sym_PIPE_EQ] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2432), + [anon_sym_STAR_EQ] = ACTIONS(2434), + [anon_sym_SLASH_EQ] = ACTIONS(2434), + [anon_sym_PERCENT_EQ] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(2434), + [anon_sym_DASH_EQ] = ACTIONS(2434), + [anon_sym_LT_LT_EQ] = ACTIONS(2434), + [anon_sym_GT_GT_EQ] = ACTIONS(2434), + [anon_sym_AMP_EQ] = ACTIONS(2434), + [anon_sym_CARET_EQ] = ACTIONS(2434), + [anon_sym_PIPE_EQ] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1763] = { - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), + [1766] = { + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), [sym_comment] = ACTIONS(49), }, - [1764] = { + [1767] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(2432), - [anon_sym_SLASH_EQ] = ACTIONS(2432), - [anon_sym_PERCENT_EQ] = ACTIONS(2432), - [anon_sym_PLUS_EQ] = ACTIONS(2432), - [anon_sym_DASH_EQ] = ACTIONS(2432), - [anon_sym_LT_LT_EQ] = ACTIONS(2432), - [anon_sym_GT_GT_EQ] = ACTIONS(2432), - [anon_sym_AMP_EQ] = ACTIONS(2432), - [anon_sym_CARET_EQ] = ACTIONS(2432), - [anon_sym_PIPE_EQ] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(2434), + [anon_sym_SLASH_EQ] = ACTIONS(2434), + [anon_sym_PERCENT_EQ] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(2434), + [anon_sym_DASH_EQ] = ACTIONS(2434), + [anon_sym_LT_LT_EQ] = ACTIONS(2434), + [anon_sym_GT_GT_EQ] = ACTIONS(2434), + [anon_sym_AMP_EQ] = ACTIONS(2434), + [anon_sym_CARET_EQ] = ACTIONS(2434), + [anon_sym_PIPE_EQ] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1765] = { + [1768] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5101), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5115), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1766] = { + [1769] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1767] = { + [1770] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1768] = { + [1771] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1769] = { + [1772] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1770] = { + [1773] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1771] = { + [1774] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1772] = { + [1775] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1773] = { + [1776] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_SEMI] = ACTIONS(4294), - [anon_sym_RBRACE] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_SEMI] = ACTIONS(4300), + [anon_sym_RBRACE] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1774] = { + [1777] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_SEMI] = ACTIONS(4274), + [anon_sym_RBRACE] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1775] = { - [sym__expression] = STATE(1777), - [sym_conditional_expression] = STATE(1777), - [sym_assignment_expression] = STATE(1777), - [sym_pointer_expression] = STATE(1777), - [sym_logical_expression] = STATE(1777), - [sym_bitwise_expression] = STATE(1777), - [sym_equality_expression] = STATE(1777), - [sym_relational_expression] = STATE(1777), - [sym_shift_expression] = STATE(1777), - [sym_math_expression] = STATE(1777), - [sym_cast_expression] = STATE(1777), - [sym_sizeof_expression] = STATE(1777), - [sym_subscript_expression] = STATE(1777), - [sym_call_expression] = STATE(1777), - [sym_field_expression] = STATE(1777), - [sym_compound_literal_expression] = STATE(1777), - [sym_parenthesized_expression] = STATE(1777), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), + [1778] = { + [sym__expression] = STATE(1780), + [sym_conditional_expression] = STATE(1780), + [sym_assignment_expression] = STATE(1780), + [sym_pointer_expression] = STATE(1780), + [sym_logical_expression] = STATE(1780), + [sym_bitwise_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_relational_expression] = STATE(1780), + [sym_shift_expression] = STATE(1780), + [sym_math_expression] = STATE(1780), + [sym_cast_expression] = STATE(1780), + [sym_sizeof_expression] = STATE(1780), + [sym_subscript_expression] = STATE(1780), + [sym_call_expression] = STATE(1780), + [sym_field_expression] = STATE(1780), + [sym_compound_literal_expression] = STATE(1780), + [sym_parenthesized_expression] = STATE(1780), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1777), + [sym_concatenated_string] = STATE(1780), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1777), - [sym_new_expression] = STATE(1777), - [sym_delete_expression] = STATE(1777), - [sym_lambda_expression] = STATE(1777), + [sym_template_function] = STATE(1780), + [sym_new_expression] = STATE(1780), + [sym_delete_expression] = STATE(1780), + [sym_lambda_expression] = STATE(1780), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3956), + [sym_raw_string_literal] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(5103), + [anon_sym_RBRACE] = ACTIONS(5117), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1325), @@ -71324,73 +71443,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3956), - [sym_char_literal] = ACTIONS(3956), + [sym_number_literal] = ACTIONS(3962), + [sym_char_literal] = ACTIONS(3962), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_null] = ACTIONS(3958), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_null] = ACTIONS(3964), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3958), + [sym_nullptr] = ACTIONS(3964), }, - [1776] = { - [aux_sym_initializer_list_repeat1] = STATE(1776), - [anon_sym_COMMA] = ACTIONS(5105), - [anon_sym_RBRACE] = ACTIONS(5099), + [1779] = { + [aux_sym_initializer_list_repeat1] = STATE(1779), + [anon_sym_COMMA] = ACTIONS(5119), + [anon_sym_RBRACE] = ACTIONS(5113), [sym_comment] = ACTIONS(49), }, - [1777] = { + [1780] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5099), - [anon_sym_RBRACE] = ACTIONS(5099), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5113), + [anon_sym_RBRACE] = ACTIONS(5113), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1778] = { + [1781] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5108), + [anon_sym_RBRACK] = ACTIONS(5122), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -71426,56 +71545,56 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1779] = { + [1782] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1780] = { - [anon_sym_COMMA] = ACTIONS(5110), - [anon_sym_RBRACE] = ACTIONS(5110), + [1783] = { + [anon_sym_COMMA] = ACTIONS(5124), + [anon_sym_RBRACE] = ACTIONS(5124), [sym_comment] = ACTIONS(49), }, - [1781] = { - [sym_field_declaration_list] = STATE(1898), - [sym_base_class_clause] = STATE(1899), + [1784] = { + [sym_field_declaration_list] = STATE(1901), + [sym_base_class_clause] = STATE(1902), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(406), [anon_sym_RPAREN] = ACTIONS(406), @@ -71499,9 +71618,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(406), }, - [1782] = { - [sym_field_declaration_list] = STATE(1900), - [sym_base_class_clause] = STATE(1901), + [1785] = { + [sym_field_declaration_list] = STATE(1903), + [sym_base_class_clause] = STATE(1904), [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_COMMA] = ACTIONS(416), [anon_sym_RPAREN] = ACTIONS(416), @@ -71525,9 +71644,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(416), }, - [1783] = { - [sym_field_declaration_list] = STATE(1905), - [sym_base_class_clause] = STATE(1906), + [1786] = { + [sym_field_declaration_list] = STATE(1908), + [sym_base_class_clause] = STATE(1909), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_COMMA] = ACTIONS(451), [anon_sym_RPAREN] = ACTIONS(451), @@ -71551,102 +71670,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(451), }, - [1784] = { - [sym__abstract_declarator] = STATE(2207), - [sym_abstract_pointer_declarator] = STATE(2207), - [sym_abstract_function_declarator] = STATE(2207), - [sym_abstract_array_declarator] = STATE(2207), - [sym_parameter_list] = STATE(1787), - [sym_abstract_reference_declarator] = STATE(2207), + [1787] = { + [sym__abstract_declarator] = STATE(2213), + [sym_abstract_pointer_declarator] = STATE(2213), + [sym_abstract_function_declarator] = STATE(2213), + [sym_abstract_array_declarator] = STATE(2213), + [sym_parameter_list] = STATE(1790), + [sym_abstract_reference_declarator] = STATE(2213), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(3982), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_EQ] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [1785] = { - [sym__abstract_declarator] = STATE(2208), - [sym_abstract_pointer_declarator] = STATE(2208), - [sym_abstract_function_declarator] = STATE(2208), - [sym_abstract_array_declarator] = STATE(2208), - [sym_parameter_list] = STATE(1787), - [sym_abstract_reference_declarator] = STATE(2208), + [1788] = { + [sym__abstract_declarator] = STATE(2214), + [sym_abstract_pointer_declarator] = STATE(2214), + [sym_abstract_function_declarator] = STATE(2214), + [sym_abstract_array_declarator] = STATE(2214), + [sym_parameter_list] = STATE(1790), + [sym_abstract_reference_declarator] = STATE(2214), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(3976), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(3982), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(3978), - [anon_sym_AMP_AMP] = ACTIONS(3980), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(3984), + [anon_sym_AMP_AMP] = ACTIONS(3986), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [1786] = { - [sym_parameter_list] = STATE(2209), + [1789] = { + [sym_parameter_list] = STATE(2215), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [1787] = { - [sym_type_qualifier] = STATE(2210), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2210), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [1790] = { + [sym_type_qualifier] = STATE(2216), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2216), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [1788] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(1788), + [1791] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(1791), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), @@ -71661,9 +71780,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(5112), - [anon_sym_long] = ACTIONS(5112), - [anon_sym_short] = ACTIONS(5112), + [anon_sym_unsigned] = ACTIONS(5126), + [anon_sym_long] = ACTIONS(5126), + [anon_sym_short] = ACTIONS(5126), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -71672,36 +71791,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [1789] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1792] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1325), @@ -71714,67 +71833,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1790] = { - [anon_sym_RPAREN] = ACTIONS(5115), + [1793] = { + [anon_sym_RPAREN] = ACTIONS(5129), [sym_comment] = ACTIONS(49), }, - [1791] = { - [aux_sym_concatenated_string_repeat1] = STATE(1791), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_RBRACE] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(5117), + [1794] = { + [aux_sym_concatenated_string_repeat1] = STATE(1794), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_RBRACE] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(5131), [sym_comment] = ACTIONS(49), }, - [1792] = { + [1795] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -71807,7 +71926,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5120), + [anon_sym_RBRACK] = ACTIONS(5134), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -71830,82 +71949,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1793] = { + [1796] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_RBRACE] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1794] = { - [sym__expression] = STATE(2213), - [sym_conditional_expression] = STATE(2213), - [sym_assignment_expression] = STATE(2213), - [sym_pointer_expression] = STATE(2213), - [sym_logical_expression] = STATE(2213), - [sym_bitwise_expression] = STATE(2213), - [sym_equality_expression] = STATE(2213), - [sym_relational_expression] = STATE(2213), - [sym_shift_expression] = STATE(2213), - [sym_math_expression] = STATE(2213), - [sym_cast_expression] = STATE(2213), - [sym_sizeof_expression] = STATE(2213), - [sym_subscript_expression] = STATE(2213), - [sym_call_expression] = STATE(2213), - [sym_field_expression] = STATE(2213), - [sym_compound_literal_expression] = STATE(2213), - [sym_parenthesized_expression] = STATE(2213), - [sym_concatenated_string] = STATE(2213), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2213), - [sym_new_expression] = STATE(2213), - [sym_delete_expression] = STATE(2213), - [sym_lambda_expression] = STATE(2213), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5122), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1797] = { + [sym__expression] = STATE(2219), + [sym_conditional_expression] = STATE(2219), + [sym_assignment_expression] = STATE(2219), + [sym_pointer_expression] = STATE(2219), + [sym_logical_expression] = STATE(2219), + [sym_bitwise_expression] = STATE(2219), + [sym_equality_expression] = STATE(2219), + [sym_relational_expression] = STATE(2219), + [sym_shift_expression] = STATE(2219), + [sym_math_expression] = STATE(2219), + [sym_cast_expression] = STATE(2219), + [sym_sizeof_expression] = STATE(2219), + [sym_subscript_expression] = STATE(2219), + [sym_call_expression] = STATE(2219), + [sym_field_expression] = STATE(2219), + [sym_compound_literal_expression] = STATE(2219), + [sym_parenthesized_expression] = STATE(2219), + [sym_concatenated_string] = STATE(2219), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2219), + [sym_new_expression] = STATE(2219), + [sym_delete_expression] = STATE(2219), + [sym_lambda_expression] = STATE(2219), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5136), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1327), [anon_sym_TILDE] = ACTIONS(1329), [anon_sym_PLUS] = ACTIONS(1331), @@ -71913,510 +72032,510 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(5122), - [sym_char_literal] = ACTIONS(5122), + [sym_number_literal] = ACTIONS(5136), + [sym_char_literal] = ACTIONS(5136), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(5124), - [sym_false] = ACTIONS(5124), - [sym_null] = ACTIONS(5124), + [sym_true] = ACTIONS(5138), + [sym_false] = ACTIONS(5138), + [sym_null] = ACTIONS(5138), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(5124), + [sym_nullptr] = ACTIONS(5138), }, - [1795] = { + [1798] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_RBRACE] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_RBRACE] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1796] = { + [1799] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5126), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5140), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1797] = { + [1800] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1798] = { + [1801] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1799] = { + [1802] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_RBRACE] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_RBRACE] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1800] = { + [1803] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1801] = { + [1804] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_RBRACE] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_RBRACE] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1802] = { + [1805] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_RBRACE] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_RBRACE] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1803] = { + [1806] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_RBRACE] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_RBRACE] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1804] = { + [1807] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_RBRACE] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_RBRACE] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1805] = { + [1808] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_RBRACE] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_RBRACE] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1806] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1809] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -72429,66 +72548,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1807] = { - [anon_sym_RPAREN] = ACTIONS(5128), + [1810] = { + [anon_sym_RPAREN] = ACTIONS(5142), [sym_comment] = ACTIONS(49), }, - [1808] = { - [aux_sym_concatenated_string_repeat1] = STATE(1808), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_SEMI] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(5130), + [1811] = { + [aux_sym_concatenated_string_repeat1] = STATE(1811), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_SEMI] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(5144), [sym_comment] = ACTIONS(49), }, - [1809] = { + [1812] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -72521,7 +72640,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5133), + [anon_sym_RBRACK] = ACTIONS(5147), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -72544,81 +72663,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1810] = { + [1813] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1811] = { - [sym__expression] = STATE(2217), - [sym_conditional_expression] = STATE(2217), - [sym_assignment_expression] = STATE(2217), - [sym_pointer_expression] = STATE(2217), - [sym_logical_expression] = STATE(2217), - [sym_bitwise_expression] = STATE(2217), - [sym_equality_expression] = STATE(2217), - [sym_relational_expression] = STATE(2217), - [sym_shift_expression] = STATE(2217), - [sym_math_expression] = STATE(2217), - [sym_cast_expression] = STATE(2217), - [sym_sizeof_expression] = STATE(2217), - [sym_subscript_expression] = STATE(2217), - [sym_call_expression] = STATE(2217), - [sym_field_expression] = STATE(2217), - [sym_compound_literal_expression] = STATE(2217), - [sym_parenthesized_expression] = STATE(2217), - [sym_concatenated_string] = STATE(2217), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2217), - [sym_new_expression] = STATE(2217), - [sym_delete_expression] = STATE(2217), - [sym_lambda_expression] = STATE(2217), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5135), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1814] = { + [sym__expression] = STATE(2223), + [sym_conditional_expression] = STATE(2223), + [sym_assignment_expression] = STATE(2223), + [sym_pointer_expression] = STATE(2223), + [sym_logical_expression] = STATE(2223), + [sym_bitwise_expression] = STATE(2223), + [sym_equality_expression] = STATE(2223), + [sym_relational_expression] = STATE(2223), + [sym_shift_expression] = STATE(2223), + [sym_math_expression] = STATE(2223), + [sym_cast_expression] = STATE(2223), + [sym_sizeof_expression] = STATE(2223), + [sym_subscript_expression] = STATE(2223), + [sym_call_expression] = STATE(2223), + [sym_field_expression] = STATE(2223), + [sym_compound_literal_expression] = STATE(2223), + [sym_parenthesized_expression] = STATE(2223), + [sym_concatenated_string] = STATE(2223), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2223), + [sym_new_expression] = STATE(2223), + [sym_delete_expression] = STATE(2223), + [sym_lambda_expression] = STATE(2223), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5149), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1351), [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_PLUS] = ACTIONS(1355), @@ -72626,543 +72745,543 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5135), - [sym_char_literal] = ACTIONS(5135), + [sym_number_literal] = ACTIONS(5149), + [sym_char_literal] = ACTIONS(5149), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5137), - [sym_false] = ACTIONS(5137), - [sym_null] = ACTIONS(5137), + [sym_true] = ACTIONS(5151), + [sym_false] = ACTIONS(5151), + [sym_null] = ACTIONS(5151), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5137), + [sym_nullptr] = ACTIONS(5151), }, - [1812] = { + [1815] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1813] = { + [1816] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5139), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5153), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1814] = { + [1817] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1815] = { + [1818] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1816] = { + [1819] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1817] = { + [1820] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1818] = { + [1821] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1819] = { + [1822] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1820] = { + [1823] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1821] = { + [1824] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1822] = { + [1825] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1823] = { + [1826] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2460), - [anon_sym_RPAREN] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(2462), + [anon_sym_RPAREN] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1824] = { - [sym__type_specifier] = STATE(2220), - [sym_sized_type_specifier] = STATE(2220), - [sym_enum_specifier] = STATE(2220), - [sym_struct_specifier] = STATE(2220), - [sym_union_specifier] = STATE(2220), - [sym_macro_type_specifier] = STATE(2220), - [sym_class_specifier] = STATE(2220), - [sym_dependent_type] = STATE(2220), + [1827] = { + [sym__type_specifier] = STATE(2226), + [sym_sized_type_specifier] = STATE(2226), + [sym_enum_specifier] = STATE(2226), + [sym_struct_specifier] = STATE(2226), + [sym_union_specifier] = STATE(2226), + [sym_macro_type_specifier] = STATE(2226), + [sym_class_specifier] = STATE(2226), + [sym_dependent_type] = STATE(2226), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2221), - [anon_sym_unsigned] = ACTIONS(5141), - [anon_sym_long] = ACTIONS(5141), - [anon_sym_short] = ACTIONS(5141), - [sym_primitive_type] = ACTIONS(5143), + [aux_sym_sized_type_specifier_repeat1] = STATE(2227), + [anon_sym_unsigned] = ACTIONS(5155), + [anon_sym_long] = ACTIONS(5155), + [anon_sym_short] = ACTIONS(5155), + [sym_primitive_type] = ACTIONS(5157), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(5143), - [anon_sym_typename] = ACTIONS(5145), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(5157), + [anon_sym_typename] = ACTIONS(5159), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [1825] = { - [sym_type_qualifier] = STATE(2222), - [sym_trailing_return_type] = STATE(2222), - [aux_sym_function_declarator_repeat1] = STATE(2222), + [1828] = { + [sym_type_qualifier] = STATE(2228), + [sym_trailing_return_type] = STATE(2228), + [aux_sym_function_declarator_repeat1] = STATE(2228), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_COMMA] = ACTIONS(1596), [anon_sym_RPAREN] = ACTIONS(1596), @@ -73176,18 +73295,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4129), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5147), + [sym_noexcept] = ACTIONS(5161), }, - [1826] = { - [sym_type_qualifier] = STATE(1830), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1830), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [1829] = { + [sym_type_qualifier] = STATE(1833), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1833), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -73195,11 +73314,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2603), + [anon_sym_DASH_GT] = ACTIONS(2605), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4135), + [sym_noexcept] = ACTIONS(4141), }, - [1827] = { + [1830] = { [sym__type_specifier] = STATE(93), [sym_sized_type_specifier] = STATE(93), [sym_enum_specifier] = STATE(93), @@ -73211,10 +73330,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1829), - [anon_sym_unsigned] = ACTIONS(4129), - [anon_sym_long] = ACTIONS(4129), - [anon_sym_short] = ACTIONS(4129), + [aux_sym_sized_type_specifier_repeat1] = STATE(1832), + [anon_sym_unsigned] = ACTIONS(4135), + [anon_sym_long] = ACTIONS(4135), + [anon_sym_short] = ACTIONS(4135), [sym_primitive_type] = ACTIONS(150), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), @@ -73223,186 +73342,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), [sym_auto] = ACTIONS(150), - [anon_sym_typename] = ACTIONS(4133), + [anon_sym_typename] = ACTIONS(4139), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1828] = { - [sym__abstract_declarator] = STATE(2225), - [sym_abstract_pointer_declarator] = STATE(2225), - [sym_abstract_function_declarator] = STATE(2225), - [sym_abstract_array_declarator] = STATE(2225), + [1831] = { + [sym__abstract_declarator] = STATE(2231), + [sym_abstract_pointer_declarator] = STATE(2231), + [sym_abstract_function_declarator] = STATE(2231), + [sym_abstract_array_declarator] = STATE(2231), [sym_parameter_list] = STATE(713), - [sym_abstract_reference_declarator] = STATE(2225), + [sym_abstract_reference_declarator] = STATE(2231), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(5163), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5167), [sym_comment] = ACTIONS(49), }, - [1829] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2226), + [1832] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2232), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_RPAREN] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(5155), - [anon_sym_long] = ACTIONS(5155), - [anon_sym_short] = ACTIONS(5155), + [anon_sym_unsigned] = ACTIONS(5169), + [anon_sym_long] = ACTIONS(5169), + [anon_sym_short] = ACTIONS(5169), [sym_primitive_type] = ACTIONS(244), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [sym_identifier] = ACTIONS(1135), [sym_comment] = ACTIONS(49), }, - [1830] = { - [sym_type_qualifier] = STATE(1830), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1830), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_RPAREN] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5157), + [1833] = { + [sym_type_qualifier] = STATE(1833), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1833), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5171), }, - [1831] = { + [1834] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5160), - [anon_sym_RPAREN] = ACTIONS(5160), - [anon_sym_SEMI] = ACTIONS(5160), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_COMMA] = ACTIONS(5174), + [anon_sym_RPAREN] = ACTIONS(5174), + [anon_sym_SEMI] = ACTIONS(5174), + [anon_sym_RBRACE] = ACTIONS(5174), + [anon_sym_STAR] = ACTIONS(5176), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5160), - [anon_sym_EQ] = ACTIONS(5162), - [anon_sym_QMARK] = ACTIONS(5160), - [anon_sym_STAR_EQ] = ACTIONS(5160), - [anon_sym_SLASH_EQ] = ACTIONS(5160), - [anon_sym_PERCENT_EQ] = ACTIONS(5160), - [anon_sym_PLUS_EQ] = ACTIONS(5160), - [anon_sym_DASH_EQ] = ACTIONS(5160), - [anon_sym_LT_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_GT_EQ] = ACTIONS(5160), - [anon_sym_AMP_EQ] = ACTIONS(5160), - [anon_sym_CARET_EQ] = ACTIONS(5160), - [anon_sym_PIPE_EQ] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_CARET] = ACTIONS(5162), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5162), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_RBRACK] = ACTIONS(5174), + [anon_sym_EQ] = ACTIONS(5176), + [anon_sym_QMARK] = ACTIONS(5174), + [anon_sym_STAR_EQ] = ACTIONS(5174), + [anon_sym_SLASH_EQ] = ACTIONS(5174), + [anon_sym_PERCENT_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5174), + [anon_sym_LT_LT_EQ] = ACTIONS(5174), + [anon_sym_GT_GT_EQ] = ACTIONS(5174), + [anon_sym_AMP_EQ] = ACTIONS(5174), + [anon_sym_CARET_EQ] = ACTIONS(5174), + [anon_sym_PIPE_EQ] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5176), + [anon_sym_PIPE_PIPE] = ACTIONS(5174), + [anon_sym_AMP_AMP] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_EQ_EQ] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1832] = { - [anon_sym_LPAREN] = ACTIONS(5164), - [anon_sym_COMMA] = ACTIONS(5164), - [anon_sym_RPAREN] = ACTIONS(5164), - [anon_sym_SEMI] = ACTIONS(5164), - [anon_sym_RBRACE] = ACTIONS(5164), - [anon_sym_STAR] = ACTIONS(5166), - [anon_sym_LBRACK] = ACTIONS(5164), - [anon_sym_RBRACK] = ACTIONS(5164), - [anon_sym_EQ] = ACTIONS(5166), - [anon_sym_COLON] = ACTIONS(5164), - [anon_sym_QMARK] = ACTIONS(5164), - [anon_sym_STAR_EQ] = ACTIONS(5164), - [anon_sym_SLASH_EQ] = ACTIONS(5164), - [anon_sym_PERCENT_EQ] = ACTIONS(5164), - [anon_sym_PLUS_EQ] = ACTIONS(5164), - [anon_sym_DASH_EQ] = ACTIONS(5164), - [anon_sym_LT_LT_EQ] = ACTIONS(5164), - [anon_sym_GT_GT_EQ] = ACTIONS(5164), - [anon_sym_AMP_EQ] = ACTIONS(5164), - [anon_sym_CARET_EQ] = ACTIONS(5164), - [anon_sym_PIPE_EQ] = ACTIONS(5164), - [anon_sym_AMP] = ACTIONS(5166), - [anon_sym_PIPE_PIPE] = ACTIONS(5164), - [anon_sym_AMP_AMP] = ACTIONS(5164), - [anon_sym_PIPE] = ACTIONS(5166), - [anon_sym_CARET] = ACTIONS(5166), - [anon_sym_EQ_EQ] = ACTIONS(5164), - [anon_sym_BANG_EQ] = ACTIONS(5164), - [anon_sym_LT] = ACTIONS(5166), - [anon_sym_GT] = ACTIONS(5166), - [anon_sym_LT_EQ] = ACTIONS(5164), - [anon_sym_GT_EQ] = ACTIONS(5164), - [anon_sym_LT_LT] = ACTIONS(5166), - [anon_sym_GT_GT] = ACTIONS(5166), - [anon_sym_PLUS] = ACTIONS(5166), - [anon_sym_DASH] = ACTIONS(5166), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_PERCENT] = ACTIONS(5166), - [anon_sym_DASH_DASH] = ACTIONS(5164), - [anon_sym_PLUS_PLUS] = ACTIONS(5164), - [anon_sym_DOT] = ACTIONS(5164), - [anon_sym_DASH_GT] = ACTIONS(5164), + [1835] = { + [anon_sym_LPAREN] = ACTIONS(5178), + [anon_sym_COMMA] = ACTIONS(5178), + [anon_sym_RPAREN] = ACTIONS(5178), + [anon_sym_SEMI] = ACTIONS(5178), + [anon_sym_RBRACE] = ACTIONS(5178), + [anon_sym_STAR] = ACTIONS(5180), + [anon_sym_LBRACK] = ACTIONS(5178), + [anon_sym_RBRACK] = ACTIONS(5178), + [anon_sym_EQ] = ACTIONS(5180), + [anon_sym_COLON] = ACTIONS(5178), + [anon_sym_QMARK] = ACTIONS(5178), + [anon_sym_STAR_EQ] = ACTIONS(5178), + [anon_sym_SLASH_EQ] = ACTIONS(5178), + [anon_sym_PERCENT_EQ] = ACTIONS(5178), + [anon_sym_PLUS_EQ] = ACTIONS(5178), + [anon_sym_DASH_EQ] = ACTIONS(5178), + [anon_sym_LT_LT_EQ] = ACTIONS(5178), + [anon_sym_GT_GT_EQ] = ACTIONS(5178), + [anon_sym_AMP_EQ] = ACTIONS(5178), + [anon_sym_CARET_EQ] = ACTIONS(5178), + [anon_sym_PIPE_EQ] = ACTIONS(5178), + [anon_sym_AMP] = ACTIONS(5180), + [anon_sym_PIPE_PIPE] = ACTIONS(5178), + [anon_sym_AMP_AMP] = ACTIONS(5178), + [anon_sym_PIPE] = ACTIONS(5180), + [anon_sym_CARET] = ACTIONS(5180), + [anon_sym_EQ_EQ] = ACTIONS(5178), + [anon_sym_BANG_EQ] = ACTIONS(5178), + [anon_sym_LT] = ACTIONS(5180), + [anon_sym_GT] = ACTIONS(5180), + [anon_sym_LT_EQ] = ACTIONS(5178), + [anon_sym_GT_EQ] = ACTIONS(5178), + [anon_sym_LT_LT] = ACTIONS(5180), + [anon_sym_GT_GT] = ACTIONS(5180), + [anon_sym_PLUS] = ACTIONS(5180), + [anon_sym_DASH] = ACTIONS(5180), + [anon_sym_SLASH] = ACTIONS(5180), + [anon_sym_PERCENT] = ACTIONS(5180), + [anon_sym_DASH_DASH] = ACTIONS(5178), + [anon_sym_PLUS_PLUS] = ACTIONS(5178), + [anon_sym_DOT] = ACTIONS(5178), + [anon_sym_DASH_GT] = ACTIONS(5178), [sym_comment] = ACTIONS(49), }, - [1833] = { - [sym_parameter_list] = STATE(1704), + [1836] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3777), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(3783), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [1834] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1837] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1421), @@ -73415,67 +73534,67 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1835] = { - [anon_sym_RPAREN] = ACTIONS(5168), + [1838] = { + [anon_sym_RPAREN] = ACTIONS(5182), [sym_comment] = ACTIONS(49), }, - [1836] = { - [aux_sym_concatenated_string_repeat1] = STATE(1836), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_RBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(5170), + [1839] = { + [aux_sym_concatenated_string_repeat1] = STATE(1839), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_RBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(5184), [sym_comment] = ACTIONS(49), }, - [1837] = { + [1840] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -73508,7 +73627,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5173), + [anon_sym_RBRACK] = ACTIONS(5187), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -73531,82 +73650,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1838] = { + [1841] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4252), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1839] = { - [sym__expression] = STATE(2229), - [sym_conditional_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2229), - [sym_pointer_expression] = STATE(2229), - [sym_logical_expression] = STATE(2229), - [sym_bitwise_expression] = STATE(2229), - [sym_equality_expression] = STATE(2229), - [sym_relational_expression] = STATE(2229), - [sym_shift_expression] = STATE(2229), - [sym_math_expression] = STATE(2229), - [sym_cast_expression] = STATE(2229), - [sym_sizeof_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_call_expression] = STATE(2229), - [sym_field_expression] = STATE(2229), - [sym_compound_literal_expression] = STATE(2229), - [sym_parenthesized_expression] = STATE(2229), - [sym_concatenated_string] = STATE(2229), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2229), - [sym_new_expression] = STATE(2229), - [sym_delete_expression] = STATE(2229), - [sym_lambda_expression] = STATE(2229), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5175), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1842] = { + [sym__expression] = STATE(2235), + [sym_conditional_expression] = STATE(2235), + [sym_assignment_expression] = STATE(2235), + [sym_pointer_expression] = STATE(2235), + [sym_logical_expression] = STATE(2235), + [sym_bitwise_expression] = STATE(2235), + [sym_equality_expression] = STATE(2235), + [sym_relational_expression] = STATE(2235), + [sym_shift_expression] = STATE(2235), + [sym_math_expression] = STATE(2235), + [sym_cast_expression] = STATE(2235), + [sym_sizeof_expression] = STATE(2235), + [sym_subscript_expression] = STATE(2235), + [sym_call_expression] = STATE(2235), + [sym_field_expression] = STATE(2235), + [sym_compound_literal_expression] = STATE(2235), + [sym_parenthesized_expression] = STATE(2235), + [sym_concatenated_string] = STATE(2235), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2235), + [sym_new_expression] = STATE(2235), + [sym_delete_expression] = STATE(2235), + [sym_lambda_expression] = STATE(2235), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5189), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1429), [anon_sym_TILDE] = ACTIONS(1431), [anon_sym_PLUS] = ACTIONS(1433), @@ -73614,625 +73733,625 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(5175), - [sym_char_literal] = ACTIONS(5175), + [sym_number_literal] = ACTIONS(5189), + [sym_char_literal] = ACTIONS(5189), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(5177), - [sym_false] = ACTIONS(5177), - [sym_null] = ACTIONS(5177), + [sym_true] = ACTIONS(5191), + [sym_false] = ACTIONS(5191), + [sym_null] = ACTIONS(5191), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(5177), + [sym_nullptr] = ACTIONS(5191), }, - [1840] = { + [1843] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5179), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2652), - [anon_sym_STAR_EQ] = ACTIONS(2654), - [anon_sym_SLASH_EQ] = ACTIONS(2654), - [anon_sym_PERCENT_EQ] = ACTIONS(2654), - [anon_sym_PLUS_EQ] = ACTIONS(2654), - [anon_sym_DASH_EQ] = ACTIONS(2654), - [anon_sym_LT_LT_EQ] = ACTIONS(2654), - [anon_sym_GT_GT_EQ] = ACTIONS(2654), - [anon_sym_AMP_EQ] = ACTIONS(2654), - [anon_sym_CARET_EQ] = ACTIONS(2654), - [anon_sym_PIPE_EQ] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(5193), + [anon_sym_EQ] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2654), + [anon_sym_STAR_EQ] = ACTIONS(2656), + [anon_sym_SLASH_EQ] = ACTIONS(2656), + [anon_sym_PERCENT_EQ] = ACTIONS(2656), + [anon_sym_PLUS_EQ] = ACTIONS(2656), + [anon_sym_DASH_EQ] = ACTIONS(2656), + [anon_sym_LT_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_GT_EQ] = ACTIONS(2656), + [anon_sym_AMP_EQ] = ACTIONS(2656), + [anon_sym_CARET_EQ] = ACTIONS(2656), + [anon_sym_PIPE_EQ] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1841] = { + [1844] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4274), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(2654), - [anon_sym_SLASH_EQ] = ACTIONS(2654), - [anon_sym_PERCENT_EQ] = ACTIONS(2654), - [anon_sym_PLUS_EQ] = ACTIONS(2654), - [anon_sym_DASH_EQ] = ACTIONS(2654), - [anon_sym_LT_LT_EQ] = ACTIONS(2654), - [anon_sym_GT_GT_EQ] = ACTIONS(2654), - [anon_sym_AMP_EQ] = ACTIONS(2654), - [anon_sym_CARET_EQ] = ACTIONS(2654), - [anon_sym_PIPE_EQ] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4280), + [anon_sym_EQ] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(2656), + [anon_sym_SLASH_EQ] = ACTIONS(2656), + [anon_sym_PERCENT_EQ] = ACTIONS(2656), + [anon_sym_PLUS_EQ] = ACTIONS(2656), + [anon_sym_DASH_EQ] = ACTIONS(2656), + [anon_sym_LT_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_GT_EQ] = ACTIONS(2656), + [anon_sym_AMP_EQ] = ACTIONS(2656), + [anon_sym_CARET_EQ] = ACTIONS(2656), + [anon_sym_PIPE_EQ] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1842] = { + [1845] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5181), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5195), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1843] = { + [1846] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1844] = { + [1847] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4282), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1845] = { + [1848] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4282), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4288), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1846] = { + [1849] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1847] = { + [1850] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4278), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4284), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1848] = { + [1851] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4286), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4292), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1849] = { + [1852] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4290), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4296), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1850] = { + [1853] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4294), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4300), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1851] = { + [1854] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(4268), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(4274), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1852] = { - [anon_sym_LPAREN] = ACTIONS(5183), - [anon_sym_STAR] = ACTIONS(5183), - [anon_sym_LBRACK] = ACTIONS(5183), - [anon_sym_AMP] = ACTIONS(5185), - [anon_sym_AMP_AMP] = ACTIONS(5183), + [1855] = { + [anon_sym_LPAREN] = ACTIONS(5197), + [anon_sym_STAR] = ACTIONS(5197), + [anon_sym_LBRACK] = ACTIONS(5197), + [anon_sym_AMP] = ACTIONS(5199), + [anon_sym_AMP_AMP] = ACTIONS(5197), [sym_comment] = ACTIONS(49), }, - [1853] = { - [aux_sym_for_statement_repeat1] = STATE(1853), - [anon_sym_COMMA] = ACTIONS(5187), - [anon_sym_RBRACK] = ACTIONS(5179), + [1856] = { + [aux_sym_for_statement_repeat1] = STATE(1856), + [anon_sym_COMMA] = ACTIONS(5201), + [anon_sym_RBRACK] = ACTIONS(5193), [sym_comment] = ACTIONS(49), }, - [1854] = { - [sym_raw_string_literal] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_RBRACK] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2010), - [anon_sym_register] = ACTIONS(2010), - [anon_sym_inline] = ACTIONS(2010), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2010), - [anon_sym_volatile] = ACTIONS(2010), - [anon_sym__Atomic] = ACTIONS(2010), - [anon_sym_mutable] = ACTIONS(2010), - [anon_sym_explicit] = ACTIONS(2010), - [anon_sym_constexpr] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2010), - [anon_sym_DASH] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2008), - [anon_sym_sizeof] = ACTIONS(2010), - [sym_number_literal] = ACTIONS(2008), - [sym_char_literal] = ACTIONS(2008), - [sym_string_literal] = ACTIONS(2008), - [sym_true] = ACTIONS(2010), - [sym_false] = ACTIONS(2010), - [sym_null] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2010), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2010), - [anon_sym_COLON_COLON] = ACTIONS(2008), - [anon_sym_delete] = ACTIONS(2010), - [sym_nullptr] = ACTIONS(2010), + [1857] = { + [sym_raw_string_literal] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_RBRACK] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_inline] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2012), + [anon_sym_volatile] = ACTIONS(2012), + [anon_sym__Atomic] = ACTIONS(2012), + [anon_sym_mutable] = ACTIONS(2012), + [anon_sym_explicit] = ACTIONS(2012), + [anon_sym_constexpr] = ACTIONS(2012), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_sizeof] = ACTIONS(2012), + [sym_number_literal] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2010), + [sym_string_literal] = ACTIONS(2010), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_identifier] = ACTIONS(2012), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_delete] = ACTIONS(2012), + [sym_nullptr] = ACTIONS(2012), }, - [1855] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(5190), + [1858] = { + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(5204), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [1856] = { - [aux_sym_enumerator_list_repeat1] = STATE(1031), - [anon_sym_COMMA] = ACTIONS(5192), - [anon_sym_RBRACE] = ACTIONS(5190), + [1859] = { + [aux_sym_enumerator_list_repeat1] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(5206), + [anon_sym_RBRACE] = ACTIONS(5204), [sym_comment] = ACTIONS(49), }, - [1857] = { - [sym_raw_string_literal] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_RBRACK] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2114), - [anon_sym_register] = ACTIONS(2114), - [anon_sym_inline] = ACTIONS(2114), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2114), - [anon_sym_volatile] = ACTIONS(2114), - [anon_sym__Atomic] = ACTIONS(2114), - [anon_sym_mutable] = ACTIONS(2114), - [anon_sym_explicit] = ACTIONS(2114), - [anon_sym_constexpr] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2114), - [anon_sym_DASH] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_sizeof] = ACTIONS(2114), - [sym_number_literal] = ACTIONS(2112), - [sym_char_literal] = ACTIONS(2112), - [sym_string_literal] = ACTIONS(2112), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_null] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2114), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2114), - [anon_sym_COLON_COLON] = ACTIONS(2112), - [anon_sym_delete] = ACTIONS(2114), - [sym_nullptr] = ACTIONS(2114), + [1860] = { + [sym_raw_string_literal] = ACTIONS(2114), + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_extern] = ACTIONS(2116), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_RBRACK] = ACTIONS(2114), + [anon_sym_static] = ACTIONS(2116), + [anon_sym_register] = ACTIONS(2116), + [anon_sym_inline] = ACTIONS(2116), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2116), + [anon_sym_volatile] = ACTIONS(2116), + [anon_sym__Atomic] = ACTIONS(2116), + [anon_sym_mutable] = ACTIONS(2116), + [anon_sym_explicit] = ACTIONS(2116), + [anon_sym_constexpr] = ACTIONS(2116), + [anon_sym_AMP] = ACTIONS(2114), + [anon_sym_BANG] = ACTIONS(2114), + [anon_sym_TILDE] = ACTIONS(2114), + [anon_sym_PLUS] = ACTIONS(2116), + [anon_sym_DASH] = ACTIONS(2116), + [anon_sym_DASH_DASH] = ACTIONS(2114), + [anon_sym_PLUS_PLUS] = ACTIONS(2114), + [anon_sym_sizeof] = ACTIONS(2116), + [sym_number_literal] = ACTIONS(2114), + [sym_char_literal] = ACTIONS(2114), + [sym_string_literal] = ACTIONS(2114), + [sym_true] = ACTIONS(2116), + [sym_false] = ACTIONS(2116), + [sym_null] = ACTIONS(2116), + [sym_identifier] = ACTIONS(2116), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2116), + [anon_sym_COLON_COLON] = ACTIONS(2114), + [anon_sym_delete] = ACTIONS(2116), + [sym_nullptr] = ACTIONS(2116), }, - [1858] = { + [1861] = { [sym_raw_string_literal] = ACTIONS(1140), [anon_sym_LPAREN] = ACTIONS(1140), [anon_sym_extern] = ACTIONS(1142), @@ -74273,324 +74392,324 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1142), [sym_nullptr] = ACTIONS(1142), }, - [1859] = { - [sym_raw_string_literal] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_RBRACK] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2202), - [anon_sym_register] = ACTIONS(2202), - [anon_sym_inline] = ACTIONS(2202), - [anon_sym_const] = ACTIONS(2202), - [anon_sym_restrict] = ACTIONS(2202), - [anon_sym_volatile] = ACTIONS(2202), - [anon_sym__Atomic] = ACTIONS(2202), - [anon_sym_mutable] = ACTIONS(2202), - [anon_sym_explicit] = ACTIONS(2202), - [anon_sym_constexpr] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2202), - [anon_sym_DASH] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2200), - [anon_sym_sizeof] = ACTIONS(2202), - [sym_number_literal] = ACTIONS(2200), - [sym_char_literal] = ACTIONS(2200), - [sym_string_literal] = ACTIONS(2200), - [sym_true] = ACTIONS(2202), - [sym_false] = ACTIONS(2202), - [sym_null] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2202), + [1862] = { + [sym_raw_string_literal] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_extern] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_RBRACK] = ACTIONS(2202), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_register] = ACTIONS(2204), + [anon_sym_inline] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_restrict] = ACTIONS(2204), + [anon_sym_volatile] = ACTIONS(2204), + [anon_sym__Atomic] = ACTIONS(2204), + [anon_sym_mutable] = ACTIONS(2204), + [anon_sym_explicit] = ACTIONS(2204), + [anon_sym_constexpr] = ACTIONS(2204), + [anon_sym_AMP] = ACTIONS(2202), + [anon_sym_BANG] = ACTIONS(2202), + [anon_sym_TILDE] = ACTIONS(2202), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2202), + [anon_sym_PLUS_PLUS] = ACTIONS(2202), + [anon_sym_sizeof] = ACTIONS(2204), + [sym_number_literal] = ACTIONS(2202), + [sym_char_literal] = ACTIONS(2202), + [sym_string_literal] = ACTIONS(2202), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_identifier] = ACTIONS(2204), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2202), - [anon_sym_COLON_COLON] = ACTIONS(2200), - [anon_sym_delete] = ACTIONS(2202), - [sym_nullptr] = ACTIONS(2202), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_COLON_COLON] = ACTIONS(2202), + [anon_sym_delete] = ACTIONS(2204), + [sym_nullptr] = ACTIONS(2204), }, - [1860] = { - [sym_raw_string_literal] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_RBRACK] = ACTIONS(1799), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_PLUS] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1801), - [anon_sym_DASH_DASH] = ACTIONS(1799), - [anon_sym_PLUS_PLUS] = ACTIONS(1799), - [anon_sym_sizeof] = ACTIONS(1801), - [sym_number_literal] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [sym_string_literal] = ACTIONS(1799), - [sym_true] = ACTIONS(1801), - [sym_false] = ACTIONS(1801), - [sym_null] = ACTIONS(1801), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(1801), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_delete] = ACTIONS(1801), - [sym_nullptr] = ACTIONS(1801), + [1863] = { + [sym_raw_string_literal] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_RBRACK] = ACTIONS(1801), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1801), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_sizeof] = ACTIONS(1803), + [sym_number_literal] = ACTIONS(1801), + [sym_char_literal] = ACTIONS(1801), + [sym_string_literal] = ACTIONS(1801), + [sym_true] = ACTIONS(1803), + [sym_false] = ACTIONS(1803), + [sym_null] = ACTIONS(1803), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [anon_sym_delete] = ACTIONS(1803), + [sym_nullptr] = ACTIONS(1803), }, - [1861] = { - [sym_raw_string_literal] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_RBRACK] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2206), - [anon_sym_register] = ACTIONS(2206), - [anon_sym_inline] = ACTIONS(2206), - [anon_sym_const] = ACTIONS(2206), - [anon_sym_restrict] = ACTIONS(2206), - [anon_sym_volatile] = ACTIONS(2206), - [anon_sym__Atomic] = ACTIONS(2206), - [anon_sym_mutable] = ACTIONS(2206), - [anon_sym_explicit] = ACTIONS(2206), - [anon_sym_constexpr] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2206), - [anon_sym_DASH] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_sizeof] = ACTIONS(2206), - [sym_number_literal] = ACTIONS(2204), - [sym_char_literal] = ACTIONS(2204), - [sym_string_literal] = ACTIONS(2204), - [sym_true] = ACTIONS(2206), - [sym_false] = ACTIONS(2206), - [sym_null] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2206), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2206), - [anon_sym_COLON_COLON] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2206), - [sym_nullptr] = ACTIONS(2206), + [1864] = { + [sym_raw_string_literal] = ACTIONS(2206), + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_extern] = ACTIONS(2208), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_RBRACK] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(2208), + [anon_sym_register] = ACTIONS(2208), + [anon_sym_inline] = ACTIONS(2208), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_restrict] = ACTIONS(2208), + [anon_sym_volatile] = ACTIONS(2208), + [anon_sym__Atomic] = ACTIONS(2208), + [anon_sym_mutable] = ACTIONS(2208), + [anon_sym_explicit] = ACTIONS(2208), + [anon_sym_constexpr] = ACTIONS(2208), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_BANG] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2208), + [anon_sym_DASH] = ACTIONS(2208), + [anon_sym_DASH_DASH] = ACTIONS(2206), + [anon_sym_PLUS_PLUS] = ACTIONS(2206), + [anon_sym_sizeof] = ACTIONS(2208), + [sym_number_literal] = ACTIONS(2206), + [sym_char_literal] = ACTIONS(2206), + [sym_string_literal] = ACTIONS(2206), + [sym_true] = ACTIONS(2208), + [sym_false] = ACTIONS(2208), + [sym_null] = ACTIONS(2208), + [sym_identifier] = ACTIONS(2208), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2208), + [anon_sym_COLON_COLON] = ACTIONS(2206), + [anon_sym_delete] = ACTIONS(2208), + [sym_nullptr] = ACTIONS(2208), }, - [1862] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [1865] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5194), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5194), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5200), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5208), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5208), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5214), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(586), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(588), [anon_sym_DASH] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [1863] = { - [sym_raw_string_literal] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_RBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_inline] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_restrict] = ACTIONS(2290), - [anon_sym_volatile] = ACTIONS(2290), - [anon_sym__Atomic] = ACTIONS(2290), - [anon_sym_mutable] = ACTIONS(2290), - [anon_sym_explicit] = ACTIONS(2290), - [anon_sym_constexpr] = ACTIONS(2290), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_STAR_EQ] = ACTIONS(2288), - [anon_sym_SLASH_EQ] = ACTIONS(2288), - [anon_sym_PERCENT_EQ] = ACTIONS(2288), - [anon_sym_PLUS_EQ] = ACTIONS(2288), - [anon_sym_DASH_EQ] = ACTIONS(2288), - [anon_sym_LT_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_GT_EQ] = ACTIONS(2288), - [anon_sym_AMP_EQ] = ACTIONS(2288), - [anon_sym_CARET_EQ] = ACTIONS(2288), - [anon_sym_PIPE_EQ] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_PLUS] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_sizeof] = ACTIONS(2290), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DASH_GT] = ACTIONS(2288), - [sym_number_literal] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [sym_string_literal] = ACTIONS(2288), - [sym_true] = ACTIONS(2290), - [sym_false] = ACTIONS(2290), - [sym_null] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2290), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2290), - [sym_nullptr] = ACTIONS(2290), + [1866] = { + [sym_raw_string_literal] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_inline] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_restrict] = ACTIONS(2292), + [anon_sym_volatile] = ACTIONS(2292), + [anon_sym__Atomic] = ACTIONS(2292), + [anon_sym_mutable] = ACTIONS(2292), + [anon_sym_explicit] = ACTIONS(2292), + [anon_sym_constexpr] = ACTIONS(2292), + [anon_sym_QMARK] = ACTIONS(2290), + [anon_sym_STAR_EQ] = ACTIONS(2290), + [anon_sym_SLASH_EQ] = ACTIONS(2290), + [anon_sym_PERCENT_EQ] = ACTIONS(2290), + [anon_sym_PLUS_EQ] = ACTIONS(2290), + [anon_sym_DASH_EQ] = ACTIONS(2290), + [anon_sym_LT_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_GT_EQ] = ACTIONS(2290), + [anon_sym_AMP_EQ] = ACTIONS(2290), + [anon_sym_CARET_EQ] = ACTIONS(2290), + [anon_sym_PIPE_EQ] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_CARET] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_EQ_EQ] = ACTIONS(2290), + [anon_sym_BANG_EQ] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_EQ] = ACTIONS(2290), + [anon_sym_LT_LT] = ACTIONS(2292), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_sizeof] = ACTIONS(2292), + [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2290), + [sym_number_literal] = ACTIONS(2290), + [sym_char_literal] = ACTIONS(2290), + [sym_string_literal] = ACTIONS(2290), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [anon_sym_delete] = ACTIONS(2292), + [sym_nullptr] = ACTIONS(2292), }, - [1864] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [1867] = { + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5202), + [anon_sym_GT] = ACTIONS(5216), [sym_comment] = ACTIONS(49), }, - [1865] = { - [sym_raw_string_literal] = ACTIONS(2297), - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_RBRACK] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2299), - [anon_sym_register] = ACTIONS(2299), - [anon_sym_inline] = ACTIONS(2299), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_restrict] = ACTIONS(2299), - [anon_sym_volatile] = ACTIONS(2299), - [anon_sym__Atomic] = ACTIONS(2299), - [anon_sym_mutable] = ACTIONS(2299), - [anon_sym_explicit] = ACTIONS(2299), - [anon_sym_constexpr] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2297), - [anon_sym_BANG] = ACTIONS(2297), - [anon_sym_TILDE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(2299), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_DASH_DASH] = ACTIONS(2297), - [anon_sym_PLUS_PLUS] = ACTIONS(2297), - [anon_sym_sizeof] = ACTIONS(2299), - [sym_number_literal] = ACTIONS(2297), - [sym_char_literal] = ACTIONS(2297), - [sym_string_literal] = ACTIONS(2297), - [sym_true] = ACTIONS(2299), - [sym_false] = ACTIONS(2299), - [sym_null] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2299), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2299), - [anon_sym_COLON_COLON] = ACTIONS(2297), - [anon_sym_delete] = ACTIONS(2299), - [sym_nullptr] = ACTIONS(2299), + [1868] = { + [sym_raw_string_literal] = ACTIONS(2299), + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_RBRACK] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2301), + [anon_sym_register] = ACTIONS(2301), + [anon_sym_inline] = ACTIONS(2301), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_restrict] = ACTIONS(2301), + [anon_sym_volatile] = ACTIONS(2301), + [anon_sym__Atomic] = ACTIONS(2301), + [anon_sym_mutable] = ACTIONS(2301), + [anon_sym_explicit] = ACTIONS(2301), + [anon_sym_constexpr] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_BANG] = ACTIONS(2299), + [anon_sym_TILDE] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2301), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_DASH_DASH] = ACTIONS(2299), + [anon_sym_PLUS_PLUS] = ACTIONS(2299), + [anon_sym_sizeof] = ACTIONS(2301), + [sym_number_literal] = ACTIONS(2299), + [sym_char_literal] = ACTIONS(2299), + [sym_string_literal] = ACTIONS(2299), + [sym_true] = ACTIONS(2301), + [sym_false] = ACTIONS(2301), + [sym_null] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2301), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2299), + [anon_sym_delete] = ACTIONS(2301), + [sym_nullptr] = ACTIONS(2301), }, - [1866] = { + [1869] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5204), + [anon_sym_RBRACK] = ACTIONS(5218), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -74626,189 +74745,189 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1867] = { - [anon_sym_LPAREN] = ACTIONS(5206), - [anon_sym_COMMA] = ACTIONS(5206), - [anon_sym_RPAREN] = ACTIONS(5206), - [anon_sym_SEMI] = ACTIONS(5206), - [anon_sym_RBRACE] = ACTIONS(5206), - [anon_sym_STAR] = ACTIONS(5208), - [anon_sym_LBRACK] = ACTIONS(5206), - [anon_sym_RBRACK] = ACTIONS(5206), - [anon_sym_EQ] = ACTIONS(5208), - [anon_sym_COLON] = ACTIONS(5206), - [anon_sym_QMARK] = ACTIONS(5206), - [anon_sym_STAR_EQ] = ACTIONS(5206), - [anon_sym_SLASH_EQ] = ACTIONS(5206), - [anon_sym_PERCENT_EQ] = ACTIONS(5206), - [anon_sym_PLUS_EQ] = ACTIONS(5206), - [anon_sym_DASH_EQ] = ACTIONS(5206), - [anon_sym_LT_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_GT_EQ] = ACTIONS(5206), - [anon_sym_AMP_EQ] = ACTIONS(5206), - [anon_sym_CARET_EQ] = ACTIONS(5206), - [anon_sym_PIPE_EQ] = ACTIONS(5206), - [anon_sym_AMP] = ACTIONS(5208), - [anon_sym_PIPE_PIPE] = ACTIONS(5206), - [anon_sym_AMP_AMP] = ACTIONS(5206), - [anon_sym_PIPE] = ACTIONS(5208), - [anon_sym_CARET] = ACTIONS(5208), - [anon_sym_EQ_EQ] = ACTIONS(5206), - [anon_sym_BANG_EQ] = ACTIONS(5206), - [anon_sym_LT] = ACTIONS(5208), - [anon_sym_GT] = ACTIONS(5208), - [anon_sym_LT_EQ] = ACTIONS(5206), - [anon_sym_GT_EQ] = ACTIONS(5206), - [anon_sym_LT_LT] = ACTIONS(5208), - [anon_sym_GT_GT] = ACTIONS(5208), - [anon_sym_PLUS] = ACTIONS(5208), - [anon_sym_DASH] = ACTIONS(5208), - [anon_sym_SLASH] = ACTIONS(5208), - [anon_sym_PERCENT] = ACTIONS(5208), - [anon_sym_DASH_DASH] = ACTIONS(5206), - [anon_sym_PLUS_PLUS] = ACTIONS(5206), - [anon_sym_DOT] = ACTIONS(5206), - [anon_sym_DASH_GT] = ACTIONS(5206), + [1870] = { + [anon_sym_LPAREN] = ACTIONS(5220), + [anon_sym_COMMA] = ACTIONS(5220), + [anon_sym_RPAREN] = ACTIONS(5220), + [anon_sym_SEMI] = ACTIONS(5220), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_STAR] = ACTIONS(5222), + [anon_sym_LBRACK] = ACTIONS(5220), + [anon_sym_RBRACK] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(5222), + [anon_sym_COLON] = ACTIONS(5220), + [anon_sym_QMARK] = ACTIONS(5220), + [anon_sym_STAR_EQ] = ACTIONS(5220), + [anon_sym_SLASH_EQ] = ACTIONS(5220), + [anon_sym_PERCENT_EQ] = ACTIONS(5220), + [anon_sym_PLUS_EQ] = ACTIONS(5220), + [anon_sym_DASH_EQ] = ACTIONS(5220), + [anon_sym_LT_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_GT_EQ] = ACTIONS(5220), + [anon_sym_AMP_EQ] = ACTIONS(5220), + [anon_sym_CARET_EQ] = ACTIONS(5220), + [anon_sym_PIPE_EQ] = ACTIONS(5220), + [anon_sym_AMP] = ACTIONS(5222), + [anon_sym_PIPE_PIPE] = ACTIONS(5220), + [anon_sym_AMP_AMP] = ACTIONS(5220), + [anon_sym_PIPE] = ACTIONS(5222), + [anon_sym_CARET] = ACTIONS(5222), + [anon_sym_EQ_EQ] = ACTIONS(5220), + [anon_sym_BANG_EQ] = ACTIONS(5220), + [anon_sym_LT] = ACTIONS(5222), + [anon_sym_GT] = ACTIONS(5222), + [anon_sym_LT_EQ] = ACTIONS(5220), + [anon_sym_GT_EQ] = ACTIONS(5220), + [anon_sym_LT_LT] = ACTIONS(5222), + [anon_sym_GT_GT] = ACTIONS(5222), + [anon_sym_PLUS] = ACTIONS(5222), + [anon_sym_DASH] = ACTIONS(5222), + [anon_sym_SLASH] = ACTIONS(5222), + [anon_sym_PERCENT] = ACTIONS(5222), + [anon_sym_DASH_DASH] = ACTIONS(5220), + [anon_sym_PLUS_PLUS] = ACTIONS(5220), + [anon_sym_DOT] = ACTIONS(5220), + [anon_sym_DASH_GT] = ACTIONS(5220), [sym_comment] = ACTIONS(49), }, - [1868] = { - [anon_sym_LPAREN] = ACTIONS(5210), - [anon_sym_COMMA] = ACTIONS(5210), - [anon_sym_RPAREN] = ACTIONS(5210), - [anon_sym_SEMI] = ACTIONS(5210), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_STAR] = ACTIONS(5212), - [anon_sym_LBRACK] = ACTIONS(5210), - [anon_sym_RBRACK] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(5212), - [anon_sym_COLON] = ACTIONS(5210), - [anon_sym_QMARK] = ACTIONS(5210), - [anon_sym_STAR_EQ] = ACTIONS(5210), - [anon_sym_SLASH_EQ] = ACTIONS(5210), - [anon_sym_PERCENT_EQ] = ACTIONS(5210), - [anon_sym_PLUS_EQ] = ACTIONS(5210), - [anon_sym_DASH_EQ] = ACTIONS(5210), - [anon_sym_LT_LT_EQ] = ACTIONS(5210), - [anon_sym_GT_GT_EQ] = ACTIONS(5210), - [anon_sym_AMP_EQ] = ACTIONS(5210), - [anon_sym_CARET_EQ] = ACTIONS(5210), - [anon_sym_PIPE_EQ] = ACTIONS(5210), - [anon_sym_AMP] = ACTIONS(5212), - [anon_sym_PIPE_PIPE] = ACTIONS(5210), - [anon_sym_AMP_AMP] = ACTIONS(5210), - [anon_sym_PIPE] = ACTIONS(5212), - [anon_sym_CARET] = ACTIONS(5212), - [anon_sym_EQ_EQ] = ACTIONS(5210), - [anon_sym_BANG_EQ] = ACTIONS(5210), - [anon_sym_LT] = ACTIONS(5212), - [anon_sym_GT] = ACTIONS(5212), - [anon_sym_LT_EQ] = ACTIONS(5210), - [anon_sym_GT_EQ] = ACTIONS(5210), - [anon_sym_LT_LT] = ACTIONS(5212), - [anon_sym_GT_GT] = ACTIONS(5212), - [anon_sym_PLUS] = ACTIONS(5212), - [anon_sym_DASH] = ACTIONS(5212), - [anon_sym_SLASH] = ACTIONS(5212), - [anon_sym_PERCENT] = ACTIONS(5212), - [anon_sym_DASH_DASH] = ACTIONS(5210), - [anon_sym_PLUS_PLUS] = ACTIONS(5210), - [anon_sym_DOT] = ACTIONS(5210), - [anon_sym_DASH_GT] = ACTIONS(5210), + [1871] = { + [anon_sym_LPAREN] = ACTIONS(5224), + [anon_sym_COMMA] = ACTIONS(5224), + [anon_sym_RPAREN] = ACTIONS(5224), + [anon_sym_SEMI] = ACTIONS(5224), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_STAR] = ACTIONS(5226), + [anon_sym_LBRACK] = ACTIONS(5224), + [anon_sym_RBRACK] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(5226), + [anon_sym_COLON] = ACTIONS(5224), + [anon_sym_QMARK] = ACTIONS(5224), + [anon_sym_STAR_EQ] = ACTIONS(5224), + [anon_sym_SLASH_EQ] = ACTIONS(5224), + [anon_sym_PERCENT_EQ] = ACTIONS(5224), + [anon_sym_PLUS_EQ] = ACTIONS(5224), + [anon_sym_DASH_EQ] = ACTIONS(5224), + [anon_sym_LT_LT_EQ] = ACTIONS(5224), + [anon_sym_GT_GT_EQ] = ACTIONS(5224), + [anon_sym_AMP_EQ] = ACTIONS(5224), + [anon_sym_CARET_EQ] = ACTIONS(5224), + [anon_sym_PIPE_EQ] = ACTIONS(5224), + [anon_sym_AMP] = ACTIONS(5226), + [anon_sym_PIPE_PIPE] = ACTIONS(5224), + [anon_sym_AMP_AMP] = ACTIONS(5224), + [anon_sym_PIPE] = ACTIONS(5226), + [anon_sym_CARET] = ACTIONS(5226), + [anon_sym_EQ_EQ] = ACTIONS(5224), + [anon_sym_BANG_EQ] = ACTIONS(5224), + [anon_sym_LT] = ACTIONS(5226), + [anon_sym_GT] = ACTIONS(5226), + [anon_sym_LT_EQ] = ACTIONS(5224), + [anon_sym_GT_EQ] = ACTIONS(5224), + [anon_sym_LT_LT] = ACTIONS(5226), + [anon_sym_GT_GT] = ACTIONS(5226), + [anon_sym_PLUS] = ACTIONS(5226), + [anon_sym_DASH] = ACTIONS(5226), + [anon_sym_SLASH] = ACTIONS(5226), + [anon_sym_PERCENT] = ACTIONS(5226), + [anon_sym_DASH_DASH] = ACTIONS(5224), + [anon_sym_PLUS_PLUS] = ACTIONS(5224), + [anon_sym_DOT] = ACTIONS(5224), + [anon_sym_DASH_GT] = ACTIONS(5224), [sym_comment] = ACTIONS(49), }, - [1869] = { - [sym_argument_list] = STATE(2235), - [sym_initializer_list] = STATE(2235), + [1872] = { + [sym_argument_list] = STATE(2241), + [sym_initializer_list] = STATE(2241), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), }, - [1870] = { - [anon_sym_LPAREN] = ACTIONS(5214), - [anon_sym_COMMA] = ACTIONS(5214), - [anon_sym_RPAREN] = ACTIONS(5214), - [anon_sym_SEMI] = ACTIONS(5214), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_STAR] = ACTIONS(5216), - [anon_sym_LBRACK] = ACTIONS(5214), - [anon_sym_RBRACK] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(5216), - [anon_sym_COLON] = ACTIONS(5214), - [anon_sym_QMARK] = ACTIONS(5214), - [anon_sym_STAR_EQ] = ACTIONS(5214), - [anon_sym_SLASH_EQ] = ACTIONS(5214), - [anon_sym_PERCENT_EQ] = ACTIONS(5214), - [anon_sym_PLUS_EQ] = ACTIONS(5214), - [anon_sym_DASH_EQ] = ACTIONS(5214), - [anon_sym_LT_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_GT_EQ] = ACTIONS(5214), - [anon_sym_AMP_EQ] = ACTIONS(5214), - [anon_sym_CARET_EQ] = ACTIONS(5214), - [anon_sym_PIPE_EQ] = ACTIONS(5214), - [anon_sym_AMP] = ACTIONS(5216), - [anon_sym_PIPE_PIPE] = ACTIONS(5214), - [anon_sym_AMP_AMP] = ACTIONS(5214), - [anon_sym_PIPE] = ACTIONS(5216), - [anon_sym_CARET] = ACTIONS(5216), - [anon_sym_EQ_EQ] = ACTIONS(5214), - [anon_sym_BANG_EQ] = ACTIONS(5214), - [anon_sym_LT] = ACTIONS(5216), - [anon_sym_GT] = ACTIONS(5216), - [anon_sym_LT_EQ] = ACTIONS(5214), - [anon_sym_GT_EQ] = ACTIONS(5214), - [anon_sym_LT_LT] = ACTIONS(5216), - [anon_sym_GT_GT] = ACTIONS(5216), - [anon_sym_PLUS] = ACTIONS(5216), - [anon_sym_DASH] = ACTIONS(5216), - [anon_sym_SLASH] = ACTIONS(5216), - [anon_sym_PERCENT] = ACTIONS(5216), - [anon_sym_DASH_DASH] = ACTIONS(5214), - [anon_sym_PLUS_PLUS] = ACTIONS(5214), - [anon_sym_DOT] = ACTIONS(5214), - [anon_sym_DASH_GT] = ACTIONS(5214), + [1873] = { + [anon_sym_LPAREN] = ACTIONS(5228), + [anon_sym_COMMA] = ACTIONS(5228), + [anon_sym_RPAREN] = ACTIONS(5228), + [anon_sym_SEMI] = ACTIONS(5228), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_STAR] = ACTIONS(5230), + [anon_sym_LBRACK] = ACTIONS(5228), + [anon_sym_RBRACK] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(5230), + [anon_sym_COLON] = ACTIONS(5228), + [anon_sym_QMARK] = ACTIONS(5228), + [anon_sym_STAR_EQ] = ACTIONS(5228), + [anon_sym_SLASH_EQ] = ACTIONS(5228), + [anon_sym_PERCENT_EQ] = ACTIONS(5228), + [anon_sym_PLUS_EQ] = ACTIONS(5228), + [anon_sym_DASH_EQ] = ACTIONS(5228), + [anon_sym_LT_LT_EQ] = ACTIONS(5228), + [anon_sym_GT_GT_EQ] = ACTIONS(5228), + [anon_sym_AMP_EQ] = ACTIONS(5228), + [anon_sym_CARET_EQ] = ACTIONS(5228), + [anon_sym_PIPE_EQ] = ACTIONS(5228), + [anon_sym_AMP] = ACTIONS(5230), + [anon_sym_PIPE_PIPE] = ACTIONS(5228), + [anon_sym_AMP_AMP] = ACTIONS(5228), + [anon_sym_PIPE] = ACTIONS(5230), + [anon_sym_CARET] = ACTIONS(5230), + [anon_sym_EQ_EQ] = ACTIONS(5228), + [anon_sym_BANG_EQ] = ACTIONS(5228), + [anon_sym_LT] = ACTIONS(5230), + [anon_sym_GT] = ACTIONS(5230), + [anon_sym_LT_EQ] = ACTIONS(5228), + [anon_sym_GT_EQ] = ACTIONS(5228), + [anon_sym_LT_LT] = ACTIONS(5230), + [anon_sym_GT_GT] = ACTIONS(5230), + [anon_sym_PLUS] = ACTIONS(5230), + [anon_sym_DASH] = ACTIONS(5230), + [anon_sym_SLASH] = ACTIONS(5230), + [anon_sym_PERCENT] = ACTIONS(5230), + [anon_sym_DASH_DASH] = ACTIONS(5228), + [anon_sym_PLUS_PLUS] = ACTIONS(5228), + [anon_sym_DOT] = ACTIONS(5228), + [anon_sym_DASH_GT] = ACTIONS(5228), [sym_comment] = ACTIONS(49), }, - [1871] = { - [sym_argument_list] = STATE(2236), - [sym_initializer_list] = STATE(2236), + [1874] = { + [sym_argument_list] = STATE(2242), + [sym_initializer_list] = STATE(2242), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), [sym_comment] = ACTIONS(49), }, - [1872] = { - [sym__expression] = STATE(2237), - [sym_conditional_expression] = STATE(2237), - [sym_assignment_expression] = STATE(2237), - [sym_pointer_expression] = STATE(2237), - [sym_logical_expression] = STATE(2237), - [sym_bitwise_expression] = STATE(2237), - [sym_equality_expression] = STATE(2237), - [sym_relational_expression] = STATE(2237), - [sym_shift_expression] = STATE(2237), - [sym_math_expression] = STATE(2237), - [sym_cast_expression] = STATE(2237), - [sym_sizeof_expression] = STATE(2237), - [sym_subscript_expression] = STATE(2237), - [sym_call_expression] = STATE(2237), - [sym_field_expression] = STATE(2237), - [sym_compound_literal_expression] = STATE(2237), - [sym_parenthesized_expression] = STATE(2237), - [sym_concatenated_string] = STATE(2237), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2237), - [sym_new_expression] = STATE(2237), - [sym_delete_expression] = STATE(2237), - [sym_lambda_expression] = STATE(2237), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5218), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [1875] = { + [sym__expression] = STATE(2243), + [sym_conditional_expression] = STATE(2243), + [sym_assignment_expression] = STATE(2243), + [sym_pointer_expression] = STATE(2243), + [sym_logical_expression] = STATE(2243), + [sym_bitwise_expression] = STATE(2243), + [sym_equality_expression] = STATE(2243), + [sym_relational_expression] = STATE(2243), + [sym_shift_expression] = STATE(2243), + [sym_math_expression] = STATE(2243), + [sym_cast_expression] = STATE(2243), + [sym_sizeof_expression] = STATE(2243), + [sym_subscript_expression] = STATE(2243), + [sym_call_expression] = STATE(2243), + [sym_field_expression] = STATE(2243), + [sym_compound_literal_expression] = STATE(2243), + [sym_parenthesized_expression] = STATE(2243), + [sym_concatenated_string] = STATE(2243), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2243), + [sym_new_expression] = STATE(2243), + [sym_delete_expression] = STATE(2243), + [sym_lambda_expression] = STATE(2243), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5232), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(584), [anon_sym_TILDE] = ACTIONS(586), [anon_sym_PLUS] = ACTIONS(588), @@ -74816,37 +74935,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(5218), - [sym_char_literal] = ACTIONS(5218), + [sym_number_literal] = ACTIONS(5232), + [sym_char_literal] = ACTIONS(5232), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(5220), - [sym_false] = ACTIONS(5220), - [sym_null] = ACTIONS(5220), + [sym_true] = ACTIONS(5234), + [sym_false] = ACTIONS(5234), + [sym_null] = ACTIONS(5234), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(5220), + [sym_nullptr] = ACTIONS(5234), }, - [1873] = { + [1876] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), + [anon_sym_RBRACK] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), [anon_sym_AMP] = ACTIONS(1532), [anon_sym_PIPE_PIPE] = ACTIONS(1534), [anon_sym_AMP_AMP] = ACTIONS(1536), @@ -74870,80 +74989,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1874] = { - [anon_sym_LPAREN] = ACTIONS(5226), - [anon_sym_COMMA] = ACTIONS(5226), - [anon_sym_RPAREN] = ACTIONS(5226), - [anon_sym_SEMI] = ACTIONS(5226), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_STAR] = ACTIONS(5228), - [anon_sym_LBRACK] = ACTIONS(5226), - [anon_sym_RBRACK] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(5228), - [anon_sym_COLON] = ACTIONS(5226), - [anon_sym_QMARK] = ACTIONS(5226), - [anon_sym_STAR_EQ] = ACTIONS(5226), - [anon_sym_SLASH_EQ] = ACTIONS(5226), - [anon_sym_PERCENT_EQ] = ACTIONS(5226), - [anon_sym_PLUS_EQ] = ACTIONS(5226), - [anon_sym_DASH_EQ] = ACTIONS(5226), - [anon_sym_LT_LT_EQ] = ACTIONS(5226), - [anon_sym_GT_GT_EQ] = ACTIONS(5226), - [anon_sym_AMP_EQ] = ACTIONS(5226), - [anon_sym_CARET_EQ] = ACTIONS(5226), - [anon_sym_PIPE_EQ] = ACTIONS(5226), - [anon_sym_AMP] = ACTIONS(5228), - [anon_sym_PIPE_PIPE] = ACTIONS(5226), - [anon_sym_AMP_AMP] = ACTIONS(5226), - [anon_sym_PIPE] = ACTIONS(5228), - [anon_sym_CARET] = ACTIONS(5228), - [anon_sym_EQ_EQ] = ACTIONS(5226), - [anon_sym_BANG_EQ] = ACTIONS(5226), - [anon_sym_LT] = ACTIONS(5228), - [anon_sym_GT] = ACTIONS(5228), - [anon_sym_LT_EQ] = ACTIONS(5226), - [anon_sym_GT_EQ] = ACTIONS(5226), - [anon_sym_LT_LT] = ACTIONS(5228), - [anon_sym_GT_GT] = ACTIONS(5228), - [anon_sym_PLUS] = ACTIONS(5228), - [anon_sym_DASH] = ACTIONS(5228), - [anon_sym_SLASH] = ACTIONS(5228), - [anon_sym_PERCENT] = ACTIONS(5228), - [anon_sym_DASH_DASH] = ACTIONS(5226), - [anon_sym_PLUS_PLUS] = ACTIONS(5226), - [anon_sym_DOT] = ACTIONS(5226), - [anon_sym_DASH_GT] = ACTIONS(5226), + [1877] = { + [anon_sym_LPAREN] = ACTIONS(5240), + [anon_sym_COMMA] = ACTIONS(5240), + [anon_sym_RPAREN] = ACTIONS(5240), + [anon_sym_SEMI] = ACTIONS(5240), + [anon_sym_RBRACE] = ACTIONS(5240), + [anon_sym_STAR] = ACTIONS(5242), + [anon_sym_LBRACK] = ACTIONS(5240), + [anon_sym_RBRACK] = ACTIONS(5240), + [anon_sym_EQ] = ACTIONS(5242), + [anon_sym_COLON] = ACTIONS(5240), + [anon_sym_QMARK] = ACTIONS(5240), + [anon_sym_STAR_EQ] = ACTIONS(5240), + [anon_sym_SLASH_EQ] = ACTIONS(5240), + [anon_sym_PERCENT_EQ] = ACTIONS(5240), + [anon_sym_PLUS_EQ] = ACTIONS(5240), + [anon_sym_DASH_EQ] = ACTIONS(5240), + [anon_sym_LT_LT_EQ] = ACTIONS(5240), + [anon_sym_GT_GT_EQ] = ACTIONS(5240), + [anon_sym_AMP_EQ] = ACTIONS(5240), + [anon_sym_CARET_EQ] = ACTIONS(5240), + [anon_sym_PIPE_EQ] = ACTIONS(5240), + [anon_sym_AMP] = ACTIONS(5242), + [anon_sym_PIPE_PIPE] = ACTIONS(5240), + [anon_sym_AMP_AMP] = ACTIONS(5240), + [anon_sym_PIPE] = ACTIONS(5242), + [anon_sym_CARET] = ACTIONS(5242), + [anon_sym_EQ_EQ] = ACTIONS(5240), + [anon_sym_BANG_EQ] = ACTIONS(5240), + [anon_sym_LT] = ACTIONS(5242), + [anon_sym_GT] = ACTIONS(5242), + [anon_sym_LT_EQ] = ACTIONS(5240), + [anon_sym_GT_EQ] = ACTIONS(5240), + [anon_sym_LT_LT] = ACTIONS(5242), + [anon_sym_GT_GT] = ACTIONS(5242), + [anon_sym_PLUS] = ACTIONS(5242), + [anon_sym_DASH] = ACTIONS(5242), + [anon_sym_SLASH] = ACTIONS(5242), + [anon_sym_PERCENT] = ACTIONS(5242), + [anon_sym_DASH_DASH] = ACTIONS(5240), + [anon_sym_PLUS_PLUS] = ACTIONS(5240), + [anon_sym_DOT] = ACTIONS(5240), + [anon_sym_DASH_GT] = ACTIONS(5240), [sym_comment] = ACTIONS(49), }, - [1875] = { - [sym__expression] = STATE(2238), - [sym_conditional_expression] = STATE(2238), - [sym_assignment_expression] = STATE(2238), - [sym_pointer_expression] = STATE(2238), - [sym_logical_expression] = STATE(2238), - [sym_bitwise_expression] = STATE(2238), - [sym_equality_expression] = STATE(2238), - [sym_relational_expression] = STATE(2238), - [sym_shift_expression] = STATE(2238), - [sym_math_expression] = STATE(2238), - [sym_cast_expression] = STATE(2238), - [sym_sizeof_expression] = STATE(2238), - [sym_subscript_expression] = STATE(2238), - [sym_call_expression] = STATE(2238), - [sym_field_expression] = STATE(2238), - [sym_compound_literal_expression] = STATE(2238), - [sym_parenthesized_expression] = STATE(2238), - [sym_concatenated_string] = STATE(2238), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2238), - [sym_new_expression] = STATE(2238), - [sym_delete_expression] = STATE(2238), - [sym_lambda_expression] = STATE(2238), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5230), + [1878] = { + [sym__expression] = STATE(2244), + [sym_conditional_expression] = STATE(2244), + [sym_assignment_expression] = STATE(2244), + [sym_pointer_expression] = STATE(2244), + [sym_logical_expression] = STATE(2244), + [sym_bitwise_expression] = STATE(2244), + [sym_equality_expression] = STATE(2244), + [sym_relational_expression] = STATE(2244), + [sym_shift_expression] = STATE(2244), + [sym_math_expression] = STATE(2244), + [sym_cast_expression] = STATE(2244), + [sym_sizeof_expression] = STATE(2244), + [sym_subscript_expression] = STATE(2244), + [sym_call_expression] = STATE(2244), + [sym_field_expression] = STATE(2244), + [sym_compound_literal_expression] = STATE(2244), + [sym_parenthesized_expression] = STATE(2244), + [sym_concatenated_string] = STATE(2244), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2244), + [sym_new_expression] = STATE(2244), + [sym_delete_expression] = STATE(2244), + [sym_lambda_expression] = STATE(2244), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5244), [anon_sym_LPAREN] = ACTIONS(566), [anon_sym_STAR] = ACTIONS(568), [anon_sym_LBRACK] = ACTIONS(570), @@ -74955,25 +75074,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(590), [anon_sym_PLUS_PLUS] = ACTIONS(590), [anon_sym_sizeof] = ACTIONS(592), - [sym_number_literal] = ACTIONS(5230), - [sym_char_literal] = ACTIONS(5230), + [sym_number_literal] = ACTIONS(5244), + [sym_char_literal] = ACTIONS(5244), [sym_string_literal] = ACTIONS(594), - [sym_true] = ACTIONS(5232), - [sym_false] = ACTIONS(5232), - [sym_null] = ACTIONS(5232), + [sym_true] = ACTIONS(5246), + [sym_false] = ACTIONS(5246), + [sym_null] = ACTIONS(5246), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1415), [anon_sym_delete] = ACTIONS(608), - [sym_nullptr] = ACTIONS(5232), + [sym_nullptr] = ACTIONS(5246), }, - [1876] = { - [sym_type_qualifier] = STATE(2239), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2239), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1879] = { + [sym_type_qualifier] = STATE(2245), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2245), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -74981,43 +75100,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(4320), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5234), + [sym_noexcept] = ACTIONS(5248), }, - [1877] = { - [sym__type_specifier] = STATE(2241), - [sym_sized_type_specifier] = STATE(2241), - [sym_enum_specifier] = STATE(2241), - [sym_struct_specifier] = STATE(2241), - [sym_union_specifier] = STATE(2241), - [sym_macro_type_specifier] = STATE(2241), - [sym_class_specifier] = STATE(2241), - [sym_dependent_type] = STATE(2241), + [1880] = { + [sym__type_specifier] = STATE(2247), + [sym_sized_type_specifier] = STATE(2247), + [sym_enum_specifier] = STATE(2247), + [sym_struct_specifier] = STATE(2247), + [sym_union_specifier] = STATE(2247), + [sym_macro_type_specifier] = STATE(2247), + [sym_class_specifier] = STATE(2247), + [sym_dependent_type] = STATE(2247), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(2242), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), - [sym_primitive_type] = ACTIONS(5238), + [aux_sym_sized_type_specifier_repeat1] = STATE(2248), + [anon_sym_unsigned] = ACTIONS(5250), + [anon_sym_long] = ACTIONS(5250), + [anon_sym_short] = ACTIONS(5250), + [sym_primitive_type] = ACTIONS(5252), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), [anon_sym_union] = ACTIONS(430), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), - [sym_auto] = ACTIONS(5238), - [anon_sym_typename] = ACTIONS(5240), + [sym_auto] = ACTIONS(5252), + [anon_sym_typename] = ACTIONS(5254), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1878] = { - [sym_type_qualifier] = STATE(2243), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2243), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1881] = { + [sym_type_qualifier] = STATE(2249), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2249), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -75025,17 +75144,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(4320), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5242), + [sym_noexcept] = ACTIONS(5256), }, - [1879] = { - [sym_type_qualifier] = STATE(1887), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1887), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [1882] = { + [sym_type_qualifier] = STATE(1890), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1890), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -75043,19 +75162,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(2812), + [anon_sym_DASH_GT] = ACTIONS(2814), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4338), + [sym_noexcept] = ACTIONS(4344), }, - [1880] = { + [1883] = { [sym_enumerator_list] = STATE(71), [anon_sym_LBRACE] = ACTIONS(125), - [sym_identifier] = ACTIONS(5244), + [sym_identifier] = ACTIONS(5258), [sym_comment] = ACTIONS(49), }, - [1881] = { + [1884] = { [sym_field_declaration_list] = STATE(76), - [sym__class_name] = STATE(2245), + [sym__class_name] = STATE(2251), [sym_base_class_clause] = STATE(78), [sym_template_type] = STATE(196), [sym_scoped_type_identifier] = STATE(590), @@ -75066,9 +75185,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1882] = { + [1885] = { [sym_field_declaration_list] = STATE(82), - [sym__class_name] = STATE(2246), + [sym__class_name] = STATE(2252), [sym_base_class_clause] = STATE(84), [sym_template_type] = STATE(196), [sym_scoped_type_identifier] = STATE(590), @@ -75079,9 +75198,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1883] = { + [1886] = { [sym_field_declaration_list] = STATE(89), - [sym__class_name] = STATE(2247), + [sym__class_name] = STATE(2253), [sym_base_class_clause] = STATE(91), [sym_template_type] = STATE(196), [sym_scoped_type_identifier] = STATE(590), @@ -75092,7 +75211,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1884] = { + [1887] = { [sym__type_specifier] = STATE(93), [sym_sized_type_specifier] = STATE(93), [sym_enum_specifier] = STATE(93), @@ -75104,186 +75223,186 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(1886), - [anon_sym_unsigned] = ACTIONS(4324), - [anon_sym_long] = ACTIONS(4324), - [anon_sym_short] = ACTIONS(4324), + [aux_sym_sized_type_specifier_repeat1] = STATE(1889), + [anon_sym_unsigned] = ACTIONS(4330), + [anon_sym_long] = ACTIONS(4330), + [anon_sym_short] = ACTIONS(4330), [sym_primitive_type] = ACTIONS(150), - [anon_sym_enum] = ACTIONS(4328), - [anon_sym_struct] = ACTIONS(4330), - [anon_sym_union] = ACTIONS(4332), + [anon_sym_enum] = ACTIONS(4334), + [anon_sym_struct] = ACTIONS(4336), + [anon_sym_union] = ACTIONS(4338), [sym_identifier] = ACTIONS(434), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4334), + [anon_sym_class] = ACTIONS(4340), [sym_auto] = ACTIONS(150), - [anon_sym_typename] = ACTIONS(4336), + [anon_sym_typename] = ACTIONS(4342), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1885] = { - [sym__abstract_declarator] = STATE(2250), - [sym_abstract_pointer_declarator] = STATE(2250), - [sym_abstract_function_declarator] = STATE(2250), - [sym_abstract_array_declarator] = STATE(2250), + [1888] = { + [sym__abstract_declarator] = STATE(2256), + [sym_abstract_pointer_declarator] = STATE(2256), + [sym_abstract_function_declarator] = STATE(2256), + [sym_abstract_array_declarator] = STATE(2256), [sym_parameter_list] = STATE(809), - [sym_abstract_reference_declarator] = STATE(2250), + [sym_abstract_reference_declarator] = STATE(2256), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(5260), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_AMP_AMP] = ACTIONS(5264), [sym_comment] = ACTIONS(49), }, - [1886] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2251), + [1889] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2257), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_LBRACE] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(5252), - [anon_sym_long] = ACTIONS(5252), - [anon_sym_short] = ACTIONS(5252), + [anon_sym_unsigned] = ACTIONS(5266), + [anon_sym_long] = ACTIONS(5266), + [anon_sym_short] = ACTIONS(5266), [sym_primitive_type] = ACTIONS(244), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [sym_identifier] = ACTIONS(1135), [sym_comment] = ACTIONS(49), }, - [1887] = { - [sym_type_qualifier] = STATE(1887), - [aux_sym_abstract_function_declarator_repeat1] = STATE(1887), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5254), + [1890] = { + [sym_type_qualifier] = STATE(1890), + [aux_sym_abstract_function_declarator_repeat1] = STATE(1890), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5268), }, - [1888] = { - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_RBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2290), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_inline] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_restrict] = ACTIONS(2290), - [anon_sym_volatile] = ACTIONS(2290), - [anon_sym__Atomic] = ACTIONS(2290), - [anon_sym_mutable] = ACTIONS(2290), - [anon_sym_explicit] = ACTIONS(2290), - [anon_sym_constexpr] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_STAR_EQ] = ACTIONS(2288), - [anon_sym_SLASH_EQ] = ACTIONS(2288), - [anon_sym_PERCENT_EQ] = ACTIONS(2288), - [anon_sym_PLUS_EQ] = ACTIONS(2288), - [anon_sym_DASH_EQ] = ACTIONS(2288), - [anon_sym_LT_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_GT_EQ] = ACTIONS(2288), - [anon_sym_AMP_EQ] = ACTIONS(2288), - [anon_sym_CARET_EQ] = ACTIONS(2288), - [anon_sym_PIPE_EQ] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_PLUS] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DASH_GT] = ACTIONS(2288), - [sym_identifier] = ACTIONS(2290), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [sym_operator_name] = ACTIONS(2288), + [1891] = { + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_inline] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_restrict] = ACTIONS(2292), + [anon_sym_volatile] = ACTIONS(2292), + [anon_sym__Atomic] = ACTIONS(2292), + [anon_sym_mutable] = ACTIONS(2292), + [anon_sym_explicit] = ACTIONS(2292), + [anon_sym_constexpr] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_QMARK] = ACTIONS(2290), + [anon_sym_STAR_EQ] = ACTIONS(2290), + [anon_sym_SLASH_EQ] = ACTIONS(2290), + [anon_sym_PERCENT_EQ] = ACTIONS(2290), + [anon_sym_PLUS_EQ] = ACTIONS(2290), + [anon_sym_DASH_EQ] = ACTIONS(2290), + [anon_sym_LT_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_GT_EQ] = ACTIONS(2290), + [anon_sym_AMP_EQ] = ACTIONS(2290), + [anon_sym_CARET_EQ] = ACTIONS(2290), + [anon_sym_PIPE_EQ] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_CARET] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_EQ_EQ] = ACTIONS(2290), + [anon_sym_BANG_EQ] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_EQ] = ACTIONS(2290), + [anon_sym_LT_LT] = ACTIONS(2292), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [sym_operator_name] = ACTIONS(2290), }, - [1889] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [1892] = { + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5257), + [anon_sym_GT] = ACTIONS(5271), [sym_comment] = ACTIONS(49), }, - [1890] = { - [sym_raw_string_literal] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_extern] = ACTIONS(2290), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_RBRACK] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2290), - [anon_sym_register] = ACTIONS(2290), - [anon_sym_inline] = ACTIONS(2290), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_restrict] = ACTIONS(2290), - [anon_sym_volatile] = ACTIONS(2290), - [anon_sym__Atomic] = ACTIONS(2290), - [anon_sym_mutable] = ACTIONS(2290), - [anon_sym_explicit] = ACTIONS(2290), - [anon_sym_constexpr] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_sizeof] = ACTIONS(2290), - [sym_number_literal] = ACTIONS(2288), - [sym_char_literal] = ACTIONS(2288), - [sym_string_literal] = ACTIONS(2288), - [sym_true] = ACTIONS(2290), - [sym_false] = ACTIONS(2290), - [sym_null] = ACTIONS(2290), - [sym_identifier] = ACTIONS(2290), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2290), - [anon_sym_COLON_COLON] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2290), - [sym_nullptr] = ACTIONS(2290), + [1893] = { + [sym_raw_string_literal] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_RBRACK] = ACTIONS(2290), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_register] = ACTIONS(2292), + [anon_sym_inline] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_restrict] = ACTIONS(2292), + [anon_sym_volatile] = ACTIONS(2292), + [anon_sym__Atomic] = ACTIONS(2292), + [anon_sym_mutable] = ACTIONS(2292), + [anon_sym_explicit] = ACTIONS(2292), + [anon_sym_constexpr] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2290), + [anon_sym_BANG] = ACTIONS(2290), + [anon_sym_TILDE] = ACTIONS(2290), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_sizeof] = ACTIONS(2292), + [sym_number_literal] = ACTIONS(2290), + [sym_char_literal] = ACTIONS(2290), + [sym_string_literal] = ACTIONS(2290), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_identifier] = ACTIONS(2292), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_COLON_COLON] = ACTIONS(2290), + [anon_sym_delete] = ACTIONS(2292), + [sym_nullptr] = ACTIONS(2292), }, - [1891] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [1894] = { + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5259), + [anon_sym_GT] = ACTIONS(5273), [sym_comment] = ACTIONS(49), }, - [1892] = { - [anon_sym_RBRACE] = ACTIONS(5261), + [1895] = { + [anon_sym_RBRACE] = ACTIONS(5275), [sym_comment] = ACTIONS(49), }, - [1893] = { + [1896] = { [anon_sym_LPAREN] = ACTIONS(985), [anon_sym_COMMA] = ACTIONS(985), [anon_sym_RPAREN] = ACTIONS(985), @@ -75307,13 +75426,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(985), }, - [1894] = { - [aux_sym_enumerator_list_repeat1] = STATE(2256), - [anon_sym_COMMA] = ACTIONS(5263), - [anon_sym_RBRACE] = ACTIONS(5261), + [1897] = { + [aux_sym_enumerator_list_repeat1] = STATE(2262), + [anon_sym_COMMA] = ACTIONS(5277), + [anon_sym_RBRACE] = ACTIONS(5275), [sym_comment] = ACTIONS(49), }, - [1895] = { + [1898] = { [anon_sym_LPAREN] = ACTIONS(995), [anon_sym_COMMA] = ACTIONS(995), [anon_sym_RPAREN] = ACTIONS(995), @@ -75337,7 +75456,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(995), }, - [1896] = { + [1899] = { [anon_sym_LPAREN] = ACTIONS(1007), [anon_sym_COMMA] = ACTIONS(1007), [anon_sym_RPAREN] = ACTIONS(1007), @@ -75361,7 +75480,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(1007), }, - [1897] = { + [1900] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), [sym_type_definition] = STATE(563), @@ -75406,7 +75525,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), - [anon_sym_RBRACE] = ACTIONS(5265), + [anon_sym_RBRACE] = ACTIONS(5279), [anon_sym_STAR] = ACTIONS(25), [anon_sym_static] = ACTIONS(27), [anon_sym_register] = ACTIONS(27), @@ -75442,7 +75561,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [1898] = { + [1901] = { [anon_sym_LPAREN] = ACTIONS(1075), [anon_sym_COMMA] = ACTIONS(1075), [anon_sym_RPAREN] = ACTIONS(1075), @@ -75466,12 +75585,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(1075), }, - [1899] = { - [sym_field_declaration_list] = STATE(2258), - [anon_sym_LBRACE] = ACTIONS(2827), + [1902] = { + [sym_field_declaration_list] = STATE(2264), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1900] = { + [1903] = { [anon_sym_LPAREN] = ACTIONS(1081), [anon_sym_COMMA] = ACTIONS(1081), [anon_sym_RPAREN] = ACTIONS(1081), @@ -75495,12 +75614,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(1081), }, - [1901] = { - [sym_field_declaration_list] = STATE(2259), - [anon_sym_LBRACE] = ACTIONS(2827), + [1904] = { + [sym_field_declaration_list] = STATE(2265), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1902] = { + [1905] = { [anon_sym_LPAREN] = ACTIONS(1111), [anon_sym_COMMA] = ACTIONS(1111), [anon_sym_RPAREN] = ACTIONS(1111), @@ -75525,13 +75644,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_noexcept] = ACTIONS(1111), [anon_sym_COLON_COLON] = ACTIONS(1111), }, - [1903] = { - [aux_sym_template_argument_list_repeat1] = STATE(2261), + [1906] = { + [aux_sym_template_argument_list_repeat1] = STATE(2267), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5267), + [anon_sym_GT] = ACTIONS(5281), [sym_comment] = ACTIONS(49), }, - [1904] = { + [1907] = { [anon_sym_LPAREN] = ACTIONS(1140), [anon_sym_COMMA] = ACTIONS(1140), [anon_sym_RPAREN] = ACTIONS(1140), @@ -75557,7 +75676,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_noexcept] = ACTIONS(1140), [anon_sym_COLON_COLON] = ACTIONS(1144), }, - [1905] = { + [1908] = { [anon_sym_LPAREN] = ACTIONS(1150), [anon_sym_COMMA] = ACTIONS(1150), [anon_sym_RPAREN] = ACTIONS(1150), @@ -75581,71 +75700,71 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(1150), }, - [1906] = { - [sym_field_declaration_list] = STATE(2262), - [anon_sym_LBRACE] = ACTIONS(2827), + [1909] = { + [sym_field_declaration_list] = STATE(2268), + [anon_sym_LBRACE] = ACTIONS(2829), [sym_comment] = ACTIONS(49), }, - [1907] = { - [sym_parameter_list] = STATE(1909), + [1910] = { + [sym_parameter_list] = STATE(1912), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [1908] = { - [sym_parameter_list] = STATE(1909), + [1911] = { + [sym_parameter_list] = STATE(1912), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [1909] = { - [sym_type_qualifier] = STATE(2263), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2263), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [1912] = { + [sym_type_qualifier] = STATE(2269), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2269), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [1910] = { - [sym_type_qualifier] = STATE(2264), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2264), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [1913] = { + [sym_type_qualifier] = STATE(2270), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2270), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -75653,114 +75772,114 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3758), + [anon_sym_COLON] = ACTIONS(3764), [anon_sym_DASH_GT] = ACTIONS(616), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5273), + [sym_noexcept] = ACTIONS(5287), }, - [1911] = { - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_COMMA] = ACTIONS(1799), - [anon_sym_RPAREN] = ACTIONS(1799), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_EQ] = ACTIONS(1799), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1799), - [anon_sym_volatile] = ACTIONS(1799), - [anon_sym__Atomic] = ACTIONS(1799), - [anon_sym_mutable] = ACTIONS(1799), - [anon_sym_explicit] = ACTIONS(1799), - [anon_sym_constexpr] = ACTIONS(1799), - [anon_sym_COLON] = ACTIONS(1801), - [anon_sym_AMP] = ACTIONS(1801), - [anon_sym_AMP_AMP] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_GT] = ACTIONS(1799), - [anon_sym_DASH_GT] = ACTIONS(1799), + [1914] = { + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_EQ] = ACTIONS(1801), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1801), + [anon_sym_volatile] = ACTIONS(1801), + [anon_sym__Atomic] = ACTIONS(1801), + [anon_sym_mutable] = ACTIONS(1801), + [anon_sym_explicit] = ACTIONS(1801), + [anon_sym_constexpr] = ACTIONS(1801), + [anon_sym_COLON] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1801), + [anon_sym_DASH_GT] = ACTIONS(1801), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1803), + [sym_noexcept] = ACTIONS(1801), + [anon_sym_COLON_COLON] = ACTIONS(1805), }, - [1912] = { - [anon_sym_LF] = ACTIONS(5275), + [1915] = { + [anon_sym_LF] = ACTIONS(5289), [sym_comment] = ACTIONS(83), }, - [1913] = { - [sym_raw_string_literal] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1821), - [sym_char_literal] = ACTIONS(1821), - [sym_string_literal] = ACTIONS(1821), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_delete] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), + [1916] = { + [sym_raw_string_literal] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [sym_string_literal] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1825), + [sym_nullptr] = ACTIONS(1825), }, - [1914] = { - [anon_sym_LF] = ACTIONS(5277), + [1917] = { + [anon_sym_LF] = ACTIONS(5291), [sym_comment] = ACTIONS(83), }, - [1915] = { + [1918] = { [sym_raw_string_literal] = ACTIONS(249), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(251), @@ -75830,26 +75949,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(251), [sym_nullptr] = ACTIONS(251), }, - [1916] = { - [sym_preproc_params] = STATE(2269), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(5279), - [anon_sym_LF] = ACTIONS(5281), + [1919] = { + [sym_preproc_params] = STATE(2275), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(5293), + [anon_sym_LF] = ACTIONS(5295), [anon_sym_LPAREN] = ACTIONS(257), [sym_comment] = ACTIONS(83), }, - [1917] = { - [sym_preproc_include] = STATE(2273), - [sym_preproc_def] = STATE(2273), - [sym_preproc_function_def] = STATE(2273), - [sym_preproc_call] = STATE(2273), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2271), - [sym_preproc_elif_in_compound_statement] = STATE(2272), - [sym_declaration] = STATE(2273), - [sym_type_definition] = STATE(2273), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2273), + [1920] = { + [sym_preproc_include] = STATE(2279), + [sym_preproc_def] = STATE(2279), + [sym_preproc_function_def] = STATE(2279), + [sym_preproc_call] = STATE(2279), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2277), + [sym_preproc_elif_in_compound_statement] = STATE(2278), + [sym_declaration] = STATE(2279), + [sym_type_definition] = STATE(2279), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2279), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -75857,70 +75976,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2273), - [sym_expression_statement] = STATE(2273), - [sym_if_statement] = STATE(2273), - [sym_switch_statement] = STATE(2273), - [sym_case_statement] = STATE(2273), - [sym_while_statement] = STATE(2273), - [sym_do_statement] = STATE(2273), - [sym_for_statement] = STATE(2273), - [sym_return_statement] = STATE(2273), - [sym_break_statement] = STATE(2273), - [sym_continue_statement] = STATE(2273), - [sym_goto_statement] = STATE(2273), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2273), + [sym_labeled_statement] = STATE(2279), + [sym_expression_statement] = STATE(2279), + [sym_if_statement] = STATE(2279), + [sym_switch_statement] = STATE(2279), + [sym_case_statement] = STATE(2279), + [sym_while_statement] = STATE(2279), + [sym_do_statement] = STATE(2279), + [sym_for_statement] = STATE(2279), + [sym_return_statement] = STATE(2279), + [sym_break_statement] = STATE(2279), + [sym_continue_statement] = STATE(2279), + [sym_goto_statement] = STATE(2279), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2279), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2273), + [sym_structured_binding_declaration] = STATE(2279), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2273), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2279), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2273), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2279), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5283), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5297), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -75940,17 +76059,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -75959,13 +76078,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -75973,21 +76092,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1918] = { - [sym_preproc_include] = STATE(2277), - [sym_preproc_def] = STATE(2277), - [sym_preproc_function_def] = STATE(2277), - [sym_preproc_call] = STATE(2277), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2275), - [sym_preproc_elif_in_compound_statement] = STATE(2276), - [sym_declaration] = STATE(2277), - [sym_type_definition] = STATE(2277), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2277), + [1921] = { + [sym_preproc_include] = STATE(2283), + [sym_preproc_def] = STATE(2283), + [sym_preproc_function_def] = STATE(2283), + [sym_preproc_call] = STATE(2283), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2281), + [sym_preproc_elif_in_compound_statement] = STATE(2282), + [sym_declaration] = STATE(2283), + [sym_type_definition] = STATE(2283), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2283), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -75995,70 +76114,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2277), - [sym_expression_statement] = STATE(2277), - [sym_if_statement] = STATE(2277), - [sym_switch_statement] = STATE(2277), - [sym_case_statement] = STATE(2277), - [sym_while_statement] = STATE(2277), - [sym_do_statement] = STATE(2277), - [sym_for_statement] = STATE(2277), - [sym_return_statement] = STATE(2277), - [sym_break_statement] = STATE(2277), - [sym_continue_statement] = STATE(2277), - [sym_goto_statement] = STATE(2277), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2277), + [sym_labeled_statement] = STATE(2283), + [sym_expression_statement] = STATE(2283), + [sym_if_statement] = STATE(2283), + [sym_switch_statement] = STATE(2283), + [sym_case_statement] = STATE(2283), + [sym_while_statement] = STATE(2283), + [sym_do_statement] = STATE(2283), + [sym_for_statement] = STATE(2283), + [sym_return_statement] = STATE(2283), + [sym_break_statement] = STATE(2283), + [sym_continue_statement] = STATE(2283), + [sym_goto_statement] = STATE(2283), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2283), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2277), + [sym_structured_binding_declaration] = STATE(2283), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2277), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2283), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2277), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2283), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5285), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5299), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -76078,17 +76197,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -76097,13 +76216,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -76111,21 +76230,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1919] = { - [sym_preproc_include] = STATE(2281), - [sym_preproc_def] = STATE(2281), - [sym_preproc_function_def] = STATE(2281), - [sym_preproc_call] = STATE(2281), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2279), - [sym_preproc_elif_in_compound_statement] = STATE(2280), - [sym_declaration] = STATE(2281), - [sym_type_definition] = STATE(2281), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2281), + [1922] = { + [sym_preproc_include] = STATE(2287), + [sym_preproc_def] = STATE(2287), + [sym_preproc_function_def] = STATE(2287), + [sym_preproc_call] = STATE(2287), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2285), + [sym_preproc_elif_in_compound_statement] = STATE(2286), + [sym_declaration] = STATE(2287), + [sym_type_definition] = STATE(2287), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2287), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -76133,70 +76252,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2281), - [sym_expression_statement] = STATE(2281), - [sym_if_statement] = STATE(2281), - [sym_switch_statement] = STATE(2281), - [sym_case_statement] = STATE(2281), - [sym_while_statement] = STATE(2281), - [sym_do_statement] = STATE(2281), - [sym_for_statement] = STATE(2281), - [sym_return_statement] = STATE(2281), - [sym_break_statement] = STATE(2281), - [sym_continue_statement] = STATE(2281), - [sym_goto_statement] = STATE(2281), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2281), + [sym_labeled_statement] = STATE(2287), + [sym_expression_statement] = STATE(2287), + [sym_if_statement] = STATE(2287), + [sym_switch_statement] = STATE(2287), + [sym_case_statement] = STATE(2287), + [sym_while_statement] = STATE(2287), + [sym_do_statement] = STATE(2287), + [sym_for_statement] = STATE(2287), + [sym_return_statement] = STATE(2287), + [sym_break_statement] = STATE(2287), + [sym_continue_statement] = STATE(2287), + [sym_goto_statement] = STATE(2287), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2287), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2281), + [sym_structured_binding_declaration] = STATE(2287), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2281), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2287), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2281), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2287), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5287), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5301), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -76216,17 +76335,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -76235,13 +76354,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -76249,35 +76368,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1920] = { - [sym_string_literal] = ACTIONS(5289), - [sym_system_lib_string] = ACTIONS(5289), + [1923] = { + [sym_string_literal] = ACTIONS(5303), + [sym_system_lib_string] = ACTIONS(5303), [sym_comment] = ACTIONS(49), }, - [1921] = { - [sym_identifier] = ACTIONS(5291), + [1924] = { + [sym_identifier] = ACTIONS(5305), [sym_comment] = ACTIONS(49), }, - [1922] = { - [sym_preproc_arg] = ACTIONS(5293), + [1925] = { + [sym_preproc_arg] = ACTIONS(5307), [sym_comment] = ACTIONS(83), }, - [1923] = { - [sym_identifier] = ACTIONS(5295), + [1926] = { + [sym_identifier] = ACTIONS(5309), [sym_comment] = ACTIONS(49), }, - [1924] = { - [sym_identifier] = ACTIONS(5297), + [1927] = { + [sym_identifier] = ACTIONS(5311), [sym_comment] = ACTIONS(49), }, - [1925] = { - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(5299), - [anon_sym_LF] = ACTIONS(5301), + [1928] = { + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(5313), + [anon_sym_LF] = ACTIONS(5315), [sym_comment] = ACTIONS(83), }, - [1926] = { + [1929] = { [sym_raw_string_literal] = ACTIONS(1614), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1616), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), @@ -76345,20 +76464,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1616), [sym_nullptr] = ACTIONS(1616), }, - [1927] = { - [sym_type_qualifier] = STATE(2290), - [sym__type_specifier] = STATE(2289), - [sym_sized_type_specifier] = STATE(2289), - [sym_enum_specifier] = STATE(2289), - [sym_struct_specifier] = STATE(2289), - [sym_union_specifier] = STATE(2289), - [sym_macro_type_specifier] = STATE(2289), - [sym_class_specifier] = STATE(2289), - [sym_dependent_type] = STATE(2289), + [1930] = { + [sym_type_qualifier] = STATE(2296), + [sym__type_specifier] = STATE(2295), + [sym_sized_type_specifier] = STATE(2295), + [sym_enum_specifier] = STATE(2295), + [sym_struct_specifier] = STATE(2295), + [sym_union_specifier] = STATE(2295), + [sym_macro_type_specifier] = STATE(2295), + [sym_class_specifier] = STATE(2295), + [sym_dependent_type] = STATE(2295), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(2290), + [aux_sym_type_definition_repeat1] = STATE(2296), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -76370,28 +76489,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(5303), + [sym_primitive_type] = ACTIONS(5317), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(5303), + [sym_auto] = ACTIONS(5317), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1928] = { - [sym_preproc_include] = STATE(2292), - [sym_preproc_def] = STATE(2292), - [sym_preproc_function_def] = STATE(2292), - [sym_preproc_call] = STATE(2292), + [1931] = { + [sym_preproc_include] = STATE(2298), + [sym_preproc_def] = STATE(2298), + [sym_preproc_function_def] = STATE(2298), + [sym_preproc_call] = STATE(2298), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(2292), - [sym_type_definition] = STATE(2292), + [sym_declaration] = STATE(2298), + [sym_type_definition] = STATE(2298), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(2292), + [sym_compound_statement] = STATE(2298), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -76399,18 +76518,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2292), - [sym_expression_statement] = STATE(2292), - [sym_if_statement] = STATE(2292), - [sym_switch_statement] = STATE(2292), - [sym_case_statement] = STATE(2292), - [sym_while_statement] = STATE(2292), - [sym_do_statement] = STATE(2292), - [sym_for_statement] = STATE(2292), - [sym_return_statement] = STATE(2292), - [sym_break_statement] = STATE(2292), - [sym_continue_statement] = STATE(2292), - [sym_goto_statement] = STATE(2292), + [sym_labeled_statement] = STATE(2298), + [sym_expression_statement] = STATE(2298), + [sym_if_statement] = STATE(2298), + [sym_switch_statement] = STATE(2298), + [sym_case_statement] = STATE(2298), + [sym_while_statement] = STATE(2298), + [sym_do_statement] = STATE(2298), + [sym_for_statement] = STATE(2298), + [sym_return_statement] = STATE(2298), + [sym_break_statement] = STATE(2298), + [sym_continue_statement] = STATE(2298), + [sym_goto_statement] = STATE(2298), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -76430,14 +76549,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(2292), + [sym__empty_declaration] = STATE(2298), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2292), + [sym_structured_binding_declaration] = STATE(2298), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2292), + [sym_for_range_loop] = STATE(2298), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -76445,7 +76564,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2292), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2298), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -76460,7 +76579,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(5305), + [anon_sym_RBRACE] = ACTIONS(5319), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -76515,135 +76634,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1929] = { - [anon_sym_LPAREN] = ACTIONS(5307), + [1932] = { + [anon_sym_LPAREN] = ACTIONS(5321), + [anon_sym_constexpr] = ACTIONS(5323), [sym_comment] = ACTIONS(49), }, - [1930] = { - [anon_sym_LPAREN] = ACTIONS(5309), + [1933] = { + [anon_sym_LPAREN] = ACTIONS(5325), [sym_comment] = ACTIONS(49), }, - [1931] = { - [sym__expression] = STATE(2295), - [sym_conditional_expression] = STATE(2295), - [sym_assignment_expression] = STATE(2295), - [sym_pointer_expression] = STATE(2295), - [sym_logical_expression] = STATE(2295), - [sym_bitwise_expression] = STATE(2295), - [sym_equality_expression] = STATE(2295), - [sym_relational_expression] = STATE(2295), - [sym_shift_expression] = STATE(2295), - [sym_math_expression] = STATE(2295), - [sym_cast_expression] = STATE(2295), - [sym_sizeof_expression] = STATE(2295), - [sym_subscript_expression] = STATE(2295), - [sym_call_expression] = STATE(2295), - [sym_field_expression] = STATE(2295), - [sym_compound_literal_expression] = STATE(2295), - [sym_parenthesized_expression] = STATE(2295), - [sym_concatenated_string] = STATE(2295), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2295), - [sym_new_expression] = STATE(2295), - [sym_delete_expression] = STATE(2295), - [sym_lambda_expression] = STATE(2295), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5311), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(5311), - [sym_char_literal] = ACTIONS(5311), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5313), - [sym_false] = ACTIONS(5313), - [sym_null] = ACTIONS(5313), + [1934] = { + [sym__expression] = STATE(2302), + [sym_conditional_expression] = STATE(2302), + [sym_assignment_expression] = STATE(2302), + [sym_pointer_expression] = STATE(2302), + [sym_logical_expression] = STATE(2302), + [sym_bitwise_expression] = STATE(2302), + [sym_equality_expression] = STATE(2302), + [sym_relational_expression] = STATE(2302), + [sym_shift_expression] = STATE(2302), + [sym_math_expression] = STATE(2302), + [sym_cast_expression] = STATE(2302), + [sym_sizeof_expression] = STATE(2302), + [sym_subscript_expression] = STATE(2302), + [sym_call_expression] = STATE(2302), + [sym_field_expression] = STATE(2302), + [sym_compound_literal_expression] = STATE(2302), + [sym_parenthesized_expression] = STATE(2302), + [sym_concatenated_string] = STATE(2302), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2302), + [sym_new_expression] = STATE(2302), + [sym_delete_expression] = STATE(2302), + [sym_lambda_expression] = STATE(2302), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5327), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(5327), + [sym_char_literal] = ACTIONS(5327), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(5329), + [sym_false] = ACTIONS(5329), + [sym_null] = ACTIONS(5329), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5313), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(5329), }, - [1932] = { - [anon_sym_COLON] = ACTIONS(5315), + [1935] = { + [anon_sym_COLON] = ACTIONS(5331), [sym_comment] = ACTIONS(49), }, - [1933] = { - [anon_sym_LPAREN] = ACTIONS(5317), + [1936] = { + [anon_sym_LPAREN] = ACTIONS(5333), [sym_comment] = ACTIONS(49), }, - [1934] = { - [sym_compound_statement] = STATE(2298), - [sym_labeled_statement] = STATE(2298), - [sym_expression_statement] = STATE(2298), - [sym_if_statement] = STATE(2298), - [sym_switch_statement] = STATE(2298), - [sym_case_statement] = STATE(2298), - [sym_while_statement] = STATE(2298), - [sym_do_statement] = STATE(2298), - [sym_for_statement] = STATE(2298), - [sym_return_statement] = STATE(2298), - [sym_break_statement] = STATE(2298), - [sym_continue_statement] = STATE(2298), - [sym_goto_statement] = STATE(2298), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2298), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [1937] = { + [sym_compound_statement] = STATE(2305), + [sym_labeled_statement] = STATE(2305), + [sym_expression_statement] = STATE(2305), + [sym_if_statement] = STATE(2305), + [sym_switch_statement] = STATE(2305), + [sym_case_statement] = STATE(2305), + [sym_while_statement] = STATE(2305), + [sym_do_statement] = STATE(2305), + [sym_for_statement] = STATE(2305), + [sym_return_statement] = STATE(2305), + [sym_break_statement] = STATE(2305), + [sym_continue_statement] = STATE(2305), + [sym_goto_statement] = STATE(2305), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2305), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -76652,55 +76772,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [1935] = { - [anon_sym_LPAREN] = ACTIONS(5319), + [1938] = { + [anon_sym_LPAREN] = ACTIONS(5335), [sym_comment] = ACTIONS(49), }, - [1936] = { - [sym__expression] = STATE(2301), - [sym_conditional_expression] = STATE(2301), - [sym_assignment_expression] = STATE(2301), - [sym_pointer_expression] = STATE(2301), - [sym_logical_expression] = STATE(2301), - [sym_bitwise_expression] = STATE(2301), - [sym_equality_expression] = STATE(2301), - [sym_relational_expression] = STATE(2301), - [sym_shift_expression] = STATE(2301), - [sym_math_expression] = STATE(2301), - [sym_cast_expression] = STATE(2301), - [sym_sizeof_expression] = STATE(2301), - [sym_subscript_expression] = STATE(2301), - [sym_call_expression] = STATE(2301), - [sym_field_expression] = STATE(2301), - [sym_compound_literal_expression] = STATE(2301), - [sym_parenthesized_expression] = STATE(2301), - [sym_initializer_list] = STATE(2302), - [sym_concatenated_string] = STATE(2301), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2301), - [sym_new_expression] = STATE(2301), - [sym_delete_expression] = STATE(2301), - [sym_lambda_expression] = STATE(2301), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5321), + [1939] = { + [sym__expression] = STATE(2308), + [sym_conditional_expression] = STATE(2308), + [sym_assignment_expression] = STATE(2308), + [sym_pointer_expression] = STATE(2308), + [sym_logical_expression] = STATE(2308), + [sym_bitwise_expression] = STATE(2308), + [sym_equality_expression] = STATE(2308), + [sym_relational_expression] = STATE(2308), + [sym_shift_expression] = STATE(2308), + [sym_math_expression] = STATE(2308), + [sym_cast_expression] = STATE(2308), + [sym_sizeof_expression] = STATE(2308), + [sym_subscript_expression] = STATE(2308), + [sym_call_expression] = STATE(2308), + [sym_field_expression] = STATE(2308), + [sym_compound_literal_expression] = STATE(2308), + [sym_parenthesized_expression] = STATE(2308), + [sym_initializer_list] = STATE(2309), + [sym_concatenated_string] = STATE(2308), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2308), + [sym_new_expression] = STATE(2308), + [sym_delete_expression] = STATE(2308), + [sym_lambda_expression] = STATE(2308), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5337), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(5323), + [anon_sym_SEMI] = ACTIONS(5339), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -76712,34 +76832,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5321), - [sym_char_literal] = ACTIONS(5321), + [sym_number_literal] = ACTIONS(5337), + [sym_char_literal] = ACTIONS(5337), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5325), - [sym_false] = ACTIONS(5325), - [sym_null] = ACTIONS(5325), + [sym_true] = ACTIONS(5341), + [sym_false] = ACTIONS(5341), + [sym_null] = ACTIONS(5341), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5325), + [sym_nullptr] = ACTIONS(5341), }, - [1937] = { - [anon_sym_SEMI] = ACTIONS(5327), + [1940] = { + [anon_sym_SEMI] = ACTIONS(5343), [sym_comment] = ACTIONS(49), }, - [1938] = { - [anon_sym_SEMI] = ACTIONS(5329), + [1941] = { + [anon_sym_SEMI] = ACTIONS(5345), [sym_comment] = ACTIONS(49), }, - [1939] = { - [sym_identifier] = ACTIONS(5331), + [1942] = { + [sym_identifier] = ACTIONS(5347), [sym_comment] = ACTIONS(49), }, - [1940] = { + [1943] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(886), + [sym_template_argument_list] = STATE(887), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1483), @@ -76758,7 +76878,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(5333), + [anon_sym_COLON] = ACTIONS(5349), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -76794,162 +76914,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1714), + [anon_sym_COLON_COLON] = ACTIONS(1716), [sym_operator_name] = ACTIONS(142), }, - [1941] = { - [sym_raw_string_literal] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1726), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1728), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1728), - [sym_preproc_directive] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1726), - [anon_sym_typedef] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_register] = ACTIONS(1728), - [anon_sym_inline] = ACTIONS(1728), - [anon_sym_const] = ACTIONS(1728), - [anon_sym_restrict] = ACTIONS(1728), - [anon_sym_volatile] = ACTIONS(1728), - [anon_sym__Atomic] = ACTIONS(1728), - [anon_sym_mutable] = ACTIONS(1728), - [anon_sym_explicit] = ACTIONS(1728), - [anon_sym_constexpr] = ACTIONS(1728), - [anon_sym_unsigned] = ACTIONS(1728), - [anon_sym_long] = ACTIONS(1728), - [anon_sym_short] = ACTIONS(1728), - [sym_primitive_type] = ACTIONS(1728), - [anon_sym_enum] = ACTIONS(1728), - [anon_sym_struct] = ACTIONS(1728), - [anon_sym_union] = ACTIONS(1728), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_while] = ACTIONS(1728), - [anon_sym_do] = ACTIONS(1728), - [anon_sym_for] = ACTIONS(1728), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_goto] = ACTIONS(1728), - [anon_sym_AMP] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1726), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_sizeof] = ACTIONS(1728), - [sym_number_literal] = ACTIONS(1726), - [sym_char_literal] = ACTIONS(1726), - [sym_string_literal] = ACTIONS(1726), - [sym_true] = ACTIONS(1728), - [sym_false] = ACTIONS(1728), - [sym_null] = ACTIONS(1728), - [sym_identifier] = ACTIONS(1728), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1728), - [sym_auto] = ACTIONS(1728), - [anon_sym_typename] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_COLON_COLON] = ACTIONS(1726), - [anon_sym_delete] = ACTIONS(1728), - [sym_nullptr] = ACTIONS(1728), + [1944] = { + [sym_raw_string_literal] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1730), + [anon_sym_LPAREN] = ACTIONS(1728), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1730), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1730), + [sym_preproc_directive] = ACTIONS(1730), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_typedef] = ACTIONS(1730), + [anon_sym_extern] = ACTIONS(1730), + [anon_sym_LBRACE] = ACTIONS(1728), + [anon_sym_STAR] = ACTIONS(1728), + [anon_sym_LBRACK] = ACTIONS(1728), + [anon_sym_static] = ACTIONS(1730), + [anon_sym_register] = ACTIONS(1730), + [anon_sym_inline] = ACTIONS(1730), + [anon_sym_const] = ACTIONS(1730), + [anon_sym_restrict] = ACTIONS(1730), + [anon_sym_volatile] = ACTIONS(1730), + [anon_sym__Atomic] = ACTIONS(1730), + [anon_sym_mutable] = ACTIONS(1730), + [anon_sym_explicit] = ACTIONS(1730), + [anon_sym_constexpr] = ACTIONS(1730), + [anon_sym_unsigned] = ACTIONS(1730), + [anon_sym_long] = ACTIONS(1730), + [anon_sym_short] = ACTIONS(1730), + [sym_primitive_type] = ACTIONS(1730), + [anon_sym_enum] = ACTIONS(1730), + [anon_sym_struct] = ACTIONS(1730), + [anon_sym_union] = ACTIONS(1730), + [anon_sym_if] = ACTIONS(1730), + [anon_sym_switch] = ACTIONS(1730), + [anon_sym_case] = ACTIONS(1730), + [anon_sym_default] = ACTIONS(1730), + [anon_sym_while] = ACTIONS(1730), + [anon_sym_do] = ACTIONS(1730), + [anon_sym_for] = ACTIONS(1730), + [anon_sym_return] = ACTIONS(1730), + [anon_sym_break] = ACTIONS(1730), + [anon_sym_continue] = ACTIONS(1730), + [anon_sym_goto] = ACTIONS(1730), + [anon_sym_AMP] = ACTIONS(1728), + [anon_sym_BANG] = ACTIONS(1728), + [anon_sym_TILDE] = ACTIONS(1728), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1728), + [anon_sym_PLUS_PLUS] = ACTIONS(1728), + [anon_sym_sizeof] = ACTIONS(1730), + [sym_number_literal] = ACTIONS(1728), + [sym_char_literal] = ACTIONS(1728), + [sym_string_literal] = ACTIONS(1728), + [sym_true] = ACTIONS(1730), + [sym_false] = ACTIONS(1730), + [sym_null] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1730), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1730), + [sym_auto] = ACTIONS(1730), + [anon_sym_typename] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_COLON_COLON] = ACTIONS(1728), + [anon_sym_delete] = ACTIONS(1730), + [sym_nullptr] = ACTIONS(1730), }, - [1942] = { - [sym_raw_string_literal] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1730), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1732), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1732), - [sym_preproc_directive] = ACTIONS(1732), - [anon_sym_SEMI] = ACTIONS(1730), - [anon_sym_typedef] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_register] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_const] = ACTIONS(1732), - [anon_sym_restrict] = ACTIONS(1732), - [anon_sym_volatile] = ACTIONS(1732), - [anon_sym__Atomic] = ACTIONS(1732), - [anon_sym_mutable] = ACTIONS(1732), - [anon_sym_explicit] = ACTIONS(1732), - [anon_sym_constexpr] = ACTIONS(1732), - [anon_sym_unsigned] = ACTIONS(1732), - [anon_sym_long] = ACTIONS(1732), - [anon_sym_short] = ACTIONS(1732), - [sym_primitive_type] = ACTIONS(1732), - [anon_sym_enum] = ACTIONS(1732), - [anon_sym_struct] = ACTIONS(1732), - [anon_sym_union] = ACTIONS(1732), - [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_AMP] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_sizeof] = ACTIONS(1732), - [sym_number_literal] = ACTIONS(1730), - [sym_char_literal] = ACTIONS(1730), - [sym_string_literal] = ACTIONS(1730), - [sym_true] = ACTIONS(1732), - [sym_false] = ACTIONS(1732), - [sym_null] = ACTIONS(1732), - [sym_identifier] = ACTIONS(1732), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1732), - [sym_auto] = ACTIONS(1732), - [anon_sym_typename] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_COLON_COLON] = ACTIONS(1730), - [anon_sym_delete] = ACTIONS(1732), - [sym_nullptr] = ACTIONS(1732), + [1945] = { + [sym_raw_string_literal] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1734), + [anon_sym_LPAREN] = ACTIONS(1732), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1734), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1734), + [sym_preproc_directive] = ACTIONS(1734), + [anon_sym_SEMI] = ACTIONS(1732), + [anon_sym_typedef] = ACTIONS(1734), + [anon_sym_extern] = ACTIONS(1734), + [anon_sym_LBRACE] = ACTIONS(1732), + [anon_sym_STAR] = ACTIONS(1732), + [anon_sym_LBRACK] = ACTIONS(1732), + [anon_sym_static] = ACTIONS(1734), + [anon_sym_register] = ACTIONS(1734), + [anon_sym_inline] = ACTIONS(1734), + [anon_sym_const] = ACTIONS(1734), + [anon_sym_restrict] = ACTIONS(1734), + [anon_sym_volatile] = ACTIONS(1734), + [anon_sym__Atomic] = ACTIONS(1734), + [anon_sym_mutable] = ACTIONS(1734), + [anon_sym_explicit] = ACTIONS(1734), + [anon_sym_constexpr] = ACTIONS(1734), + [anon_sym_unsigned] = ACTIONS(1734), + [anon_sym_long] = ACTIONS(1734), + [anon_sym_short] = 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(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_AMP] = ACTIONS(1732), + [anon_sym_BANG] = ACTIONS(1732), + [anon_sym_TILDE] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1734), + [anon_sym_DASH] = ACTIONS(1734), + [anon_sym_DASH_DASH] = ACTIONS(1732), + [anon_sym_PLUS_PLUS] = ACTIONS(1732), + [anon_sym_sizeof] = ACTIONS(1734), + [sym_number_literal] = ACTIONS(1732), + [sym_char_literal] = ACTIONS(1732), + [sym_string_literal] = ACTIONS(1732), + [sym_true] = ACTIONS(1734), + [sym_false] = ACTIONS(1734), + [sym_null] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1734), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1734), + [sym_auto] = ACTIONS(1734), + [anon_sym_typename] = ACTIONS(1734), + [anon_sym_new] = ACTIONS(1734), + [anon_sym_COLON_COLON] = ACTIONS(1732), + [anon_sym_delete] = ACTIONS(1734), + [sym_nullptr] = ACTIONS(1734), }, - [1943] = { - [sym__declarator] = STATE(2308), - [sym_pointer_declarator] = STATE(2308), - [sym_function_declarator] = STATE(2308), - [sym_array_declarator] = STATE(2308), - [sym_init_declarator] = STATE(2309), - [sym_reference_declarator] = STATE(2308), - [sym_structured_binding_reference_declarator] = STATE(2310), - [sym_structured_binding_declarator] = STATE(2311), + [1946] = { + [sym__declarator] = STATE(2315), + [sym_pointer_declarator] = STATE(2315), + [sym_function_declarator] = STATE(2315), + [sym_array_declarator] = STATE(2315), + [sym_init_declarator] = STATE(2316), + [sym_reference_declarator] = STATE(2315), + [sym_structured_binding_reference_declarator] = STATE(2317), + [sym_structured_binding_declarator] = STATE(2318), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2308), - [sym_destructor_name] = STATE(2308), + [sym_template_function] = STATE(2315), + [sym_destructor_name] = STATE(2315), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_SEMI] = ACTIONS(5335), + [anon_sym_SEMI] = ACTIONS(5351), [anon_sym_STAR] = ACTIONS(196), [anon_sym_LBRACK] = ACTIONS(198), [anon_sym_AMP] = ACTIONS(200), @@ -76958,65 +77078,65 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(5337), + [sym_operator_name] = ACTIONS(5353), }, - [1944] = { + [1947] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(5339), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(5355), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1945] = { - [anon_sym_SEMI] = ACTIONS(5339), + [1948] = { + [anon_sym_SEMI] = ACTIONS(5355), [sym_comment] = ACTIONS(49), }, - [1946] = { - [sym_preproc_include] = STATE(2313), - [sym_preproc_def] = STATE(2313), - [sym_preproc_function_def] = STATE(2313), - [sym_preproc_call] = STATE(2313), - [sym_preproc_if_in_compound_statement] = STATE(1941), - [sym_preproc_ifdef_in_compound_statement] = STATE(1942), - [sym_declaration] = STATE(2313), - [sym_type_definition] = STATE(2313), - [sym__declaration_specifiers] = STATE(1943), - [sym_compound_statement] = STATE(2313), + [1949] = { + [sym_preproc_include] = STATE(2320), + [sym_preproc_def] = STATE(2320), + [sym_preproc_function_def] = STATE(2320), + [sym_preproc_call] = STATE(2320), + [sym_preproc_if_in_compound_statement] = STATE(1944), + [sym_preproc_ifdef_in_compound_statement] = STATE(1945), + [sym_declaration] = STATE(2320), + [sym_type_definition] = STATE(2320), + [sym__declaration_specifiers] = STATE(1946), + [sym_compound_statement] = STATE(2320), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -77024,68 +77144,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2313), - [sym_expression_statement] = STATE(2313), - [sym_if_statement] = STATE(2313), - [sym_switch_statement] = STATE(2313), - [sym_case_statement] = STATE(2313), - [sym_while_statement] = STATE(2313), - [sym_do_statement] = STATE(2313), - [sym_for_statement] = STATE(2313), - [sym_return_statement] = STATE(2313), - [sym_break_statement] = STATE(2313), - [sym_continue_statement] = STATE(2313), - [sym_goto_statement] = STATE(2313), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym__empty_declaration] = STATE(2313), + [sym_labeled_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_switch_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_do_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_return_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_goto_statement] = STATE(2320), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym__empty_declaration] = STATE(2320), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2313), + [sym_structured_binding_declaration] = STATE(2320), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2313), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2320), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2313), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2320), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(4389), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4391), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4393), + [sym_raw_string_literal] = ACTIONS(4395), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4397), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4399), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5341), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4399), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4401), - [sym_preproc_directive] = ACTIONS(4403), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_typedef] = ACTIONS(4407), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4407), + [sym_preproc_directive] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_typedef] = ACTIONS(4413), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -77105,17 +77225,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -77124,13 +77244,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(4435), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(4441), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -77138,21 +77258,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [1947] = { - [sym_preproc_include] = STATE(2316), - [sym_preproc_def] = STATE(2316), - [sym_preproc_function_def] = STATE(2316), - [sym_preproc_call] = STATE(2316), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2314), - [sym_preproc_elif_in_compound_statement] = STATE(2315), - [sym_declaration] = STATE(2316), - [sym_type_definition] = STATE(2316), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2316), + [1950] = { + [sym_preproc_include] = STATE(2323), + [sym_preproc_def] = STATE(2323), + [sym_preproc_function_def] = STATE(2323), + [sym_preproc_call] = STATE(2323), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2321), + [sym_preproc_elif_in_compound_statement] = STATE(2322), + [sym_declaration] = STATE(2323), + [sym_type_definition] = STATE(2323), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2323), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -77160,70 +77280,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2316), - [sym_expression_statement] = STATE(2316), - [sym_if_statement] = STATE(2316), - [sym_switch_statement] = STATE(2316), - [sym_case_statement] = STATE(2316), - [sym_while_statement] = STATE(2316), - [sym_do_statement] = STATE(2316), - [sym_for_statement] = STATE(2316), - [sym_return_statement] = STATE(2316), - [sym_break_statement] = STATE(2316), - [sym_continue_statement] = STATE(2316), - [sym_goto_statement] = STATE(2316), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2316), + [sym_labeled_statement] = STATE(2323), + [sym_expression_statement] = STATE(2323), + [sym_if_statement] = STATE(2323), + [sym_switch_statement] = STATE(2323), + [sym_case_statement] = STATE(2323), + [sym_while_statement] = STATE(2323), + [sym_do_statement] = STATE(2323), + [sym_for_statement] = STATE(2323), + [sym_return_statement] = STATE(2323), + [sym_break_statement] = STATE(2323), + [sym_continue_statement] = STATE(2323), + [sym_goto_statement] = STATE(2323), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2323), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2316), + [sym_structured_binding_declaration] = STATE(2323), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2316), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2323), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2316), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2323), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5343), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5359), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -77243,17 +77363,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -77262,13 +77382,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -77276,13 +77396,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1948] = { - [sym_preproc_arg] = ACTIONS(5345), + [1951] = { + [sym_preproc_arg] = ACTIONS(5361), [sym_comment] = ACTIONS(83), }, - [1949] = { + [1952] = { [sym_raw_string_literal] = ACTIONS(307), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(309), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(309), @@ -77352,8 +77472,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(309), [sym_nullptr] = ACTIONS(309), }, - [1950] = { - [sym__type_declarator] = STATE(2318), + [1953] = { + [sym__type_declarator] = STATE(2325), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -77362,16 +77482,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [1951] = { + [1954] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(2319), - [sym_sized_type_specifier] = STATE(2319), - [sym_enum_specifier] = STATE(2319), - [sym_struct_specifier] = STATE(2319), - [sym_union_specifier] = STATE(2319), - [sym_macro_type_specifier] = STATE(2319), - [sym_class_specifier] = STATE(2319), - [sym_dependent_type] = STATE(2319), + [sym__type_specifier] = STATE(2326), + [sym_sized_type_specifier] = STATE(2326), + [sym_enum_specifier] = STATE(2326), + [sym_struct_specifier] = STATE(2326), + [sym_union_specifier] = STATE(2326), + [sym_macro_type_specifier] = STATE(2326), + [sym_class_specifier] = STATE(2326), + [sym_dependent_type] = STATE(2326), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -77387,18 +77507,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(5347), + [sym_primitive_type] = ACTIONS(5363), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(5347), + [sym_auto] = ACTIONS(5363), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [1952] = { + [1955] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), @@ -77468,17 +77588,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [1953] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [1956] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -77486,18 +77606,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -77517,14 +77637,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -77532,7 +77652,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -77547,7 +77667,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(5349), + [anon_sym_RBRACE] = ACTIONS(5365), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -77602,158 +77722,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [1954] = { - [sym__expression] = STATE(2321), - [sym_conditional_expression] = STATE(2321), - [sym_assignment_expression] = STATE(2321), - [sym_pointer_expression] = STATE(2321), - [sym_logical_expression] = STATE(2321), - [sym_bitwise_expression] = STATE(2321), - [sym_equality_expression] = STATE(2321), - [sym_relational_expression] = STATE(2321), - [sym_shift_expression] = STATE(2321), - [sym_math_expression] = STATE(2321), - [sym_cast_expression] = STATE(2321), - [sym_sizeof_expression] = STATE(2321), - [sym_subscript_expression] = STATE(2321), - [sym_call_expression] = STATE(2321), - [sym_field_expression] = STATE(2321), - [sym_compound_literal_expression] = STATE(2321), - [sym_parenthesized_expression] = STATE(2321), - [sym_concatenated_string] = STATE(2321), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2321), - [sym_new_expression] = STATE(2321), - [sym_delete_expression] = STATE(2321), - [sym_lambda_expression] = STATE(2321), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5351), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5351), - [sym_char_literal] = ACTIONS(5351), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5353), - [sym_false] = ACTIONS(5353), - [sym_null] = ACTIONS(5353), + [1957] = { + [sym__expression] = STATE(2328), + [sym_conditional_expression] = STATE(2328), + [sym_assignment_expression] = STATE(2328), + [sym_pointer_expression] = STATE(2328), + [sym_logical_expression] = STATE(2328), + [sym_bitwise_expression] = STATE(2328), + [sym_equality_expression] = STATE(2328), + [sym_relational_expression] = STATE(2328), + [sym_shift_expression] = STATE(2328), + [sym_math_expression] = STATE(2328), + [sym_cast_expression] = STATE(2328), + [sym_sizeof_expression] = STATE(2328), + [sym_subscript_expression] = STATE(2328), + [sym_call_expression] = STATE(2328), + [sym_field_expression] = STATE(2328), + [sym_compound_literal_expression] = STATE(2328), + [sym_parenthesized_expression] = STATE(2328), + [sym_concatenated_string] = STATE(2328), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2328), + [sym_new_expression] = STATE(2328), + [sym_delete_expression] = STATE(2328), + [sym_lambda_expression] = STATE(2328), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5367), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5367), + [sym_char_literal] = ACTIONS(5367), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5369), + [sym_false] = ACTIONS(5369), + [sym_null] = ACTIONS(5369), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5353), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5369), }, - [1955] = { - [sym__expression] = STATE(2322), - [sym_conditional_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2322), - [sym_pointer_expression] = STATE(2322), - [sym_logical_expression] = STATE(2322), - [sym_bitwise_expression] = STATE(2322), - [sym_equality_expression] = STATE(2322), - [sym_relational_expression] = STATE(2322), - [sym_shift_expression] = STATE(2322), - [sym_math_expression] = STATE(2322), - [sym_cast_expression] = STATE(2322), - [sym_sizeof_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_call_expression] = STATE(2322), - [sym_field_expression] = STATE(2322), - [sym_compound_literal_expression] = STATE(2322), - [sym_parenthesized_expression] = STATE(2322), - [sym_concatenated_string] = STATE(2322), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2322), - [sym_new_expression] = STATE(2322), - [sym_delete_expression] = STATE(2322), - [sym_lambda_expression] = STATE(2322), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5355), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5355), - [sym_char_literal] = ACTIONS(5355), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5357), - [sym_false] = ACTIONS(5357), - [sym_null] = ACTIONS(5357), + [1958] = { + [anon_sym_LPAREN] = ACTIONS(5371), + [sym_comment] = ACTIONS(49), + }, + [1959] = { + [sym__expression] = STATE(2330), + [sym_conditional_expression] = STATE(2330), + [sym_assignment_expression] = STATE(2330), + [sym_pointer_expression] = STATE(2330), + [sym_logical_expression] = STATE(2330), + [sym_bitwise_expression] = STATE(2330), + [sym_equality_expression] = STATE(2330), + [sym_relational_expression] = STATE(2330), + [sym_shift_expression] = STATE(2330), + [sym_math_expression] = STATE(2330), + [sym_cast_expression] = STATE(2330), + [sym_sizeof_expression] = STATE(2330), + [sym_subscript_expression] = STATE(2330), + [sym_call_expression] = STATE(2330), + [sym_field_expression] = STATE(2330), + [sym_compound_literal_expression] = STATE(2330), + [sym_parenthesized_expression] = STATE(2330), + [sym_concatenated_string] = STATE(2330), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2330), + [sym_new_expression] = STATE(2330), + [sym_delete_expression] = STATE(2330), + [sym_lambda_expression] = STATE(2330), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5373), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5373), + [sym_char_literal] = ACTIONS(5373), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5375), + [sym_false] = ACTIONS(5375), + [sym_null] = ACTIONS(5375), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5357), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5375), }, - [1956] = { + [1960] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5359), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5377), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [1957] = { - [sym_declaration] = STATE(2325), - [sym_type_definition] = STATE(2325), - [sym__declaration_specifiers] = STATE(2326), - [sym_compound_statement] = STATE(2325), + [1961] = { + [sym_declaration] = STATE(2333), + [sym_type_definition] = STATE(2333), + [sym__declaration_specifiers] = STATE(2334), + [sym_compound_statement] = STATE(2333), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -77761,58 +77885,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2325), - [sym_expression_statement] = STATE(2325), - [sym_if_statement] = STATE(2325), - [sym_switch_statement] = STATE(2325), - [sym_case_statement] = STATE(2325), - [sym_while_statement] = STATE(2325), - [sym_do_statement] = STATE(2325), - [sym_for_statement] = STATE(2325), - [sym_return_statement] = STATE(2325), - [sym_break_statement] = STATE(2325), - [sym_continue_statement] = STATE(2325), - [sym_goto_statement] = STATE(2325), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), + [sym_labeled_statement] = STATE(2333), + [sym_expression_statement] = STATE(2333), + [sym_if_statement] = STATE(2333), + [sym_switch_statement] = STATE(2333), + [sym_case_statement] = STATE(2333), + [sym_while_statement] = STATE(2333), + [sym_do_statement] = STATE(2333), + [sym_for_statement] = STATE(2333), + [sym_return_statement] = STATE(2333), + [sym_break_statement] = STATE(2333), + [sym_continue_statement] = STATE(2333), + [sym_goto_statement] = STATE(2333), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2325), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2333), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(2877), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -77832,17 +77956,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -77851,82 +77975,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5361), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5379), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1958] = { - [sym__expression] = STATE(2327), - [sym_conditional_expression] = STATE(2327), - [sym_assignment_expression] = STATE(2327), - [sym_pointer_expression] = STATE(2327), - [sym_logical_expression] = STATE(2327), - [sym_bitwise_expression] = STATE(2327), - [sym_equality_expression] = STATE(2327), - [sym_relational_expression] = STATE(2327), - [sym_shift_expression] = STATE(2327), - [sym_math_expression] = STATE(2327), - [sym_cast_expression] = STATE(2327), - [sym_sizeof_expression] = STATE(2327), - [sym_subscript_expression] = STATE(2327), - [sym_call_expression] = STATE(2327), - [sym_field_expression] = STATE(2327), - [sym_compound_literal_expression] = STATE(2327), - [sym_parenthesized_expression] = STATE(2327), - [sym_concatenated_string] = STATE(2327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2327), - [sym_new_expression] = STATE(2327), - [sym_delete_expression] = STATE(2327), - [sym_lambda_expression] = STATE(2327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5363), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5363), - [sym_char_literal] = ACTIONS(5363), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5365), - [sym_false] = ACTIONS(5365), - [sym_null] = ACTIONS(5365), + [1962] = { + [sym__expression] = STATE(2335), + [sym_conditional_expression] = STATE(2335), + [sym_assignment_expression] = STATE(2335), + [sym_pointer_expression] = STATE(2335), + [sym_logical_expression] = STATE(2335), + [sym_bitwise_expression] = STATE(2335), + [sym_equality_expression] = STATE(2335), + [sym_relational_expression] = STATE(2335), + [sym_shift_expression] = STATE(2335), + [sym_math_expression] = STATE(2335), + [sym_cast_expression] = STATE(2335), + [sym_sizeof_expression] = STATE(2335), + [sym_subscript_expression] = STATE(2335), + [sym_call_expression] = STATE(2335), + [sym_field_expression] = STATE(2335), + [sym_compound_literal_expression] = STATE(2335), + [sym_parenthesized_expression] = STATE(2335), + [sym_concatenated_string] = STATE(2335), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2335), + [sym_new_expression] = STATE(2335), + [sym_delete_expression] = STATE(2335), + [sym_lambda_expression] = STATE(2335), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5381), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5381), + [sym_char_literal] = ACTIONS(5381), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5383), + [sym_false] = ACTIONS(5383), + [sym_null] = ACTIONS(5383), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5365), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5383), }, - [1959] = { - [anon_sym_while] = ACTIONS(5367), + [1963] = { + [anon_sym_while] = ACTIONS(5385), [sym_comment] = ACTIONS(49), }, - [1960] = { - [sym_declaration] = STATE(2329), - [sym__declaration_specifiers] = STATE(1497), + [1964] = { + [sym_declaration] = STATE(2337), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -77934,42 +78058,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2330), - [sym_conditional_expression] = STATE(2330), - [sym_assignment_expression] = STATE(2330), - [sym_pointer_expression] = STATE(2330), - [sym_logical_expression] = STATE(2330), - [sym_bitwise_expression] = STATE(2330), - [sym_equality_expression] = STATE(2330), - [sym_relational_expression] = STATE(2330), - [sym_shift_expression] = STATE(2330), - [sym_math_expression] = STATE(2330), - [sym_cast_expression] = STATE(2330), - [sym_sizeof_expression] = STATE(2330), - [sym_subscript_expression] = STATE(2330), - [sym_call_expression] = STATE(2330), - [sym_field_expression] = STATE(2330), - [sym_compound_literal_expression] = STATE(2330), - [sym_parenthesized_expression] = STATE(2330), - [sym_concatenated_string] = STATE(2330), + [sym__expression] = STATE(2338), + [sym_conditional_expression] = STATE(2338), + [sym_assignment_expression] = STATE(2338), + [sym_pointer_expression] = STATE(2338), + [sym_logical_expression] = STATE(2338), + [sym_bitwise_expression] = STATE(2338), + [sym_equality_expression] = STATE(2338), + [sym_relational_expression] = STATE(2338), + [sym_shift_expression] = STATE(2338), + [sym_math_expression] = STATE(2338), + [sym_cast_expression] = STATE(2338), + [sym_sizeof_expression] = STATE(2338), + [sym_subscript_expression] = STATE(2338), + [sym_call_expression] = STATE(2338), + [sym_field_expression] = STATE(2338), + [sym_compound_literal_expression] = STATE(2338), + [sym_parenthesized_expression] = STATE(2338), + [sym_concatenated_string] = STATE(2338), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2330), - [sym_for_range_declaration] = STATE(2331), - [sym_new_expression] = STATE(2330), - [sym_delete_expression] = STATE(2330), - [sym_lambda_expression] = STATE(2330), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2338), + [sym_for_range_declaration] = STATE(2339), + [sym_new_expression] = STATE(2338), + [sym_delete_expression] = STATE(2338), + [sym_lambda_expression] = STATE(2338), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(5369), + [sym_raw_string_literal] = ACTIONS(5387), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(5371), + [anon_sym_SEMI] = ACTIONS(5389), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -77998,138 +78122,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5369), - [sym_char_literal] = ACTIONS(5369), + [sym_number_literal] = ACTIONS(5387), + [sym_char_literal] = ACTIONS(5387), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5373), - [sym_false] = ACTIONS(5373), - [sym_null] = ACTIONS(5373), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(5391), + [sym_false] = ACTIONS(5391), + [sym_null] = ACTIONS(5391), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5373), + [sym_nullptr] = ACTIONS(5391), }, - [1961] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), - }, - [1962] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5375), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [1963] = { - [anon_sym_SEMI] = ACTIONS(5375), - [sym_comment] = ACTIONS(49), - }, - [1964] = { + [1965] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -78199,140 +78208,255 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [1965] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), - }, [1966] = { - [anon_sym_SEMI] = ACTIONS(5377), + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(5393), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, [1967] = { - [sym_compound_statement] = STATE(2335), - [sym_labeled_statement] = STATE(2335), - [sym_expression_statement] = STATE(2335), - [sym_if_statement] = STATE(2335), - [sym_switch_statement] = STATE(2335), - [sym_case_statement] = STATE(2335), - [sym_while_statement] = STATE(2335), - [sym_do_statement] = STATE(2335), - [sym_for_statement] = STATE(2335), - [sym_return_statement] = STATE(2335), - [sym_break_statement] = STATE(2335), - [sym_continue_statement] = STATE(2335), - [sym_goto_statement] = STATE(2335), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2335), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [anon_sym_SEMI] = ACTIONS(5393), + [sym_comment] = ACTIONS(49), + }, + [1968] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), + }, + [1969] = { + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), + }, + [1970] = { + [anon_sym_SEMI] = ACTIONS(5395), + [sym_comment] = ACTIONS(49), + }, + [1971] = { + [sym_compound_statement] = STATE(2343), + [sym_labeled_statement] = STATE(2343), + [sym_expression_statement] = STATE(2343), + [sym_if_statement] = STATE(2343), + [sym_switch_statement] = STATE(2343), + [sym_case_statement] = STATE(2343), + [sym_while_statement] = STATE(2343), + [sym_do_statement] = STATE(2343), + [sym_for_statement] = STATE(2343), + [sym_return_statement] = STATE(2343), + [sym_break_statement] = STATE(2343), + [sym_continue_statement] = STATE(2343), + [sym_goto_statement] = STATE(2343), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2343), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -78341,156 +78465,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [1968] = { - [sym_raw_string_literal] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5383), - [sym_preproc_directive] = ACTIONS(5383), - [anon_sym_SEMI] = ACTIONS(5381), - [anon_sym_typedef] = ACTIONS(5383), - [anon_sym_extern] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_RBRACE] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_static] = ACTIONS(5383), - [anon_sym_register] = ACTIONS(5383), - [anon_sym_inline] = ACTIONS(5383), - [anon_sym_const] = ACTIONS(5383), - [anon_sym_restrict] = ACTIONS(5383), - [anon_sym_volatile] = ACTIONS(5383), - [anon_sym__Atomic] = ACTIONS(5383), - [anon_sym_mutable] = ACTIONS(5383), - [anon_sym_explicit] = ACTIONS(5383), - [anon_sym_constexpr] = ACTIONS(5383), - [anon_sym_unsigned] = ACTIONS(5383), - [anon_sym_long] = ACTIONS(5383), - [anon_sym_short] = ACTIONS(5383), - [sym_primitive_type] = ACTIONS(5383), - [anon_sym_enum] = ACTIONS(5383), - [anon_sym_struct] = ACTIONS(5383), - [anon_sym_union] = ACTIONS(5383), - [anon_sym_if] = ACTIONS(5383), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_case] = ACTIONS(5383), - [anon_sym_default] = ACTIONS(5383), - [anon_sym_while] = ACTIONS(5383), - [anon_sym_do] = ACTIONS(5383), - [anon_sym_for] = ACTIONS(5383), - [anon_sym_return] = ACTIONS(5383), - [anon_sym_break] = ACTIONS(5383), - [anon_sym_continue] = ACTIONS(5383), - [anon_sym_goto] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_TILDE] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5381), - [anon_sym_PLUS_PLUS] = ACTIONS(5381), - [anon_sym_sizeof] = ACTIONS(5383), - [sym_number_literal] = ACTIONS(5381), - [sym_char_literal] = ACTIONS(5381), - [sym_string_literal] = ACTIONS(5381), - [sym_true] = ACTIONS(5383), - [sym_false] = ACTIONS(5383), - [sym_null] = ACTIONS(5383), - [sym_identifier] = ACTIONS(5383), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5383), - [sym_auto] = ACTIONS(5383), - [anon_sym_typename] = ACTIONS(5383), - [anon_sym_new] = ACTIONS(5383), - [anon_sym_COLON_COLON] = ACTIONS(5381), - [anon_sym_delete] = ACTIONS(5383), - [sym_nullptr] = ACTIONS(5383), + [1972] = { + [sym_raw_string_literal] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5401), + [anon_sym_LPAREN] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5401), + [sym_preproc_directive] = ACTIONS(5401), + [anon_sym_SEMI] = ACTIONS(5399), + [anon_sym_typedef] = ACTIONS(5401), + [anon_sym_extern] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5399), + [anon_sym_RBRACE] = ACTIONS(5399), + [anon_sym_STAR] = ACTIONS(5399), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_register] = ACTIONS(5401), + [anon_sym_inline] = ACTIONS(5401), + [anon_sym_const] = ACTIONS(5401), + [anon_sym_restrict] = ACTIONS(5401), + [anon_sym_volatile] = ACTIONS(5401), + [anon_sym__Atomic] = ACTIONS(5401), + [anon_sym_mutable] = ACTIONS(5401), + [anon_sym_explicit] = ACTIONS(5401), + [anon_sym_constexpr] = ACTIONS(5401), + [anon_sym_unsigned] = ACTIONS(5401), + [anon_sym_long] = ACTIONS(5401), + [anon_sym_short] = ACTIONS(5401), + [sym_primitive_type] = ACTIONS(5401), + [anon_sym_enum] = ACTIONS(5401), + [anon_sym_struct] = ACTIONS(5401), + [anon_sym_union] = ACTIONS(5401), + [anon_sym_if] = ACTIONS(5401), + [anon_sym_switch] = ACTIONS(5401), + [anon_sym_case] = ACTIONS(5401), + [anon_sym_default] = ACTIONS(5401), + [anon_sym_while] = ACTIONS(5401), + [anon_sym_do] = ACTIONS(5401), + [anon_sym_for] = ACTIONS(5401), + [anon_sym_return] = ACTIONS(5401), + [anon_sym_break] = ACTIONS(5401), + [anon_sym_continue] = ACTIONS(5401), + [anon_sym_goto] = ACTIONS(5401), + [anon_sym_AMP] = ACTIONS(5399), + [anon_sym_BANG] = ACTIONS(5399), + [anon_sym_TILDE] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5401), + [anon_sym_DASH_DASH] = ACTIONS(5399), + [anon_sym_PLUS_PLUS] = ACTIONS(5399), + [anon_sym_sizeof] = ACTIONS(5401), + [sym_number_literal] = ACTIONS(5399), + [sym_char_literal] = ACTIONS(5399), + [sym_string_literal] = ACTIONS(5399), + [sym_true] = ACTIONS(5401), + [sym_false] = ACTIONS(5401), + [sym_null] = ACTIONS(5401), + [sym_identifier] = ACTIONS(5401), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5401), + [sym_auto] = ACTIONS(5401), + [anon_sym_typename] = ACTIONS(5401), + [anon_sym_new] = ACTIONS(5401), + [anon_sym_COLON_COLON] = ACTIONS(5399), + [anon_sym_delete] = ACTIONS(5401), + [sym_nullptr] = ACTIONS(5401), }, - [1969] = { - [sym_raw_string_literal] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5387), - [sym_preproc_directive] = ACTIONS(5387), - [anon_sym_SEMI] = ACTIONS(5385), - [anon_sym_typedef] = ACTIONS(5387), - [anon_sym_extern] = ACTIONS(5387), - [anon_sym_LBRACE] = ACTIONS(5385), - [anon_sym_RBRACE] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_static] = ACTIONS(5387), - [anon_sym_register] = ACTIONS(5387), - [anon_sym_inline] = ACTIONS(5387), - [anon_sym_const] = ACTIONS(5387), - [anon_sym_restrict] = ACTIONS(5387), - [anon_sym_volatile] = ACTIONS(5387), - [anon_sym__Atomic] = ACTIONS(5387), - [anon_sym_mutable] = ACTIONS(5387), - [anon_sym_explicit] = ACTIONS(5387), - [anon_sym_constexpr] = ACTIONS(5387), - [anon_sym_unsigned] = ACTIONS(5387), - [anon_sym_long] = ACTIONS(5387), - [anon_sym_short] = ACTIONS(5387), - [sym_primitive_type] = ACTIONS(5387), - [anon_sym_enum] = ACTIONS(5387), - [anon_sym_struct] = ACTIONS(5387), - [anon_sym_union] = ACTIONS(5387), - [anon_sym_if] = ACTIONS(5387), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_case] = ACTIONS(5387), - [anon_sym_default] = ACTIONS(5387), - [anon_sym_while] = ACTIONS(5387), - [anon_sym_do] = ACTIONS(5387), - [anon_sym_for] = ACTIONS(5387), - [anon_sym_return] = ACTIONS(5387), - [anon_sym_break] = ACTIONS(5387), - [anon_sym_continue] = ACTIONS(5387), - [anon_sym_goto] = ACTIONS(5387), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_TILDE] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5385), - [anon_sym_sizeof] = ACTIONS(5387), - [sym_number_literal] = ACTIONS(5385), - [sym_char_literal] = ACTIONS(5385), - [sym_string_literal] = ACTIONS(5385), - [sym_true] = ACTIONS(5387), - [sym_false] = ACTIONS(5387), - [sym_null] = ACTIONS(5387), - [sym_identifier] = ACTIONS(5387), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5387), - [sym_auto] = ACTIONS(5387), - [anon_sym_typename] = ACTIONS(5387), - [anon_sym_new] = ACTIONS(5387), - [anon_sym_COLON_COLON] = ACTIONS(5385), - [anon_sym_delete] = ACTIONS(5387), - [sym_nullptr] = ACTIONS(5387), + [1973] = { + [sym_raw_string_literal] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5405), + [anon_sym_LPAREN] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym_LBRACE] = ACTIONS(5403), + [anon_sym_RBRACE] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [anon_sym_if] = ACTIONS(5405), + [anon_sym_switch] = ACTIONS(5405), + [anon_sym_case] = ACTIONS(5405), + [anon_sym_default] = ACTIONS(5405), + [anon_sym_while] = ACTIONS(5405), + [anon_sym_do] = ACTIONS(5405), + [anon_sym_for] = ACTIONS(5405), + [anon_sym_return] = ACTIONS(5405), + [anon_sym_break] = ACTIONS(5405), + [anon_sym_continue] = ACTIONS(5405), + [anon_sym_goto] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_TILDE] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_sizeof] = ACTIONS(5405), + [sym_number_literal] = ACTIONS(5403), + [sym_char_literal] = ACTIONS(5403), + [sym_string_literal] = ACTIONS(5403), + [sym_true] = ACTIONS(5405), + [sym_false] = ACTIONS(5405), + [sym_null] = ACTIONS(5405), + [sym_identifier] = ACTIONS(5405), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5405), + [sym_auto] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_new] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5403), + [anon_sym_delete] = ACTIONS(5405), + [sym_nullptr] = ACTIONS(5405), }, - [1970] = { + [1974] = { [sym_raw_string_literal] = ACTIONS(522), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(524), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(524), @@ -78560,198 +78684,198 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(524), [sym_nullptr] = ACTIONS(524), }, - [1971] = { + [1975] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(2337), + [aux_sym_declaration_repeat1] = STATE(2345), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(5389), + [anon_sym_SEMI] = ACTIONS(5407), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [1972] = { - [aux_sym_declaration_repeat1] = STATE(2337), + [1976] = { + [aux_sym_declaration_repeat1] = STATE(2345), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(5389), + [anon_sym_SEMI] = ACTIONS(5407), [sym_comment] = ACTIONS(49), }, - [1973] = { - [sym_argument_list] = STATE(2339), - [sym_initializer_list] = STATE(2339), + [1977] = { + [sym_argument_list] = STATE(2347), + [sym_initializer_list] = STATE(2347), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(5391), + [anon_sym_EQ] = ACTIONS(5409), [sym_comment] = ACTIONS(49), }, - [1974] = { - [sym_argument_list] = STATE(2341), - [sym_initializer_list] = STATE(2341), + [1978] = { + [sym_argument_list] = STATE(2349), + [sym_initializer_list] = STATE(2349), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(5393), + [anon_sym_EQ] = ACTIONS(5411), [sym_comment] = ACTIONS(49), }, - [1975] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), + [1979] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), }, - [1976] = { - [sym_raw_string_literal] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5397), - [anon_sym_LPAREN] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5397), - [sym_preproc_directive] = ACTIONS(5397), - [anon_sym_SEMI] = ACTIONS(5395), - [anon_sym_typedef] = ACTIONS(5397), - [anon_sym_extern] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5395), - [anon_sym_RBRACE] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_LBRACK] = ACTIONS(5395), - [anon_sym_static] = ACTIONS(5397), - [anon_sym_register] = ACTIONS(5397), - [anon_sym_inline] = ACTIONS(5397), - [anon_sym_const] = ACTIONS(5397), - [anon_sym_restrict] = ACTIONS(5397), - [anon_sym_volatile] = ACTIONS(5397), - [anon_sym__Atomic] = ACTIONS(5397), - [anon_sym_mutable] = ACTIONS(5397), - [anon_sym_explicit] = ACTIONS(5397), - [anon_sym_constexpr] = ACTIONS(5397), - [anon_sym_unsigned] = ACTIONS(5397), - [anon_sym_long] = ACTIONS(5397), - [anon_sym_short] = ACTIONS(5397), - [sym_primitive_type] = ACTIONS(5397), - [anon_sym_enum] = ACTIONS(5397), - [anon_sym_struct] = ACTIONS(5397), - [anon_sym_union] = ACTIONS(5397), - [anon_sym_if] = ACTIONS(5397), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_case] = ACTIONS(5397), - [anon_sym_default] = ACTIONS(5397), - [anon_sym_while] = ACTIONS(5397), - [anon_sym_do] = ACTIONS(5397), - [anon_sym_for] = ACTIONS(5397), - [anon_sym_return] = ACTIONS(5397), - [anon_sym_break] = ACTIONS(5397), - [anon_sym_continue] = ACTIONS(5397), - [anon_sym_goto] = ACTIONS(5397), - [anon_sym_AMP] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_TILDE] = ACTIONS(5395), - [anon_sym_PLUS] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5395), - [anon_sym_PLUS_PLUS] = ACTIONS(5395), - [anon_sym_sizeof] = ACTIONS(5397), - [sym_number_literal] = ACTIONS(5395), - [sym_char_literal] = ACTIONS(5395), - [sym_string_literal] = ACTIONS(5395), - [sym_true] = ACTIONS(5397), - [sym_false] = ACTIONS(5397), - [sym_null] = ACTIONS(5397), - [sym_identifier] = ACTIONS(5397), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5397), - [sym_auto] = ACTIONS(5397), - [anon_sym_typename] = ACTIONS(5397), - [anon_sym_new] = ACTIONS(5397), - [anon_sym_COLON_COLON] = ACTIONS(5395), - [anon_sym_delete] = ACTIONS(5397), - [sym_nullptr] = ACTIONS(5397), + [1980] = { + [sym_raw_string_literal] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5415), + [anon_sym_LPAREN] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_SEMI] = ACTIONS(5413), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(5413), + [anon_sym_RBRACE] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5413), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym_mutable] = ACTIONS(5415), + [anon_sym_explicit] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [anon_sym_if] = ACTIONS(5415), + [anon_sym_switch] = ACTIONS(5415), + [anon_sym_case] = ACTIONS(5415), + [anon_sym_default] = ACTIONS(5415), + [anon_sym_while] = ACTIONS(5415), + [anon_sym_do] = ACTIONS(5415), + [anon_sym_for] = ACTIONS(5415), + [anon_sym_return] = ACTIONS(5415), + [anon_sym_break] = ACTIONS(5415), + [anon_sym_continue] = ACTIONS(5415), + [anon_sym_goto] = ACTIONS(5415), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_TILDE] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5415), + [anon_sym_DASH_DASH] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5413), + [anon_sym_sizeof] = ACTIONS(5415), + [sym_number_literal] = ACTIONS(5413), + [sym_char_literal] = ACTIONS(5413), + [sym_string_literal] = ACTIONS(5413), + [sym_true] = ACTIONS(5415), + [sym_false] = ACTIONS(5415), + [sym_null] = ACTIONS(5415), + [sym_identifier] = ACTIONS(5415), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5415), + [sym_auto] = ACTIONS(5415), + [anon_sym_typename] = ACTIONS(5415), + [anon_sym_new] = ACTIONS(5415), + [anon_sym_COLON_COLON] = ACTIONS(5413), + [anon_sym_delete] = ACTIONS(5415), + [sym_nullptr] = ACTIONS(5415), }, - [1977] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5399), + [1981] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5417), [sym_comment] = ACTIONS(49), }, - [1978] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5401), + [1982] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5419), [sym_comment] = ACTIONS(49), }, - [1979] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [1983] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -78759,696 +78883,696 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(5403), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5406), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5409), - [anon_sym_LPAREN] = ACTIONS(3189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5412), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5415), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5417), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5420), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5415), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5415), - [sym_preproc_directive] = ACTIONS(5423), - [anon_sym_SEMI] = ACTIONS(5426), - [anon_sym_typedef] = ACTIONS(5429), - [anon_sym_extern] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(5432), - [anon_sym_STAR] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_register] = ACTIONS(3210), - [anon_sym_inline] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3236), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(5435), - [anon_sym_switch] = ACTIONS(5438), - [anon_sym_case] = ACTIONS(5441), - [anon_sym_default] = ACTIONS(5444), - [anon_sym_while] = ACTIONS(5447), - [anon_sym_do] = ACTIONS(5450), - [anon_sym_for] = ACTIONS(5453), - [anon_sym_return] = ACTIONS(5456), - [anon_sym_break] = ACTIONS(5459), - [anon_sym_continue] = ACTIONS(5462), - [anon_sym_goto] = ACTIONS(5465), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3287), - [sym_number_literal] = ACTIONS(5403), - [sym_char_literal] = ACTIONS(5403), - [sym_string_literal] = ACTIONS(3290), - [sym_true] = ACTIONS(5468), - [sym_false] = ACTIONS(5468), - [sym_null] = ACTIONS(5468), - [sym_identifier] = ACTIONS(5471), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3299), - [sym_auto] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3311), - [sym_nullptr] = ACTIONS(5468), - }, - [1980] = { - [sym_raw_string_literal] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5476), - [sym_preproc_directive] = ACTIONS(5476), - [anon_sym_SEMI] = ACTIONS(5474), - [anon_sym_typedef] = ACTIONS(5476), - [anon_sym_extern] = ACTIONS(5476), - [anon_sym_LBRACE] = ACTIONS(5474), - [anon_sym_RBRACE] = ACTIONS(5474), - [anon_sym_STAR] = ACTIONS(5474), - [anon_sym_LBRACK] = ACTIONS(5474), - [anon_sym_static] = ACTIONS(5476), - [anon_sym_register] = ACTIONS(5476), - [anon_sym_inline] = ACTIONS(5476), - [anon_sym_const] = ACTIONS(5476), - [anon_sym_restrict] = ACTIONS(5476), - [anon_sym_volatile] = ACTIONS(5476), - [anon_sym__Atomic] = ACTIONS(5476), - [anon_sym_mutable] = ACTIONS(5476), - [anon_sym_explicit] = ACTIONS(5476), - [anon_sym_constexpr] = ACTIONS(5476), - [anon_sym_unsigned] = ACTIONS(5476), - [anon_sym_long] = ACTIONS(5476), - [anon_sym_short] = ACTIONS(5476), - [sym_primitive_type] = ACTIONS(5476), - [anon_sym_enum] = ACTIONS(5476), - [anon_sym_struct] = ACTIONS(5476), - [anon_sym_union] = ACTIONS(5476), - [anon_sym_if] = ACTIONS(5476), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_case] = ACTIONS(5476), - [anon_sym_default] = ACTIONS(5476), - [anon_sym_while] = ACTIONS(5476), - [anon_sym_do] = ACTIONS(5476), - [anon_sym_for] = ACTIONS(5476), - [anon_sym_return] = ACTIONS(5476), - [anon_sym_break] = ACTIONS(5476), - [anon_sym_continue] = ACTIONS(5476), - [anon_sym_goto] = ACTIONS(5476), - [anon_sym_AMP] = ACTIONS(5474), - [anon_sym_BANG] = ACTIONS(5474), - [anon_sym_TILDE] = ACTIONS(5474), - [anon_sym_PLUS] = ACTIONS(5476), - [anon_sym_DASH] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5474), - [anon_sym_PLUS_PLUS] = ACTIONS(5474), - [anon_sym_sizeof] = ACTIONS(5476), - [sym_number_literal] = ACTIONS(5474), - [sym_char_literal] = ACTIONS(5474), - [sym_string_literal] = ACTIONS(5474), - [sym_true] = ACTIONS(5476), - [sym_false] = ACTIONS(5476), - [sym_null] = ACTIONS(5476), - [sym_identifier] = ACTIONS(5476), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5476), - [sym_auto] = ACTIONS(5476), - [anon_sym_typename] = ACTIONS(5476), - [anon_sym_new] = ACTIONS(5476), - [anon_sym_COLON_COLON] = ACTIONS(5474), - [anon_sym_delete] = ACTIONS(5476), - [sym_nullptr] = ACTIONS(5476), - }, - [1981] = { - [sym_raw_string_literal] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5480), - [anon_sym_LPAREN] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5480), - [sym_preproc_directive] = ACTIONS(5480), - [anon_sym_SEMI] = ACTIONS(5478), - [anon_sym_typedef] = ACTIONS(5480), - [anon_sym_extern] = ACTIONS(5480), - [anon_sym_LBRACE] = ACTIONS(5478), - [anon_sym_RBRACE] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(5478), - [anon_sym_static] = ACTIONS(5480), - [anon_sym_register] = ACTIONS(5480), - [anon_sym_inline] = ACTIONS(5480), - [anon_sym_const] = ACTIONS(5480), - [anon_sym_restrict] = ACTIONS(5480), - [anon_sym_volatile] = ACTIONS(5480), - [anon_sym__Atomic] = ACTIONS(5480), - [anon_sym_mutable] = ACTIONS(5480), - [anon_sym_explicit] = ACTIONS(5480), - [anon_sym_constexpr] = ACTIONS(5480), - [anon_sym_unsigned] = ACTIONS(5480), - [anon_sym_long] = ACTIONS(5480), - [anon_sym_short] = ACTIONS(5480), - [sym_primitive_type] = ACTIONS(5480), - [anon_sym_enum] = ACTIONS(5480), - [anon_sym_struct] = ACTIONS(5480), - [anon_sym_union] = ACTIONS(5480), - [anon_sym_if] = ACTIONS(5480), - [anon_sym_switch] = ACTIONS(5480), - [anon_sym_case] = ACTIONS(5480), - [anon_sym_default] = ACTIONS(5480), - [anon_sym_while] = ACTIONS(5480), - [anon_sym_do] = ACTIONS(5480), - [anon_sym_for] = ACTIONS(5480), - [anon_sym_return] = ACTIONS(5480), - [anon_sym_break] = ACTIONS(5480), + [sym_raw_string_literal] = ACTIONS(5421), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5424), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5427), + [anon_sym_LPAREN] = ACTIONS(3195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5430), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5433), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5435), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5438), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5433), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5433), + [sym_preproc_directive] = ACTIONS(5441), + [anon_sym_SEMI] = ACTIONS(5444), + [anon_sym_typedef] = ACTIONS(5447), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(5450), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3233), + [anon_sym_long] = ACTIONS(3233), + [anon_sym_short] = ACTIONS(3233), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(5453), + [anon_sym_switch] = ACTIONS(5456), + [anon_sym_case] = ACTIONS(5459), + [anon_sym_default] = ACTIONS(5462), + [anon_sym_while] = ACTIONS(5465), + [anon_sym_do] = ACTIONS(5468), + [anon_sym_for] = ACTIONS(5471), + [anon_sym_return] = ACTIONS(5474), + [anon_sym_break] = ACTIONS(5477), [anon_sym_continue] = ACTIONS(5480), - [anon_sym_goto] = ACTIONS(5480), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_TILDE] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5478), - [anon_sym_sizeof] = ACTIONS(5480), - [sym_number_literal] = ACTIONS(5478), - [sym_char_literal] = ACTIONS(5478), - [sym_string_literal] = ACTIONS(5478), - [sym_true] = ACTIONS(5480), - [sym_false] = ACTIONS(5480), - [sym_null] = ACTIONS(5480), - [sym_identifier] = ACTIONS(5480), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5480), - [sym_auto] = ACTIONS(5480), - [anon_sym_typename] = ACTIONS(5480), - [anon_sym_new] = ACTIONS(5480), - [anon_sym_COLON_COLON] = ACTIONS(5478), - [anon_sym_delete] = ACTIONS(5480), - [sym_nullptr] = ACTIONS(5480), - }, - [1982] = { - [sym_raw_string_literal] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5484), - [sym_preproc_directive] = ACTIONS(5484), - [anon_sym_SEMI] = ACTIONS(5482), - [anon_sym_typedef] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5482), - [anon_sym_RBRACE] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5482), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_register] = ACTIONS(5484), - [anon_sym_inline] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_restrict] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym__Atomic] = ACTIONS(5484), - [anon_sym_mutable] = ACTIONS(5484), - [anon_sym_explicit] = ACTIONS(5484), - [anon_sym_constexpr] = ACTIONS(5484), - [anon_sym_unsigned] = ACTIONS(5484), - [anon_sym_long] = ACTIONS(5484), - [anon_sym_short] = ACTIONS(5484), - [sym_primitive_type] = ACTIONS(5484), - [anon_sym_enum] = ACTIONS(5484), - [anon_sym_struct] = ACTIONS(5484), - [anon_sym_union] = ACTIONS(5484), - [anon_sym_if] = ACTIONS(5484), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_case] = ACTIONS(5484), - [anon_sym_default] = ACTIONS(5484), - [anon_sym_while] = ACTIONS(5484), - [anon_sym_do] = ACTIONS(5484), - [anon_sym_for] = ACTIONS(5484), - [anon_sym_return] = ACTIONS(5484), - [anon_sym_break] = ACTIONS(5484), - [anon_sym_continue] = ACTIONS(5484), - [anon_sym_goto] = ACTIONS(5484), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_BANG] = ACTIONS(5482), - [anon_sym_TILDE] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5482), - [anon_sym_sizeof] = ACTIONS(5484), - [sym_number_literal] = ACTIONS(5482), - [sym_char_literal] = ACTIONS(5482), - [sym_string_literal] = ACTIONS(5482), - [sym_true] = ACTIONS(5484), - [sym_false] = ACTIONS(5484), - [sym_null] = ACTIONS(5484), - [sym_identifier] = ACTIONS(5484), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5484), - [sym_auto] = ACTIONS(5484), - [anon_sym_typename] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_COLON_COLON] = ACTIONS(5482), - [anon_sym_delete] = ACTIONS(5484), - [sym_nullptr] = ACTIONS(5484), - }, - [1983] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5486), - [sym_comment] = ACTIONS(49), + [anon_sym_goto] = ACTIONS(5483), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_sizeof] = ACTIONS(3293), + [sym_number_literal] = ACTIONS(5421), + [sym_char_literal] = ACTIONS(5421), + [sym_string_literal] = ACTIONS(3296), + [sym_true] = ACTIONS(5486), + [sym_false] = ACTIONS(5486), + [sym_null] = ACTIONS(5486), + [sym_identifier] = ACTIONS(5489), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3305), + [sym_auto] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3317), + [sym_nullptr] = ACTIONS(5486), }, [1984] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5488), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5494), + [anon_sym_LPAREN] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5494), + [sym_preproc_directive] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5492), + [anon_sym_typedef] = ACTIONS(5494), + [anon_sym_extern] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5492), + [anon_sym_RBRACE] = ACTIONS(5492), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5492), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_register] = ACTIONS(5494), + [anon_sym_inline] = ACTIONS(5494), + [anon_sym_const] = ACTIONS(5494), + [anon_sym_restrict] = ACTIONS(5494), + [anon_sym_volatile] = ACTIONS(5494), + [anon_sym__Atomic] = ACTIONS(5494), + [anon_sym_mutable] = ACTIONS(5494), + [anon_sym_explicit] = ACTIONS(5494), + [anon_sym_constexpr] = ACTIONS(5494), + [anon_sym_unsigned] = ACTIONS(5494), + [anon_sym_long] = ACTIONS(5494), + [anon_sym_short] = ACTIONS(5494), + [sym_primitive_type] = ACTIONS(5494), + [anon_sym_enum] = ACTIONS(5494), + [anon_sym_struct] = ACTIONS(5494), + [anon_sym_union] = ACTIONS(5494), + [anon_sym_if] = ACTIONS(5494), + [anon_sym_switch] = ACTIONS(5494), + [anon_sym_case] = ACTIONS(5494), + [anon_sym_default] = ACTIONS(5494), + [anon_sym_while] = ACTIONS(5494), + [anon_sym_do] = ACTIONS(5494), + [anon_sym_for] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5494), + [anon_sym_break] = ACTIONS(5494), + [anon_sym_continue] = ACTIONS(5494), + [anon_sym_goto] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DASH_DASH] = ACTIONS(5492), + [anon_sym_PLUS_PLUS] = ACTIONS(5492), + [anon_sym_sizeof] = ACTIONS(5494), + [sym_number_literal] = ACTIONS(5492), + [sym_char_literal] = ACTIONS(5492), + [sym_string_literal] = ACTIONS(5492), + [sym_true] = ACTIONS(5494), + [sym_false] = ACTIONS(5494), + [sym_null] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5494), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5494), + [sym_auto] = ACTIONS(5494), + [anon_sym_typename] = ACTIONS(5494), + [anon_sym_new] = ACTIONS(5494), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_delete] = ACTIONS(5494), + [sym_nullptr] = ACTIONS(5494), }, [1985] = { - [sym_raw_string_literal] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5492), - [sym_preproc_directive] = ACTIONS(5492), - [anon_sym_SEMI] = ACTIONS(5490), - [anon_sym_typedef] = ACTIONS(5492), - [anon_sym_extern] = ACTIONS(5492), - [anon_sym_LBRACE] = ACTIONS(5490), - [anon_sym_RBRACE] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5492), - [anon_sym_register] = ACTIONS(5492), - [anon_sym_inline] = ACTIONS(5492), - [anon_sym_const] = ACTIONS(5492), - [anon_sym_restrict] = ACTIONS(5492), - [anon_sym_volatile] = ACTIONS(5492), - [anon_sym__Atomic] = ACTIONS(5492), - [anon_sym_mutable] = ACTIONS(5492), - [anon_sym_explicit] = ACTIONS(5492), - [anon_sym_constexpr] = ACTIONS(5492), - [anon_sym_unsigned] = ACTIONS(5492), - [anon_sym_long] = ACTIONS(5492), - [anon_sym_short] = ACTIONS(5492), - [sym_primitive_type] = ACTIONS(5492), - [anon_sym_enum] = ACTIONS(5492), - [anon_sym_struct] = ACTIONS(5492), - [anon_sym_union] = ACTIONS(5492), - [anon_sym_if] = ACTIONS(5492), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_case] = ACTIONS(5492), - [anon_sym_default] = ACTIONS(5492), - [anon_sym_while] = ACTIONS(5492), - [anon_sym_do] = ACTIONS(5492), - [anon_sym_for] = ACTIONS(5492), - [anon_sym_return] = ACTIONS(5492), - [anon_sym_break] = ACTIONS(5492), - [anon_sym_continue] = ACTIONS(5492), - [anon_sym_goto] = ACTIONS(5492), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_TILDE] = ACTIONS(5490), - [anon_sym_PLUS] = ACTIONS(5492), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5490), - [anon_sym_sizeof] = ACTIONS(5492), - [sym_number_literal] = ACTIONS(5490), - [sym_char_literal] = ACTIONS(5490), - [sym_string_literal] = ACTIONS(5490), - [sym_true] = ACTIONS(5492), - [sym_false] = ACTIONS(5492), - [sym_null] = ACTIONS(5492), - [sym_identifier] = ACTIONS(5492), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5492), - [sym_auto] = ACTIONS(5492), - [anon_sym_typename] = ACTIONS(5492), - [anon_sym_new] = ACTIONS(5492), - [anon_sym_COLON_COLON] = ACTIONS(5490), - [anon_sym_delete] = ACTIONS(5492), - [sym_nullptr] = ACTIONS(5492), + [sym_raw_string_literal] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5498), + [anon_sym_LPAREN] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5498), + [sym_preproc_directive] = ACTIONS(5498), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym_typedef] = ACTIONS(5498), + [anon_sym_extern] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_RBRACE] = ACTIONS(5496), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_static] = ACTIONS(5498), + [anon_sym_register] = ACTIONS(5498), + [anon_sym_inline] = ACTIONS(5498), + [anon_sym_const] = ACTIONS(5498), + [anon_sym_restrict] = ACTIONS(5498), + [anon_sym_volatile] = ACTIONS(5498), + [anon_sym__Atomic] = ACTIONS(5498), + [anon_sym_mutable] = ACTIONS(5498), + [anon_sym_explicit] = ACTIONS(5498), + [anon_sym_constexpr] = ACTIONS(5498), + [anon_sym_unsigned] = ACTIONS(5498), + [anon_sym_long] = ACTIONS(5498), + [anon_sym_short] = ACTIONS(5498), + [sym_primitive_type] = ACTIONS(5498), + [anon_sym_enum] = ACTIONS(5498), + [anon_sym_struct] = ACTIONS(5498), + [anon_sym_union] = ACTIONS(5498), + [anon_sym_if] = ACTIONS(5498), + [anon_sym_switch] = ACTIONS(5498), + [anon_sym_case] = ACTIONS(5498), + [anon_sym_default] = ACTIONS(5498), + [anon_sym_while] = ACTIONS(5498), + [anon_sym_do] = ACTIONS(5498), + [anon_sym_for] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5498), + [anon_sym_break] = ACTIONS(5498), + [anon_sym_continue] = ACTIONS(5498), + [anon_sym_goto] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_sizeof] = ACTIONS(5498), + [sym_number_literal] = ACTIONS(5496), + [sym_char_literal] = ACTIONS(5496), + [sym_string_literal] = ACTIONS(5496), + [sym_true] = ACTIONS(5498), + [sym_false] = ACTIONS(5498), + [sym_null] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5498), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5498), + [sym_auto] = ACTIONS(5498), + [anon_sym_typename] = ACTIONS(5498), + [anon_sym_new] = ACTIONS(5498), + [anon_sym_COLON_COLON] = ACTIONS(5496), + [anon_sym_delete] = ACTIONS(5498), + [sym_nullptr] = ACTIONS(5498), }, [1986] = { - [sym_raw_string_literal] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5496), - [sym_preproc_directive] = ACTIONS(5496), - [anon_sym_SEMI] = ACTIONS(5494), - [anon_sym_typedef] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_RBRACE] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_explicit] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_unsigned] = ACTIONS(5496), - [anon_sym_long] = ACTIONS(5496), - [anon_sym_short] = ACTIONS(5496), - [sym_primitive_type] = ACTIONS(5496), - [anon_sym_enum] = ACTIONS(5496), - [anon_sym_struct] = ACTIONS(5496), - [anon_sym_union] = ACTIONS(5496), - [anon_sym_if] = ACTIONS(5496), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_case] = ACTIONS(5496), - [anon_sym_default] = ACTIONS(5496), - [anon_sym_while] = ACTIONS(5496), - [anon_sym_do] = ACTIONS(5496), - [anon_sym_for] = ACTIONS(5496), - [anon_sym_return] = ACTIONS(5496), - [anon_sym_break] = ACTIONS(5496), - [anon_sym_continue] = ACTIONS(5496), - [anon_sym_goto] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5494), - [anon_sym_sizeof] = ACTIONS(5496), - [sym_number_literal] = ACTIONS(5494), - [sym_char_literal] = ACTIONS(5494), - [sym_string_literal] = ACTIONS(5494), - [sym_true] = ACTIONS(5496), - [sym_false] = ACTIONS(5496), - [sym_null] = ACTIONS(5496), - [sym_identifier] = ACTIONS(5496), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5496), - [sym_auto] = ACTIONS(5496), - [anon_sym_typename] = ACTIONS(5496), - [anon_sym_new] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5494), - [anon_sym_delete] = ACTIONS(5496), - [sym_nullptr] = ACTIONS(5496), + [sym_raw_string_literal] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5502), + [sym_preproc_directive] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_typedef] = ACTIONS(5502), + [anon_sym_extern] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5500), + [anon_sym_RBRACE] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_static] = ACTIONS(5502), + [anon_sym_register] = ACTIONS(5502), + [anon_sym_inline] = ACTIONS(5502), + [anon_sym_const] = ACTIONS(5502), + [anon_sym_restrict] = ACTIONS(5502), + [anon_sym_volatile] = ACTIONS(5502), + [anon_sym__Atomic] = ACTIONS(5502), + [anon_sym_mutable] = ACTIONS(5502), + [anon_sym_explicit] = ACTIONS(5502), + [anon_sym_constexpr] = ACTIONS(5502), + [anon_sym_unsigned] = ACTIONS(5502), + [anon_sym_long] = ACTIONS(5502), + [anon_sym_short] = ACTIONS(5502), + [sym_primitive_type] = ACTIONS(5502), + [anon_sym_enum] = ACTIONS(5502), + [anon_sym_struct] = ACTIONS(5502), + [anon_sym_union] = ACTIONS(5502), + [anon_sym_if] = ACTIONS(5502), + [anon_sym_switch] = ACTIONS(5502), + [anon_sym_case] = ACTIONS(5502), + [anon_sym_default] = ACTIONS(5502), + [anon_sym_while] = ACTIONS(5502), + [anon_sym_do] = ACTIONS(5502), + [anon_sym_for] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5502), + [anon_sym_break] = ACTIONS(5502), + [anon_sym_continue] = ACTIONS(5502), + [anon_sym_goto] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_sizeof] = ACTIONS(5502), + [sym_number_literal] = ACTIONS(5500), + [sym_char_literal] = ACTIONS(5500), + [sym_string_literal] = ACTIONS(5500), + [sym_true] = ACTIONS(5502), + [sym_false] = ACTIONS(5502), + [sym_null] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5502), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5502), + [sym_auto] = ACTIONS(5502), + [anon_sym_typename] = ACTIONS(5502), + [anon_sym_new] = ACTIONS(5502), + [anon_sym_COLON_COLON] = ACTIONS(5500), + [anon_sym_delete] = ACTIONS(5502), + [sym_nullptr] = ACTIONS(5502), }, [1987] = { - [sym_raw_string_literal] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5500), - [anon_sym_LPAREN] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5500), - [sym_preproc_directive] = ACTIONS(5500), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_typedef] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_RBRACE] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_explicit] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_unsigned] = ACTIONS(5500), - [anon_sym_long] = ACTIONS(5500), - [anon_sym_short] = ACTIONS(5500), - [sym_primitive_type] = ACTIONS(5500), - [anon_sym_enum] = ACTIONS(5500), - [anon_sym_struct] = ACTIONS(5500), - [anon_sym_union] = ACTIONS(5500), - [anon_sym_if] = ACTIONS(5500), - [anon_sym_switch] = ACTIONS(5500), - [anon_sym_case] = ACTIONS(5500), - [anon_sym_default] = ACTIONS(5500), - [anon_sym_while] = ACTIONS(5500), - [anon_sym_do] = ACTIONS(5500), - [anon_sym_for] = ACTIONS(5500), - [anon_sym_return] = ACTIONS(5500), - [anon_sym_break] = ACTIONS(5500), - [anon_sym_continue] = ACTIONS(5500), - [anon_sym_goto] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_sizeof] = ACTIONS(5500), - [sym_number_literal] = ACTIONS(5498), - [sym_char_literal] = ACTIONS(5498), - [sym_string_literal] = ACTIONS(5498), - [sym_true] = ACTIONS(5500), - [sym_false] = ACTIONS(5500), - [sym_null] = ACTIONS(5500), - [sym_identifier] = ACTIONS(5500), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5500), - [sym_auto] = ACTIONS(5500), - [anon_sym_typename] = ACTIONS(5500), - [anon_sym_new] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_delete] = ACTIONS(5500), - [sym_nullptr] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5504), + [sym_comment] = ACTIONS(49), }, [1988] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5506), [sym_comment] = ACTIONS(49), }, [1989] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5504), - [sym_comment] = ACTIONS(49), + [sym_raw_string_literal] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5510), + [anon_sym_LPAREN] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5510), + [sym_preproc_directive] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_typedef] = ACTIONS(5510), + [anon_sym_extern] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_RBRACE] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5510), + [anon_sym_register] = ACTIONS(5510), + [anon_sym_inline] = ACTIONS(5510), + [anon_sym_const] = ACTIONS(5510), + [anon_sym_restrict] = ACTIONS(5510), + [anon_sym_volatile] = ACTIONS(5510), + [anon_sym__Atomic] = ACTIONS(5510), + [anon_sym_mutable] = ACTIONS(5510), + [anon_sym_explicit] = ACTIONS(5510), + [anon_sym_constexpr] = ACTIONS(5510), + [anon_sym_unsigned] = ACTIONS(5510), + [anon_sym_long] = ACTIONS(5510), + [anon_sym_short] = ACTIONS(5510), + [sym_primitive_type] = ACTIONS(5510), + [anon_sym_enum] = ACTIONS(5510), + [anon_sym_struct] = ACTIONS(5510), + [anon_sym_union] = ACTIONS(5510), + [anon_sym_if] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5510), + [anon_sym_case] = ACTIONS(5510), + [anon_sym_default] = ACTIONS(5510), + [anon_sym_while] = ACTIONS(5510), + [anon_sym_do] = ACTIONS(5510), + [anon_sym_for] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5510), + [anon_sym_break] = ACTIONS(5510), + [anon_sym_continue] = ACTIONS(5510), + [anon_sym_goto] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_sizeof] = ACTIONS(5510), + [sym_number_literal] = ACTIONS(5508), + [sym_char_literal] = ACTIONS(5508), + [sym_string_literal] = ACTIONS(5508), + [sym_true] = ACTIONS(5510), + [sym_false] = ACTIONS(5510), + [sym_null] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5510), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5510), + [sym_auto] = ACTIONS(5510), + [anon_sym_typename] = ACTIONS(5510), + [anon_sym_new] = ACTIONS(5510), + [anon_sym_COLON_COLON] = ACTIONS(5508), + [anon_sym_delete] = ACTIONS(5510), + [sym_nullptr] = ACTIONS(5510), }, [1990] = { - [sym_raw_string_literal] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_RBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_goto] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_sizeof] = ACTIONS(1972), - [sym_number_literal] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [sym_string_literal] = ACTIONS(1970), - [sym_true] = ACTIONS(1972), - [sym_false] = ACTIONS(1972), - [sym_null] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_delete] = ACTIONS(1972), - [sym_nullptr] = ACTIONS(1972), + [sym_raw_string_literal] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5514), + [anon_sym_LPAREN] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5512), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5512), + [anon_sym_RBRACE] = ACTIONS(5512), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym_mutable] = ACTIONS(5514), + [anon_sym_explicit] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [anon_sym_if] = ACTIONS(5514), + [anon_sym_switch] = ACTIONS(5514), + [anon_sym_case] = ACTIONS(5514), + [anon_sym_default] = ACTIONS(5514), + [anon_sym_while] = ACTIONS(5514), + [anon_sym_do] = ACTIONS(5514), + [anon_sym_for] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5514), + [anon_sym_break] = ACTIONS(5514), + [anon_sym_continue] = ACTIONS(5514), + [anon_sym_goto] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_sizeof] = ACTIONS(5514), + [sym_number_literal] = ACTIONS(5512), + [sym_char_literal] = ACTIONS(5512), + [sym_string_literal] = ACTIONS(5512), + [sym_true] = ACTIONS(5514), + [sym_false] = ACTIONS(5514), + [sym_null] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5514), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5514), + [sym_auto] = ACTIONS(5514), + [anon_sym_typename] = ACTIONS(5514), + [anon_sym_new] = ACTIONS(5514), + [anon_sym_COLON_COLON] = ACTIONS(5512), + [anon_sym_delete] = ACTIONS(5514), + [sym_nullptr] = ACTIONS(5514), }, [1991] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [sym_raw_string_literal] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5518), + [anon_sym_LPAREN] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5518), + [sym_preproc_directive] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_typedef] = ACTIONS(5518), + [anon_sym_extern] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5516), + [anon_sym_RBRACE] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_static] = ACTIONS(5518), + [anon_sym_register] = ACTIONS(5518), + [anon_sym_inline] = ACTIONS(5518), + [anon_sym_const] = ACTIONS(5518), + [anon_sym_restrict] = ACTIONS(5518), + [anon_sym_volatile] = ACTIONS(5518), + [anon_sym__Atomic] = ACTIONS(5518), + [anon_sym_mutable] = ACTIONS(5518), + [anon_sym_explicit] = ACTIONS(5518), + [anon_sym_constexpr] = ACTIONS(5518), + [anon_sym_unsigned] = ACTIONS(5518), + [anon_sym_long] = ACTIONS(5518), + [anon_sym_short] = ACTIONS(5518), + [sym_primitive_type] = ACTIONS(5518), + [anon_sym_enum] = ACTIONS(5518), + [anon_sym_struct] = ACTIONS(5518), + [anon_sym_union] = ACTIONS(5518), + [anon_sym_if] = ACTIONS(5518), + [anon_sym_switch] = ACTIONS(5518), + [anon_sym_case] = ACTIONS(5518), + [anon_sym_default] = ACTIONS(5518), + [anon_sym_while] = ACTIONS(5518), + [anon_sym_do] = ACTIONS(5518), + [anon_sym_for] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5518), + [anon_sym_break] = ACTIONS(5518), + [anon_sym_continue] = ACTIONS(5518), + [anon_sym_goto] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_sizeof] = ACTIONS(5518), + [sym_number_literal] = ACTIONS(5516), + [sym_char_literal] = ACTIONS(5516), + [sym_string_literal] = ACTIONS(5516), + [sym_true] = ACTIONS(5518), + [sym_false] = ACTIONS(5518), + [sym_null] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5518), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5518), + [sym_auto] = ACTIONS(5518), + [anon_sym_typename] = ACTIONS(5518), + [anon_sym_new] = ACTIONS(5518), + [anon_sym_COLON_COLON] = ACTIONS(5516), + [anon_sym_delete] = ACTIONS(5518), + [sym_nullptr] = ACTIONS(5518), }, [1992] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5520), + [sym_comment] = ACTIONS(49), + }, + [1993] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5522), + [sym_comment] = ACTIONS(49), + }, + [1994] = { + [sym_raw_string_literal] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [sym_string_literal] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_delete] = ACTIONS(1974), + [sym_nullptr] = ACTIONS(1974), + }, + [1995] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), + }, + [1996] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(5506), + [anon_sym_SEMI] = ACTIONS(5524), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [1993] = { - [anon_sym_RPAREN] = ACTIONS(5508), + [1997] = { + [anon_sym_RPAREN] = ACTIONS(5526), [sym_comment] = ACTIONS(49), }, - [1994] = { + [1998] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -79467,7 +79591,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(2350), + [sym_type_descriptor] = STATE(2358), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -79531,143 +79655,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [1995] = { + [1999] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [1996] = { - [aux_sym_concatenated_string_repeat1] = STATE(2351), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_RPAREN] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(5510), + [2000] = { + [aux_sym_concatenated_string_repeat1] = STATE(2359), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_RPAREN] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(5528), [sym_comment] = ACTIONS(49), }, - [1997] = { - [sym__expression] = STATE(2353), - [sym_conditional_expression] = STATE(2353), - [sym_assignment_expression] = STATE(2353), - [sym_pointer_expression] = STATE(2353), - [sym_logical_expression] = STATE(2353), - [sym_bitwise_expression] = STATE(2353), - [sym_equality_expression] = STATE(2353), - [sym_relational_expression] = STATE(2353), - [sym_shift_expression] = STATE(2353), - [sym_math_expression] = STATE(2353), - [sym_cast_expression] = STATE(2353), - [sym_sizeof_expression] = STATE(2353), - [sym_subscript_expression] = STATE(2353), - [sym_call_expression] = STATE(2353), - [sym_field_expression] = STATE(2353), - [sym_compound_literal_expression] = STATE(2353), - [sym_parenthesized_expression] = STATE(2353), - [sym_concatenated_string] = STATE(2353), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2353), - [sym_new_expression] = STATE(2353), - [sym_delete_expression] = STATE(2353), - [sym_lambda_expression] = STATE(2353), + [2001] = { + [sym__expression] = STATE(2361), + [sym_conditional_expression] = STATE(2361), + [sym_assignment_expression] = STATE(2361), + [sym_pointer_expression] = STATE(2361), + [sym_logical_expression] = STATE(2361), + [sym_bitwise_expression] = STATE(2361), + [sym_equality_expression] = STATE(2361), + [sym_relational_expression] = STATE(2361), + [sym_shift_expression] = STATE(2361), + [sym_math_expression] = STATE(2361), + [sym_cast_expression] = STATE(2361), + [sym_sizeof_expression] = STATE(2361), + [sym_subscript_expression] = STATE(2361), + [sym_call_expression] = STATE(2361), + [sym_field_expression] = STATE(2361), + [sym_compound_literal_expression] = STATE(2361), + [sym_parenthesized_expression] = STATE(2361), + [sym_concatenated_string] = STATE(2361), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2361), + [sym_new_expression] = STATE(2361), + [sym_delete_expression] = STATE(2361), + [sym_lambda_expression] = STATE(2361), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5512), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(5514), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5512), - [sym_char_literal] = ACTIONS(5512), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5516), - [sym_false] = ACTIONS(5516), - [sym_null] = ACTIONS(5516), + [sym_raw_string_literal] = ACTIONS(5530), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(5532), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5530), + [sym_char_literal] = ACTIONS(5530), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5534), + [sym_false] = ACTIONS(5534), + [sym_null] = ACTIONS(5534), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5516), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5534), }, - [1998] = { + [2002] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -79700,7 +79824,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5518), + [anon_sym_RBRACK] = ACTIONS(5536), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -79723,501 +79847,63 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [1999] = { + [2003] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2000] = { - [sym_compound_statement] = STATE(2369), - [sym_labeled_statement] = STATE(2369), - [sym_expression_statement] = STATE(2369), - [sym_if_statement] = STATE(2369), - [sym_switch_statement] = STATE(2369), - [sym_case_statement] = STATE(2369), - [sym_while_statement] = STATE(2369), - [sym_do_statement] = STATE(2369), - [sym_for_statement] = STATE(2369), - [sym_return_statement] = STATE(2369), - [sym_break_statement] = STATE(2369), - [sym_continue_statement] = STATE(2369), - [sym_goto_statement] = STATE(2369), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2369), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), - [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), - [anon_sym_AMP] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(668), - [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(672), - [anon_sym_DASH] = ACTIONS(672), - [anon_sym_DASH_DASH] = ACTIONS(674), - [anon_sym_PLUS_PLUS] = ACTIONS(674), - [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), - [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1303), - [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), - }, - [2001] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(2748), - }, - [2002] = { - [sym__expression] = STATE(2372), - [sym_conditional_expression] = STATE(2372), - [sym_assignment_expression] = STATE(2372), - [sym_pointer_expression] = STATE(2372), - [sym_logical_expression] = STATE(2372), - [sym_bitwise_expression] = STATE(2372), - [sym_equality_expression] = STATE(2372), - [sym_relational_expression] = STATE(2372), - [sym_shift_expression] = STATE(2372), - [sym_math_expression] = STATE(2372), - [sym_cast_expression] = STATE(2372), - [sym_sizeof_expression] = STATE(2372), - [sym_subscript_expression] = STATE(2372), - [sym_call_expression] = STATE(2372), - [sym_field_expression] = STATE(2372), - [sym_compound_literal_expression] = STATE(2372), - [sym_parenthesized_expression] = STATE(2372), - [sym_concatenated_string] = STATE(2372), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2372), - [sym_new_expression] = STATE(2372), - [sym_delete_expression] = STATE(2372), - [sym_lambda_expression] = STATE(2372), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5552), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5552), - [sym_char_literal] = ACTIONS(5552), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5554), - [sym_false] = ACTIONS(5554), - [sym_null] = ACTIONS(5554), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5554), - }, - [2003] = { - [sym__expression] = STATE(2373), - [sym_conditional_expression] = STATE(2373), - [sym_assignment_expression] = STATE(2373), - [sym_pointer_expression] = STATE(2373), - [sym_logical_expression] = STATE(2373), - [sym_bitwise_expression] = STATE(2373), - [sym_equality_expression] = STATE(2373), - [sym_relational_expression] = STATE(2373), - [sym_shift_expression] = STATE(2373), - [sym_math_expression] = STATE(2373), - [sym_cast_expression] = STATE(2373), - [sym_sizeof_expression] = STATE(2373), - [sym_subscript_expression] = STATE(2373), - [sym_call_expression] = STATE(2373), - [sym_field_expression] = STATE(2373), - [sym_compound_literal_expression] = STATE(2373), - [sym_parenthesized_expression] = STATE(2373), - [sym_concatenated_string] = STATE(2373), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2373), - [sym_new_expression] = STATE(2373), - [sym_delete_expression] = STATE(2373), - [sym_lambda_expression] = STATE(2373), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5556), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(5556), - [sym_char_literal] = ACTIONS(5556), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5558), - [sym_false] = ACTIONS(5558), - [sym_null] = ACTIONS(5558), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5558), - }, [2004] = { - [sym__expression] = STATE(2374), - [sym_conditional_expression] = STATE(2374), - [sym_assignment_expression] = STATE(2374), - [sym_pointer_expression] = STATE(2374), - [sym_logical_expression] = STATE(2374), - [sym_bitwise_expression] = STATE(2374), - [sym_equality_expression] = STATE(2374), - [sym_relational_expression] = STATE(2374), - [sym_shift_expression] = STATE(2374), - [sym_math_expression] = STATE(2374), - [sym_cast_expression] = STATE(2374), - [sym_sizeof_expression] = STATE(2374), - [sym_subscript_expression] = STATE(2374), - [sym_call_expression] = STATE(2374), - [sym_field_expression] = STATE(2374), - [sym_compound_literal_expression] = STATE(2374), - [sym_parenthesized_expression] = STATE(2374), - [sym_concatenated_string] = STATE(2374), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2374), - [sym_new_expression] = STATE(2374), - [sym_delete_expression] = STATE(2374), - [sym_lambda_expression] = STATE(2374), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5560), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5560), - [sym_char_literal] = ACTIONS(5560), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5562), - [sym_false] = ACTIONS(5562), - [sym_null] = ACTIONS(5562), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5562), - }, - [2005] = { - [sym__expression] = STATE(2375), - [sym_conditional_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2375), - [sym_pointer_expression] = STATE(2375), - [sym_logical_expression] = STATE(2375), - [sym_bitwise_expression] = STATE(2375), - [sym_equality_expression] = STATE(2375), - [sym_relational_expression] = STATE(2375), - [sym_shift_expression] = STATE(2375), - [sym_math_expression] = STATE(2375), - [sym_cast_expression] = STATE(2375), - [sym_sizeof_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_call_expression] = STATE(2375), - [sym_field_expression] = STATE(2375), - [sym_compound_literal_expression] = STATE(2375), - [sym_parenthesized_expression] = STATE(2375), - [sym_concatenated_string] = STATE(2375), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2375), - [sym_new_expression] = STATE(2375), - [sym_delete_expression] = STATE(2375), - [sym_lambda_expression] = STATE(2375), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5564), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5564), - [sym_char_literal] = ACTIONS(5564), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5566), - [sym_false] = ACTIONS(5566), - [sym_null] = ACTIONS(5566), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5566), - }, - [2006] = { - [sym__expression] = STATE(2376), - [sym_conditional_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2376), - [sym_pointer_expression] = STATE(2376), - [sym_logical_expression] = STATE(2376), - [sym_bitwise_expression] = STATE(2376), - [sym_equality_expression] = STATE(2376), - [sym_relational_expression] = STATE(2376), - [sym_shift_expression] = STATE(2376), - [sym_math_expression] = STATE(2376), - [sym_cast_expression] = STATE(2376), - [sym_sizeof_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_call_expression] = STATE(2376), - [sym_field_expression] = STATE(2376), - [sym_compound_literal_expression] = STATE(2376), - [sym_parenthesized_expression] = STATE(2376), - [sym_concatenated_string] = STATE(2376), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2376), - [sym_new_expression] = STATE(2376), - [sym_delete_expression] = STATE(2376), - [sym_lambda_expression] = STATE(2376), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5568), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5568), - [sym_char_literal] = ACTIONS(5568), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5570), - [sym_false] = ACTIONS(5570), - [sym_null] = ACTIONS(5570), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5570), - }, - [2007] = { - [sym__expression] = STATE(2377), - [sym_conditional_expression] = STATE(2377), - [sym_assignment_expression] = STATE(2377), - [sym_pointer_expression] = STATE(2377), - [sym_logical_expression] = STATE(2377), - [sym_bitwise_expression] = STATE(2377), - [sym_equality_expression] = STATE(2377), - [sym_relational_expression] = STATE(2377), - [sym_shift_expression] = STATE(2377), - [sym_math_expression] = STATE(2377), - [sym_cast_expression] = STATE(2377), - [sym_sizeof_expression] = STATE(2377), - [sym_subscript_expression] = STATE(2377), - [sym_call_expression] = STATE(2377), - [sym_field_expression] = STATE(2377), - [sym_compound_literal_expression] = STATE(2377), - [sym_parenthesized_expression] = STATE(2377), - [sym_concatenated_string] = STATE(2377), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2377), - [sym_new_expression] = STATE(2377), - [sym_delete_expression] = STATE(2377), - [sym_lambda_expression] = STATE(2377), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5572), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5572), - [sym_char_literal] = ACTIONS(5572), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5574), - [sym_false] = ACTIONS(5574), - [sym_null] = ACTIONS(5574), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5574), - }, - [2008] = { + [sym_compound_statement] = STATE(2377), + [sym_labeled_statement] = STATE(2377), + [sym_expression_statement] = STATE(2377), + [sym_if_statement] = STATE(2377), + [sym_switch_statement] = STATE(2377), + [sym_case_statement] = STATE(2377), + [sym_while_statement] = STATE(2377), + [sym_do_statement] = STATE(2377), + [sym_for_statement] = STATE(2377), + [sym_return_statement] = STATE(2377), + [sym_break_statement] = STATE(2377), + [sym_continue_statement] = STATE(2377), + [sym_goto_statement] = STATE(2377), [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), [sym_conditional_expression] = STATE(2378), [sym_assignment_expression] = STATE(2378), [sym_pointer_expression] = STATE(2378), @@ -80237,6 +79923,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(2378), [sym_template_type] = STATE(586), [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2377), [sym_new_expression] = STATE(2378), [sym_delete_expression] = STATE(2378), [sym_lambda_expression] = STATE(2378), @@ -80244,85 +79931,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5576), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), + [sym_raw_string_literal] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5576), - [sym_char_literal] = ACTIONS(5576), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5578), - [sym_false] = ACTIONS(5578), - [sym_null] = ACTIONS(5578), - [sym_identifier] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5578), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(5566), }, - [2009] = { - [sym__expression] = STATE(2379), - [sym_conditional_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2379), - [sym_pointer_expression] = STATE(2379), - [sym_logical_expression] = STATE(2379), - [sym_bitwise_expression] = STATE(2379), - [sym_equality_expression] = STATE(2379), - [sym_relational_expression] = STATE(2379), - [sym_shift_expression] = STATE(2379), - [sym_math_expression] = STATE(2379), - [sym_cast_expression] = STATE(2379), - [sym_sizeof_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_call_expression] = STATE(2379), - [sym_field_expression] = STATE(2379), - [sym_compound_literal_expression] = STATE(2379), - [sym_parenthesized_expression] = STATE(2379), - [sym_concatenated_string] = STATE(2379), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2379), - [sym_new_expression] = STATE(2379), - [sym_delete_expression] = STATE(2379), - [sym_lambda_expression] = STATE(2379), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5580), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5580), - [sym_char_literal] = ACTIONS(5580), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5582), - [sym_false] = ACTIONS(5582), - [sym_null] = ACTIONS(5582), + [2005] = { + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5582), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(2750), }, - [2010] = { + [2006] = { [sym__expression] = STATE(2380), [sym_conditional_expression] = STATE(2380), [sym_assignment_expression] = STATE(2380), @@ -80350,32 +80050,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5584), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5584), - [sym_char_literal] = ACTIONS(5584), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5586), - [sym_false] = ACTIONS(5586), - [sym_null] = ACTIONS(5586), + [sym_raw_string_literal] = ACTIONS(5570), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5570), + [sym_char_literal] = ACTIONS(5570), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5572), + [sym_false] = ACTIONS(5572), + [sym_null] = ACTIONS(5572), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5586), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5572), }, - [2011] = { + [2007] = { [sym__expression] = STATE(2381), [sym_conditional_expression] = STATE(2381), [sym_assignment_expression] = STATE(2381), @@ -80400,35 +80100,35 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_delete_expression] = STATE(2381), [sym_lambda_expression] = STATE(2381), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5588), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5588), - [sym_char_literal] = ACTIONS(5588), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5590), - [sym_false] = ACTIONS(5590), - [sym_null] = ACTIONS(5590), + [sym_raw_string_literal] = ACTIONS(5574), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(5574), + [sym_char_literal] = ACTIONS(5574), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(5576), + [sym_false] = ACTIONS(5576), + [sym_null] = ACTIONS(5576), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5590), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(5576), }, - [2012] = { + [2008] = { [sym__expression] = STATE(2382), [sym_conditional_expression] = STATE(2382), [sym_assignment_expression] = STATE(2382), @@ -80456,45 +80156,510 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5592), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5592), - [sym_char_literal] = ACTIONS(5592), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5594), - [sym_false] = ACTIONS(5594), - [sym_null] = ACTIONS(5594), + [sym_raw_string_literal] = ACTIONS(5578), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5578), + [sym_char_literal] = ACTIONS(5578), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5580), + [sym_false] = ACTIONS(5580), + [sym_null] = ACTIONS(5580), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5580), + }, + [2009] = { + [sym__expression] = STATE(2383), + [sym_conditional_expression] = STATE(2383), + [sym_assignment_expression] = STATE(2383), + [sym_pointer_expression] = STATE(2383), + [sym_logical_expression] = STATE(2383), + [sym_bitwise_expression] = STATE(2383), + [sym_equality_expression] = STATE(2383), + [sym_relational_expression] = STATE(2383), + [sym_shift_expression] = STATE(2383), + [sym_math_expression] = STATE(2383), + [sym_cast_expression] = STATE(2383), + [sym_sizeof_expression] = STATE(2383), + [sym_subscript_expression] = STATE(2383), + [sym_call_expression] = STATE(2383), + [sym_field_expression] = STATE(2383), + [sym_compound_literal_expression] = STATE(2383), + [sym_parenthesized_expression] = STATE(2383), + [sym_concatenated_string] = STATE(2383), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2383), + [sym_new_expression] = STATE(2383), + [sym_delete_expression] = STATE(2383), + [sym_lambda_expression] = STATE(2383), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5582), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5582), + [sym_char_literal] = ACTIONS(5582), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5584), + [sym_false] = ACTIONS(5584), + [sym_null] = ACTIONS(5584), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5584), + }, + [2010] = { + [sym__expression] = STATE(2384), + [sym_conditional_expression] = STATE(2384), + [sym_assignment_expression] = STATE(2384), + [sym_pointer_expression] = STATE(2384), + [sym_logical_expression] = STATE(2384), + [sym_bitwise_expression] = STATE(2384), + [sym_equality_expression] = STATE(2384), + [sym_relational_expression] = STATE(2384), + [sym_shift_expression] = STATE(2384), + [sym_math_expression] = STATE(2384), + [sym_cast_expression] = STATE(2384), + [sym_sizeof_expression] = STATE(2384), + [sym_subscript_expression] = STATE(2384), + [sym_call_expression] = STATE(2384), + [sym_field_expression] = STATE(2384), + [sym_compound_literal_expression] = STATE(2384), + [sym_parenthesized_expression] = STATE(2384), + [sym_concatenated_string] = STATE(2384), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2384), + [sym_new_expression] = STATE(2384), + [sym_delete_expression] = STATE(2384), + [sym_lambda_expression] = STATE(2384), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5586), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5586), + [sym_char_literal] = ACTIONS(5586), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5588), + [sym_false] = ACTIONS(5588), + [sym_null] = ACTIONS(5588), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5588), + }, + [2011] = { + [sym__expression] = STATE(2385), + [sym_conditional_expression] = STATE(2385), + [sym_assignment_expression] = STATE(2385), + [sym_pointer_expression] = STATE(2385), + [sym_logical_expression] = STATE(2385), + [sym_bitwise_expression] = STATE(2385), + [sym_equality_expression] = STATE(2385), + [sym_relational_expression] = STATE(2385), + [sym_shift_expression] = STATE(2385), + [sym_math_expression] = STATE(2385), + [sym_cast_expression] = STATE(2385), + [sym_sizeof_expression] = STATE(2385), + [sym_subscript_expression] = STATE(2385), + [sym_call_expression] = STATE(2385), + [sym_field_expression] = STATE(2385), + [sym_compound_literal_expression] = STATE(2385), + [sym_parenthesized_expression] = STATE(2385), + [sym_concatenated_string] = STATE(2385), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2385), + [sym_new_expression] = STATE(2385), + [sym_delete_expression] = STATE(2385), + [sym_lambda_expression] = STATE(2385), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5590), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5590), + [sym_char_literal] = ACTIONS(5590), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5592), + [sym_false] = ACTIONS(5592), + [sym_null] = ACTIONS(5592), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5592), + }, + [2012] = { + [sym__expression] = STATE(2386), + [sym_conditional_expression] = STATE(2386), + [sym_assignment_expression] = STATE(2386), + [sym_pointer_expression] = STATE(2386), + [sym_logical_expression] = STATE(2386), + [sym_bitwise_expression] = STATE(2386), + [sym_equality_expression] = STATE(2386), + [sym_relational_expression] = STATE(2386), + [sym_shift_expression] = STATE(2386), + [sym_math_expression] = STATE(2386), + [sym_cast_expression] = STATE(2386), + [sym_sizeof_expression] = STATE(2386), + [sym_subscript_expression] = STATE(2386), + [sym_call_expression] = STATE(2386), + [sym_field_expression] = STATE(2386), + [sym_compound_literal_expression] = STATE(2386), + [sym_parenthesized_expression] = STATE(2386), + [sym_concatenated_string] = STATE(2386), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2386), + [sym_new_expression] = STATE(2386), + [sym_delete_expression] = STATE(2386), + [sym_lambda_expression] = STATE(2386), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5594), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5594), + [sym_char_literal] = ACTIONS(5594), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5596), + [sym_false] = ACTIONS(5596), + [sym_null] = ACTIONS(5596), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5594), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5596), }, [2013] = { - [sym_compound_statement] = STATE(2383), - [sym_labeled_statement] = STATE(2383), - [sym_expression_statement] = STATE(2383), - [sym_if_statement] = STATE(2383), - [sym_switch_statement] = STATE(2383), - [sym_case_statement] = STATE(2383), - [sym_while_statement] = STATE(2383), - [sym_do_statement] = STATE(2383), - [sym_for_statement] = STATE(2383), - [sym_return_statement] = STATE(2383), - [sym_break_statement] = STATE(2383), - [sym_continue_statement] = STATE(2383), - [sym_goto_statement] = STATE(2383), + [sym__expression] = STATE(2387), + [sym_conditional_expression] = STATE(2387), + [sym_assignment_expression] = STATE(2387), + [sym_pointer_expression] = STATE(2387), + [sym_logical_expression] = STATE(2387), + [sym_bitwise_expression] = STATE(2387), + [sym_equality_expression] = STATE(2387), + [sym_relational_expression] = STATE(2387), + [sym_shift_expression] = STATE(2387), + [sym_math_expression] = STATE(2387), + [sym_cast_expression] = STATE(2387), + [sym_sizeof_expression] = STATE(2387), + [sym_subscript_expression] = STATE(2387), + [sym_call_expression] = STATE(2387), + [sym_field_expression] = STATE(2387), + [sym_compound_literal_expression] = STATE(2387), + [sym_parenthesized_expression] = STATE(2387), + [sym_concatenated_string] = STATE(2387), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2387), + [sym_new_expression] = STATE(2387), + [sym_delete_expression] = STATE(2387), + [sym_lambda_expression] = STATE(2387), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5598), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5598), + [sym_char_literal] = ACTIONS(5598), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5600), + [sym_false] = ACTIONS(5600), + [sym_null] = ACTIONS(5600), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5600), + }, + [2014] = { + [sym__expression] = STATE(2388), + [sym_conditional_expression] = STATE(2388), + [sym_assignment_expression] = STATE(2388), + [sym_pointer_expression] = STATE(2388), + [sym_logical_expression] = STATE(2388), + [sym_bitwise_expression] = STATE(2388), + [sym_equality_expression] = STATE(2388), + [sym_relational_expression] = STATE(2388), + [sym_shift_expression] = STATE(2388), + [sym_math_expression] = STATE(2388), + [sym_cast_expression] = STATE(2388), + [sym_sizeof_expression] = STATE(2388), + [sym_subscript_expression] = STATE(2388), + [sym_call_expression] = STATE(2388), + [sym_field_expression] = STATE(2388), + [sym_compound_literal_expression] = STATE(2388), + [sym_parenthesized_expression] = STATE(2388), + [sym_concatenated_string] = STATE(2388), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2388), + [sym_new_expression] = STATE(2388), + [sym_delete_expression] = STATE(2388), + [sym_lambda_expression] = STATE(2388), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5602), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5602), + [sym_char_literal] = ACTIONS(5602), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5604), + [sym_false] = ACTIONS(5604), + [sym_null] = ACTIONS(5604), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5604), + }, + [2015] = { + [sym__expression] = STATE(2389), + [sym_conditional_expression] = STATE(2389), + [sym_assignment_expression] = STATE(2389), + [sym_pointer_expression] = STATE(2389), + [sym_logical_expression] = STATE(2389), + [sym_bitwise_expression] = STATE(2389), + [sym_equality_expression] = STATE(2389), + [sym_relational_expression] = STATE(2389), + [sym_shift_expression] = STATE(2389), + [sym_math_expression] = STATE(2389), + [sym_cast_expression] = STATE(2389), + [sym_sizeof_expression] = STATE(2389), + [sym_subscript_expression] = STATE(2389), + [sym_call_expression] = STATE(2389), + [sym_field_expression] = STATE(2389), + [sym_compound_literal_expression] = STATE(2389), + [sym_parenthesized_expression] = STATE(2389), + [sym_concatenated_string] = STATE(2389), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2389), + [sym_new_expression] = STATE(2389), + [sym_delete_expression] = STATE(2389), + [sym_lambda_expression] = STATE(2389), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5606), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5606), + [sym_char_literal] = ACTIONS(5606), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5608), + [sym_false] = ACTIONS(5608), + [sym_null] = ACTIONS(5608), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5608), + }, + [2016] = { + [sym__expression] = STATE(2390), + [sym_conditional_expression] = STATE(2390), + [sym_assignment_expression] = STATE(2390), + [sym_pointer_expression] = STATE(2390), + [sym_logical_expression] = STATE(2390), + [sym_bitwise_expression] = STATE(2390), + [sym_equality_expression] = STATE(2390), + [sym_relational_expression] = STATE(2390), + [sym_shift_expression] = STATE(2390), + [sym_math_expression] = STATE(2390), + [sym_cast_expression] = STATE(2390), + [sym_sizeof_expression] = STATE(2390), + [sym_subscript_expression] = STATE(2390), + [sym_call_expression] = STATE(2390), + [sym_field_expression] = STATE(2390), + [sym_compound_literal_expression] = STATE(2390), + [sym_parenthesized_expression] = STATE(2390), + [sym_concatenated_string] = STATE(2390), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2390), + [sym_new_expression] = STATE(2390), + [sym_delete_expression] = STATE(2390), + [sym_lambda_expression] = STATE(2390), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5610), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5610), + [sym_char_literal] = ACTIONS(5610), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5612), + [sym_false] = ACTIONS(5612), + [sym_null] = ACTIONS(5612), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5612), + }, + [2017] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(5614), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2018] = { + [sym_compound_statement] = STATE(2392), + [sym_labeled_statement] = STATE(2392), + [sym_expression_statement] = STATE(2392), + [sym_if_statement] = STATE(2392), + [sym_switch_statement] = STATE(2392), + [sym_case_statement] = STATE(2392), + [sym_while_statement] = STATE(2392), + [sym_do_statement] = STATE(2392), + [sym_for_statement] = STATE(2392), + [sym_return_statement] = STATE(2392), + [sym_break_statement] = STATE(2392), + [sym_continue_statement] = STATE(2392), + [sym_goto_statement] = STATE(2392), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -80516,7 +80681,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2383), + [sym_for_range_loop] = STATE(2392), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -80555,115 +80720,115 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2014] = { - [sym__expression] = STATE(2384), - [sym_conditional_expression] = STATE(2384), - [sym_assignment_expression] = STATE(2384), - [sym_pointer_expression] = STATE(2384), - [sym_logical_expression] = STATE(2384), - [sym_bitwise_expression] = STATE(2384), - [sym_equality_expression] = STATE(2384), - [sym_relational_expression] = STATE(2384), - [sym_shift_expression] = STATE(2384), - [sym_math_expression] = STATE(2384), - [sym_cast_expression] = STATE(2384), - [sym_sizeof_expression] = STATE(2384), - [sym_subscript_expression] = STATE(2384), - [sym_call_expression] = STATE(2384), - [sym_field_expression] = STATE(2384), - [sym_compound_literal_expression] = STATE(2384), - [sym_parenthesized_expression] = STATE(2384), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(2384), + [2019] = { + [sym__expression] = STATE(2393), + [sym_conditional_expression] = STATE(2393), + [sym_assignment_expression] = STATE(2393), + [sym_pointer_expression] = STATE(2393), + [sym_logical_expression] = STATE(2393), + [sym_bitwise_expression] = STATE(2393), + [sym_equality_expression] = STATE(2393), + [sym_relational_expression] = STATE(2393), + [sym_shift_expression] = STATE(2393), + [sym_math_expression] = STATE(2393), + [sym_cast_expression] = STATE(2393), + [sym_sizeof_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_call_expression] = STATE(2393), + [sym_field_expression] = STATE(2393), + [sym_compound_literal_expression] = STATE(2393), + [sym_parenthesized_expression] = STATE(2393), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(2393), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2384), - [sym_new_expression] = STATE(2384), - [sym_delete_expression] = STATE(2384), - [sym_lambda_expression] = STATE(2384), + [sym_template_function] = STATE(2393), + [sym_new_expression] = STATE(2393), + [sym_delete_expression] = STATE(2393), + [sym_lambda_expression] = STATE(2393), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5596), - [anon_sym_LPAREN] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(1634), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(5596), - [sym_char_literal] = ACTIONS(5596), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5598), - [sym_false] = ACTIONS(5598), - [sym_null] = ACTIONS(5598), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(5616), + [sym_char_literal] = ACTIONS(5616), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(5618), + [sym_false] = ACTIONS(5618), + [sym_null] = ACTIONS(5618), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5598), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(5618), }, - [2015] = { - [anon_sym_RPAREN] = ACTIONS(5600), + [2020] = { + [anon_sym_RPAREN] = ACTIONS(5620), [sym_comment] = ACTIONS(49), }, - [2016] = { - [aux_sym_concatenated_string_repeat1] = STATE(2016), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_COLON] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(5602), + [2021] = { + [aux_sym_concatenated_string_repeat1] = STATE(2021), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_COLON] = ACTIONS(4230), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(5622), [sym_comment] = ACTIONS(49), }, - [2017] = { + [2022] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -80696,7 +80861,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5605), + [anon_sym_RBRACK] = ACTIONS(5625), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -80719,675 +80884,675 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [2018] = { + [2023] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_COLON] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_COLON] = ACTIONS(4258), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2019] = { - [sym__expression] = STATE(2387), - [sym_conditional_expression] = STATE(2387), - [sym_assignment_expression] = STATE(2387), - [sym_pointer_expression] = STATE(2387), - [sym_logical_expression] = STATE(2387), - [sym_bitwise_expression] = STATE(2387), - [sym_equality_expression] = STATE(2387), - [sym_relational_expression] = STATE(2387), - [sym_shift_expression] = STATE(2387), - [sym_math_expression] = STATE(2387), - [sym_cast_expression] = STATE(2387), - [sym_sizeof_expression] = STATE(2387), - [sym_subscript_expression] = STATE(2387), - [sym_call_expression] = STATE(2387), - [sym_field_expression] = STATE(2387), - [sym_compound_literal_expression] = STATE(2387), - [sym_parenthesized_expression] = STATE(2387), - [sym_concatenated_string] = STATE(2387), + [2024] = { + [sym__expression] = STATE(2396), + [sym_conditional_expression] = STATE(2396), + [sym_assignment_expression] = STATE(2396), + [sym_pointer_expression] = STATE(2396), + [sym_logical_expression] = STATE(2396), + [sym_bitwise_expression] = STATE(2396), + [sym_equality_expression] = STATE(2396), + [sym_relational_expression] = STATE(2396), + [sym_shift_expression] = STATE(2396), + [sym_math_expression] = STATE(2396), + [sym_cast_expression] = STATE(2396), + [sym_sizeof_expression] = STATE(2396), + [sym_subscript_expression] = STATE(2396), + [sym_call_expression] = STATE(2396), + [sym_field_expression] = STATE(2396), + [sym_compound_literal_expression] = STATE(2396), + [sym_parenthesized_expression] = STATE(2396), + [sym_concatenated_string] = STATE(2396), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2387), - [sym_new_expression] = STATE(2387), - [sym_delete_expression] = STATE(2387), - [sym_lambda_expression] = STATE(2387), + [sym_template_function] = STATE(2396), + [sym_new_expression] = STATE(2396), + [sym_delete_expression] = STATE(2396), + [sym_lambda_expression] = STATE(2396), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5607), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(5607), - [sym_char_literal] = ACTIONS(5607), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5609), - [sym_false] = ACTIONS(5609), - [sym_null] = ACTIONS(5609), + [sym_raw_string_literal] = ACTIONS(5627), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(5627), + [sym_char_literal] = ACTIONS(5627), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(5629), + [sym_false] = ACTIONS(5629), + [sym_null] = ACTIONS(5629), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5609), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(5629), }, - [2020] = { + [2025] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(4270), + [anon_sym_STAR] = ACTIONS(4276), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4268), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4270), - [anon_sym_PERCENT] = ACTIONS(4270), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(4276), + [anon_sym_PERCENT] = ACTIONS(4276), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2021] = { + [2026] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(4274), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(4280), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2022] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_RBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [2027] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_RBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [2023] = { + [2028] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5615), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5635), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2024] = { + [2029] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_COLON] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2025] = { + [2030] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_COLON] = ACTIONS(4282), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_COLON] = ACTIONS(4288), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2026] = { + [2031] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_COLON] = ACTIONS(4282), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_COLON] = ACTIONS(4288), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2027] = { + [2032] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_COLON] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2028] = { + [2033] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_COLON] = ACTIONS(4278), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_COLON] = ACTIONS(4284), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2029] = { + [2034] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_COLON] = ACTIONS(4286), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_COLON] = ACTIONS(4292), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2030] = { + [2035] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_COLON] = ACTIONS(4290), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_COLON] = ACTIONS(4296), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2031] = { + [2036] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_COLON] = ACTIONS(4294), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_COLON] = ACTIONS(4300), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2032] = { + [2037] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_COLON] = ACTIONS(4268), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_COLON] = ACTIONS(4274), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2033] = { + [2038] = { [sym_destructor_name] = STATE(282), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(5617), + [sym_identifier] = ACTIONS(5637), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(442), }, - [2034] = { + [2039] = { [anon_sym_LPAREN] = ACTIONS(444), [anon_sym_COMMA] = ACTIONS(704), [anon_sym_SEMI] = ACTIONS(704), [anon_sym_extern] = ACTIONS(449), [anon_sym_LBRACE] = ACTIONS(447), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(2720), [anon_sym_LBRACK] = ACTIONS(704), [anon_sym_EQ] = ACTIONS(706), [anon_sym_static] = ACTIONS(449), @@ -81411,7 +81576,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(704), [anon_sym_CARET_EQ] = ACTIONS(704), [anon_sym_PIPE_EQ] = ACTIONS(704), - [anon_sym_AMP] = ACTIONS(2718), + [anon_sym_AMP] = ACTIONS(2720), [anon_sym_PIPE_PIPE] = ACTIONS(704), [anon_sym_AMP_AMP] = ACTIONS(444), [anon_sym_PIPE] = ACTIONS(706), @@ -81438,13 +81603,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(447), [sym_operator_name] = ACTIONS(447), }, - [2035] = { + [2040] = { [anon_sym_LPAREN] = ACTIONS(509), [anon_sym_COMMA] = ACTIONS(518), [anon_sym_SEMI] = ACTIONS(518), [anon_sym_extern] = ACTIONS(514), [anon_sym_LBRACE] = ACTIONS(512), - [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2729), [anon_sym_LBRACK] = ACTIONS(518), [anon_sym_EQ] = ACTIONS(520), [anon_sym_static] = ACTIONS(514), @@ -81468,7 +81633,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(518), [anon_sym_CARET_EQ] = ACTIONS(518), [anon_sym_PIPE_EQ] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2729), [anon_sym_PIPE_PIPE] = ACTIONS(518), [anon_sym_AMP_AMP] = ACTIONS(509), [anon_sym_PIPE] = ACTIONS(520), @@ -81476,7 +81641,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(512), [anon_sym_EQ_EQ] = ACTIONS(518), [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2729), [anon_sym_GT] = ACTIONS(520), [anon_sym_LT_EQ] = ACTIONS(518), [anon_sym_GT_EQ] = ACTIONS(518), @@ -81495,27 +81660,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(516), [sym_operator_name] = ACTIONS(512), }, - [2036] = { + [2041] = { [sym_destructor_name] = STATE(428), [anon_sym_TILDE] = ACTIONS(1500), - [sym_identifier] = ACTIONS(5619), + [sym_identifier] = ACTIONS(5639), [sym_comment] = ACTIONS(49), [sym_operator_name] = ACTIONS(702), }, - [2037] = { - [sym_compound_statement] = STATE(2391), - [sym_labeled_statement] = STATE(2391), - [sym_expression_statement] = STATE(2391), - [sym_if_statement] = STATE(2391), - [sym_switch_statement] = STATE(2391), - [sym_case_statement] = STATE(2391), - [sym_while_statement] = STATE(2391), - [sym_do_statement] = STATE(2391), - [sym_for_statement] = STATE(2391), - [sym_return_statement] = STATE(2391), - [sym_break_statement] = STATE(2391), - [sym_continue_statement] = STATE(2391), - [sym_goto_statement] = STATE(2391), + [2042] = { + [sym_compound_statement] = STATE(2400), + [sym_labeled_statement] = STATE(2400), + [sym_expression_statement] = STATE(2400), + [sym_if_statement] = STATE(2400), + [sym_switch_statement] = STATE(2400), + [sym_case_statement] = STATE(2400), + [sym_while_statement] = STATE(2400), + [sym_do_statement] = STATE(2400), + [sym_for_statement] = STATE(2400), + [sym_return_statement] = STATE(2400), + [sym_break_statement] = STATE(2400), + [sym_continue_statement] = STATE(2400), + [sym_goto_statement] = STATE(2400), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -81537,7 +81702,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2391), + [sym_for_range_loop] = STATE(2400), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -81576,147 +81741,200 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2038] = { - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_COMMA] = ACTIONS(3176), - [anon_sym_RPAREN] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_RBRACK] = ACTIONS(3176), - [anon_sym_EQ] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_QMARK] = ACTIONS(3176), - [anon_sym_STAR_EQ] = ACTIONS(3176), - [anon_sym_SLASH_EQ] = ACTIONS(3176), - [anon_sym_PERCENT_EQ] = ACTIONS(3176), - [anon_sym_PLUS_EQ] = ACTIONS(3176), - [anon_sym_DASH_EQ] = ACTIONS(3176), - [anon_sym_LT_LT_EQ] = ACTIONS(3176), - [anon_sym_GT_GT_EQ] = ACTIONS(3176), - [anon_sym_AMP_EQ] = ACTIONS(3176), - [anon_sym_CARET_EQ] = ACTIONS(3176), - [anon_sym_PIPE_EQ] = ACTIONS(3176), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3176), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_CARET] = ACTIONS(3178), - [anon_sym_EQ_EQ] = ACTIONS(3176), - [anon_sym_BANG_EQ] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_GT] = ACTIONS(3178), - [anon_sym_LT_EQ] = ACTIONS(3176), - [anon_sym_GT_EQ] = ACTIONS(3176), - [anon_sym_LT_LT] = ACTIONS(3178), - [anon_sym_GT_GT] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_PERCENT] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DOT] = ACTIONS(3176), - [anon_sym_DASH_GT] = ACTIONS(3176), + [2043] = { + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_COMMA] = ACTIONS(3182), + [anon_sym_RPAREN] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_RBRACK] = ACTIONS(3182), + [anon_sym_EQ] = ACTIONS(3184), + [anon_sym_COLON] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_QMARK] = ACTIONS(3182), + [anon_sym_STAR_EQ] = ACTIONS(3182), + [anon_sym_SLASH_EQ] = ACTIONS(3182), + [anon_sym_PERCENT_EQ] = ACTIONS(3182), + [anon_sym_PLUS_EQ] = ACTIONS(3182), + [anon_sym_DASH_EQ] = ACTIONS(3182), + [anon_sym_LT_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_GT_EQ] = ACTIONS(3182), + [anon_sym_AMP_EQ] = ACTIONS(3182), + [anon_sym_CARET_EQ] = ACTIONS(3182), + [anon_sym_PIPE_EQ] = ACTIONS(3182), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_PIPE_PIPE] = ACTIONS(3182), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_PIPE] = ACTIONS(3184), + [anon_sym_CARET] = ACTIONS(3184), + [anon_sym_EQ_EQ] = ACTIONS(3182), + [anon_sym_BANG_EQ] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_GT] = ACTIONS(3184), + [anon_sym_LT_EQ] = ACTIONS(3182), + [anon_sym_GT_EQ] = ACTIONS(3182), + [anon_sym_LT_LT] = ACTIONS(3184), + [anon_sym_GT_GT] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_PERCENT] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DOT] = ACTIONS(3182), + [anon_sym_DASH_GT] = ACTIONS(3182), [sym_comment] = ACTIONS(49), }, - [2039] = { + [2044] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5621), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5641), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2040] = { + [2045] = { + [sym__expression] = STATE(2402), + [sym_conditional_expression] = STATE(2402), + [sym_assignment_expression] = STATE(2402), + [sym_pointer_expression] = STATE(2402), + [sym_logical_expression] = STATE(2402), + [sym_bitwise_expression] = STATE(2402), + [sym_equality_expression] = STATE(2402), + [sym_relational_expression] = STATE(2402), + [sym_shift_expression] = STATE(2402), + [sym_math_expression] = STATE(2402), + [sym_cast_expression] = STATE(2402), + [sym_sizeof_expression] = STATE(2402), + [sym_subscript_expression] = STATE(2402), + [sym_call_expression] = STATE(2402), + [sym_field_expression] = STATE(2402), + [sym_compound_literal_expression] = STATE(2402), + [sym_parenthesized_expression] = STATE(2402), + [sym_concatenated_string] = STATE(2402), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2402), + [sym_new_expression] = STATE(2402), + [sym_delete_expression] = STATE(2402), + [sym_lambda_expression] = STATE(2402), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5643), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5643), + [sym_char_literal] = ACTIONS(5643), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5645), + [sym_false] = ACTIONS(5645), + [sym_null] = ACTIONS(5645), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5645), + }, + [2046] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5623), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5647), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2041] = { - [sym_declaration] = STATE(2394), - [sym_type_definition] = STATE(2394), - [sym__declaration_specifiers] = STATE(2045), - [sym_compound_statement] = STATE(2394), + [2047] = { + [sym_declaration] = STATE(2404), + [sym_type_definition] = STATE(2404), + [sym__declaration_specifiers] = STATE(2051), + [sym_compound_statement] = STATE(2404), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -81724,58 +81942,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2394), - [sym_expression_statement] = STATE(2394), - [sym_if_statement] = STATE(2394), - [sym_switch_statement] = STATE(2394), - [sym_case_statement] = STATE(2394), - [sym_while_statement] = STATE(2394), - [sym_do_statement] = STATE(2394), - [sym_for_statement] = STATE(2394), - [sym_return_statement] = STATE(2394), - [sym_break_statement] = STATE(2394), - [sym_continue_statement] = STATE(2394), - [sym_goto_statement] = STATE(2394), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), + [sym_labeled_statement] = STATE(2404), + [sym_expression_statement] = STATE(2404), + [sym_if_statement] = STATE(2404), + [sym_switch_statement] = STATE(2404), + [sym_case_statement] = STATE(2404), + [sym_while_statement] = STATE(2404), + [sym_do_statement] = STATE(2404), + [sym_for_statement] = STATE(2404), + [sym_return_statement] = STATE(2404), + [sym_break_statement] = STATE(2404), + [sym_continue_statement] = STATE(2404), + [sym_goto_statement] = STATE(2404), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2394), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2404), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_typedef] = ACTIONS(4657), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -81795,17 +82013,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -81814,36 +82032,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(4645), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(4659), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2042] = { - [sym_type_qualifier] = STATE(2396), - [sym__type_specifier] = STATE(2395), - [sym_sized_type_specifier] = STATE(2395), - [sym_enum_specifier] = STATE(2395), - [sym_struct_specifier] = STATE(2395), - [sym_union_specifier] = STATE(2395), - [sym_macro_type_specifier] = STATE(2395), - [sym_class_specifier] = STATE(2395), - [sym_dependent_type] = STATE(2395), + [2048] = { + [sym_type_qualifier] = STATE(2406), + [sym__type_specifier] = STATE(2405), + [sym_sized_type_specifier] = STATE(2405), + [sym_enum_specifier] = STATE(2405), + [sym_struct_specifier] = STATE(2405), + [sym_union_specifier] = STATE(2405), + [sym_macro_type_specifier] = STATE(2405), + [sym_class_specifier] = STATE(2405), + [sym_dependent_type] = STATE(2405), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(2396), + [aux_sym_type_definition_repeat1] = STATE(2406), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -81855,20 +82073,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(5625), + [sym_primitive_type] = ACTIONS(5649), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(5625), + [sym_auto] = ACTIONS(5649), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2043] = { + [2049] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -81887,7 +82105,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(3070), + [anon_sym_COLON] = ACTIONS(3076), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -81923,24 +82141,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2044] = { - [anon_sym_else] = ACTIONS(4623), - [anon_sym_while] = ACTIONS(4623), + [2050] = { + [anon_sym_else] = ACTIONS(4635), + [anon_sym_while] = ACTIONS(4635), [sym_comment] = ACTIONS(49), }, - [2045] = { - [sym__declarator] = STATE(2397), - [sym_pointer_declarator] = STATE(2397), - [sym_function_declarator] = STATE(2397), - [sym_array_declarator] = STATE(2397), - [sym_init_declarator] = STATE(2398), - [sym_reference_declarator] = STATE(2397), + [2051] = { + [sym__declarator] = STATE(2407), + [sym_pointer_declarator] = STATE(2407), + [sym_function_declarator] = STATE(2407), + [sym_array_declarator] = STATE(2407), + [sym_init_declarator] = STATE(2408), + [sym_reference_declarator] = STATE(2407), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2397), - [sym_destructor_name] = STATE(2397), + [sym_template_function] = STATE(2407), + [sym_destructor_name] = STATE(2407), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -81952,84 +82170,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(5627), + [sym_operator_name] = ACTIONS(5651), }, - [2046] = { + [2052] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5629), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5653), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2047] = { - [anon_sym_LPAREN] = ACTIONS(5631), + [2053] = { + [anon_sym_LPAREN] = ACTIONS(5655), [sym_comment] = ACTIONS(49), }, - [2048] = { - [sym__expression] = STATE(2402), - [sym_conditional_expression] = STATE(2402), - [sym_assignment_expression] = STATE(2402), - [sym_pointer_expression] = STATE(2402), - [sym_logical_expression] = STATE(2402), - [sym_bitwise_expression] = STATE(2402), - [sym_equality_expression] = STATE(2402), - [sym_relational_expression] = STATE(2402), - [sym_shift_expression] = STATE(2402), - [sym_math_expression] = STATE(2402), - [sym_cast_expression] = STATE(2402), - [sym_sizeof_expression] = STATE(2402), - [sym_subscript_expression] = STATE(2402), - [sym_call_expression] = STATE(2402), - [sym_field_expression] = STATE(2402), - [sym_compound_literal_expression] = STATE(2402), - [sym_parenthesized_expression] = STATE(2402), - [sym_concatenated_string] = STATE(2402), + [2054] = { + [sym__expression] = STATE(2412), + [sym_conditional_expression] = STATE(2412), + [sym_assignment_expression] = STATE(2412), + [sym_pointer_expression] = STATE(2412), + [sym_logical_expression] = STATE(2412), + [sym_bitwise_expression] = STATE(2412), + [sym_equality_expression] = STATE(2412), + [sym_relational_expression] = STATE(2412), + [sym_shift_expression] = STATE(2412), + [sym_math_expression] = STATE(2412), + [sym_cast_expression] = STATE(2412), + [sym_sizeof_expression] = STATE(2412), + [sym_subscript_expression] = STATE(2412), + [sym_call_expression] = STATE(2412), + [sym_field_expression] = STATE(2412), + [sym_compound_literal_expression] = STATE(2412), + [sym_parenthesized_expression] = STATE(2412), + [sym_concatenated_string] = STATE(2412), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2402), - [sym_new_expression] = STATE(2402), - [sym_delete_expression] = STATE(2402), - [sym_lambda_expression] = STATE(2402), + [sym_template_function] = STATE(2412), + [sym_new_expression] = STATE(2412), + [sym_delete_expression] = STATE(2412), + [sym_lambda_expression] = STATE(2412), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5633), + [sym_raw_string_literal] = ACTIONS(5657), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(5635), + [anon_sym_SEMI] = ACTIONS(5659), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -82040,163 +82258,163 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5633), - [sym_char_literal] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5657), + [sym_char_literal] = ACTIONS(5657), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5637), - [sym_false] = ACTIONS(5637), - [sym_null] = ACTIONS(5637), + [sym_true] = ACTIONS(5661), + [sym_false] = ACTIONS(5661), + [sym_null] = ACTIONS(5661), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5637), + [sym_nullptr] = ACTIONS(5661), }, - [2049] = { + [2055] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5639), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5663), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2050] = { - [anon_sym_COLON] = ACTIONS(5641), + [2056] = { + [anon_sym_COLON] = ACTIONS(5665), [sym_comment] = ACTIONS(49), }, - [2051] = { - [anon_sym_else] = ACTIONS(4683), - [anon_sym_while] = ACTIONS(4683), + [2057] = { + [anon_sym_else] = ACTIONS(4697), + [anon_sym_while] = ACTIONS(4697), [sym_comment] = ACTIONS(49), }, - [2052] = { - [anon_sym_else] = ACTIONS(4687), - [anon_sym_while] = ACTIONS(4687), + [2058] = { + [anon_sym_else] = ACTIONS(4701), + [anon_sym_while] = ACTIONS(4701), [sym_comment] = ACTIONS(49), }, - [2053] = { - [anon_sym_else] = ACTIONS(4696), - [anon_sym_while] = ACTIONS(4696), + [2059] = { + [anon_sym_else] = ACTIONS(4710), + [anon_sym_while] = ACTIONS(4710), [sym_comment] = ACTIONS(49), }, - [2054] = { - [sym__expression] = STATE(2405), - [sym_conditional_expression] = STATE(2405), - [sym_assignment_expression] = STATE(2405), - [sym_pointer_expression] = STATE(2405), - [sym_logical_expression] = STATE(2405), - [sym_bitwise_expression] = STATE(2405), - [sym_equality_expression] = STATE(2405), - [sym_relational_expression] = STATE(2405), - [sym_shift_expression] = STATE(2405), - [sym_math_expression] = STATE(2405), - [sym_cast_expression] = STATE(2405), - [sym_sizeof_expression] = STATE(2405), - [sym_subscript_expression] = STATE(2405), - [sym_call_expression] = STATE(2405), - [sym_field_expression] = STATE(2405), - [sym_compound_literal_expression] = STATE(2405), - [sym_parenthesized_expression] = STATE(2405), - [sym_concatenated_string] = STATE(2405), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2405), - [sym_new_expression] = STATE(2405), - [sym_delete_expression] = STATE(2405), - [sym_lambda_expression] = STATE(2405), + [2060] = { + [sym__expression] = STATE(2415), + [sym_conditional_expression] = STATE(2415), + [sym_assignment_expression] = STATE(2415), + [sym_pointer_expression] = STATE(2415), + [sym_logical_expression] = STATE(2415), + [sym_bitwise_expression] = STATE(2415), + [sym_equality_expression] = STATE(2415), + [sym_relational_expression] = STATE(2415), + [sym_shift_expression] = STATE(2415), + [sym_math_expression] = STATE(2415), + [sym_cast_expression] = STATE(2415), + [sym_sizeof_expression] = STATE(2415), + [sym_subscript_expression] = STATE(2415), + [sym_call_expression] = STATE(2415), + [sym_field_expression] = STATE(2415), + [sym_compound_literal_expression] = STATE(2415), + [sym_parenthesized_expression] = STATE(2415), + [sym_concatenated_string] = STATE(2415), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2415), + [sym_new_expression] = STATE(2415), + [sym_delete_expression] = STATE(2415), + [sym_lambda_expression] = STATE(2415), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5643), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5643), - [sym_char_literal] = ACTIONS(5643), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5645), - [sym_false] = ACTIONS(5645), - [sym_null] = ACTIONS(5645), + [sym_raw_string_literal] = ACTIONS(5667), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5667), + [sym_char_literal] = ACTIONS(5667), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5669), + [sym_false] = ACTIONS(5669), + [sym_null] = ACTIONS(5669), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5645), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5669), }, - [2055] = { - [sym__expression] = STATE(2407), - [sym_conditional_expression] = STATE(2407), - [sym_assignment_expression] = STATE(2407), - [sym_pointer_expression] = STATE(2407), - [sym_logical_expression] = STATE(2407), - [sym_bitwise_expression] = STATE(2407), - [sym_equality_expression] = STATE(2407), - [sym_relational_expression] = STATE(2407), - [sym_shift_expression] = STATE(2407), - [sym_math_expression] = STATE(2407), - [sym_cast_expression] = STATE(2407), - [sym_sizeof_expression] = STATE(2407), - [sym_subscript_expression] = STATE(2407), - [sym_call_expression] = STATE(2407), - [sym_field_expression] = STATE(2407), - [sym_compound_literal_expression] = STATE(2407), - [sym_parenthesized_expression] = STATE(2407), - [sym_concatenated_string] = STATE(2407), + [2061] = { + [sym__expression] = STATE(2417), + [sym_conditional_expression] = STATE(2417), + [sym_assignment_expression] = STATE(2417), + [sym_pointer_expression] = STATE(2417), + [sym_logical_expression] = STATE(2417), + [sym_bitwise_expression] = STATE(2417), + [sym_equality_expression] = STATE(2417), + [sym_relational_expression] = STATE(2417), + [sym_shift_expression] = STATE(2417), + [sym_math_expression] = STATE(2417), + [sym_cast_expression] = STATE(2417), + [sym_sizeof_expression] = STATE(2417), + [sym_subscript_expression] = STATE(2417), + [sym_call_expression] = STATE(2417), + [sym_field_expression] = STATE(2417), + [sym_compound_literal_expression] = STATE(2417), + [sym_parenthesized_expression] = STATE(2417), + [sym_concatenated_string] = STATE(2417), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2407), - [sym_new_expression] = STATE(2407), - [sym_delete_expression] = STATE(2407), - [sym_lambda_expression] = STATE(2407), + [sym_template_function] = STATE(2417), + [sym_new_expression] = STATE(2417), + [sym_delete_expression] = STATE(2417), + [sym_lambda_expression] = STATE(2417), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5647), + [sym_raw_string_literal] = ACTIONS(5671), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(5649), + [anon_sym_RPAREN] = ACTIONS(5673), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -82207,125 +82425,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(5647), - [sym_char_literal] = ACTIONS(5647), + [sym_number_literal] = ACTIONS(5671), + [sym_char_literal] = ACTIONS(5671), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(5651), - [sym_false] = ACTIONS(5651), - [sym_null] = ACTIONS(5651), + [sym_true] = ACTIONS(5675), + [sym_false] = ACTIONS(5675), + [sym_null] = ACTIONS(5675), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(5651), + [sym_nullptr] = ACTIONS(5675), }, - [2056] = { + [2062] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5653), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5677), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2057] = { - [sym__declarator] = STATE(2409), - [sym_pointer_declarator] = STATE(2409), - [sym_function_declarator] = STATE(2409), - [sym_array_declarator] = STATE(2409), - [sym_reference_declarator] = STATE(2409), + [2063] = { + [sym__declarator] = STATE(2419), + [sym_pointer_declarator] = STATE(2419), + [sym_function_declarator] = STATE(2419), + [sym_array_declarator] = STATE(2419), + [sym_reference_declarator] = STATE(2419), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2409), - [sym_destructor_name] = STATE(2409), - [sym_scoped_identifier] = STATE(2061), + [sym_template_function] = STATE(2419), + [sym_destructor_name] = STATE(2419), + [sym_scoped_identifier] = STATE(2067), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(4671), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4675), + [anon_sym_STAR] = ACTIONS(4685), + [anon_sym_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4689), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(5655), + [sym_operator_name] = ACTIONS(5679), }, - [2058] = { - [sym__declarator] = STATE(2410), - [sym_pointer_declarator] = STATE(2410), - [sym_function_declarator] = STATE(2410), - [sym_array_declarator] = STATE(2410), - [sym_reference_declarator] = STATE(2410), + [2064] = { + [sym__declarator] = STATE(2420), + [sym_pointer_declarator] = STATE(2420), + [sym_function_declarator] = STATE(2420), + [sym_array_declarator] = STATE(2420), + [sym_reference_declarator] = STATE(2420), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2410), - [sym_destructor_name] = STATE(2410), - [sym_scoped_identifier] = STATE(2061), + [sym_template_function] = STATE(2420), + [sym_destructor_name] = STATE(2420), + [sym_scoped_identifier] = STATE(2067), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), [anon_sym_LPAREN] = ACTIONS(11), - [anon_sym_STAR] = ACTIONS(4671), - [anon_sym_AMP] = ACTIONS(4673), - [anon_sym_AMP_AMP] = ACTIONS(4675), + [anon_sym_STAR] = ACTIONS(4685), + [anon_sym_AMP] = ACTIONS(4687), + [anon_sym_AMP_AMP] = ACTIONS(4689), [anon_sym_TILDE] = ACTIONS(45), [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(5657), + [sym_operator_name] = ACTIONS(5681), }, - [2059] = { - [sym_parameter_list] = STATE(2412), + [2065] = { + [sym_parameter_list] = STATE(2422), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(2413), + [aux_sym_declaration_repeat1] = STATE(2423), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(5683), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), - [anon_sym_COLON] = ACTIONS(5661), + [anon_sym_COLON] = ACTIONS(5685), [sym_comment] = ACTIONS(49), }, - [2060] = { - [aux_sym_declaration_repeat1] = STATE(2413), + [2066] = { + [aux_sym_declaration_repeat1] = STATE(2423), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(5659), + [anon_sym_SEMI] = ACTIONS(5683), [sym_comment] = ACTIONS(49), }, - [2061] = { + [2067] = { [sym_template_argument_list] = STATE(140), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_COMMA] = ACTIONS(210), @@ -82334,40 +82552,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_EQ] = ACTIONS(210), [anon_sym_COLON] = ACTIONS(210), - [anon_sym_LT] = ACTIONS(2098), + [anon_sym_LT] = ACTIONS(2100), [sym_comment] = ACTIONS(49), }, - [2062] = { - [sym__expression] = STATE(2414), - [sym_conditional_expression] = STATE(2414), - [sym_assignment_expression] = STATE(2414), - [sym_pointer_expression] = STATE(2414), - [sym_logical_expression] = STATE(2414), - [sym_bitwise_expression] = STATE(2414), - [sym_equality_expression] = STATE(2414), - [sym_relational_expression] = STATE(2414), - [sym_shift_expression] = STATE(2414), - [sym_math_expression] = STATE(2414), - [sym_cast_expression] = STATE(2414), - [sym_sizeof_expression] = STATE(2414), - [sym_subscript_expression] = STATE(2414), - [sym_call_expression] = STATE(2414), - [sym_field_expression] = STATE(2414), - [sym_compound_literal_expression] = STATE(2414), - [sym_parenthesized_expression] = STATE(2414), - [sym_concatenated_string] = STATE(2414), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2414), - [sym_new_expression] = STATE(2414), - [sym_delete_expression] = STATE(2414), - [sym_lambda_expression] = STATE(2414), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5663), + [2068] = { + [sym__expression] = STATE(2424), + [sym_conditional_expression] = STATE(2424), + [sym_assignment_expression] = STATE(2424), + [sym_pointer_expression] = STATE(2424), + [sym_logical_expression] = STATE(2424), + [sym_bitwise_expression] = STATE(2424), + [sym_equality_expression] = STATE(2424), + [sym_relational_expression] = STATE(2424), + [sym_shift_expression] = STATE(2424), + [sym_math_expression] = STATE(2424), + [sym_cast_expression] = STATE(2424), + [sym_sizeof_expression] = STATE(2424), + [sym_subscript_expression] = STATE(2424), + [sym_call_expression] = STATE(2424), + [sym_field_expression] = STATE(2424), + [sym_compound_literal_expression] = STATE(2424), + [sym_parenthesized_expression] = STATE(2424), + [sym_concatenated_string] = STATE(2424), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2424), + [sym_new_expression] = STATE(2424), + [sym_delete_expression] = STATE(2424), + [sym_lambda_expression] = STATE(2424), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5687), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(5653), + [anon_sym_SEMI] = ACTIONS(5677), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -82378,191 +82596,191 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5663), - [sym_char_literal] = ACTIONS(5663), + [sym_number_literal] = ACTIONS(5687), + [sym_char_literal] = ACTIONS(5687), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5665), - [sym_false] = ACTIONS(5665), - [sym_null] = ACTIONS(5665), + [sym_true] = ACTIONS(5689), + [sym_false] = ACTIONS(5689), + [sym_null] = ACTIONS(5689), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5665), + [sym_nullptr] = ACTIONS(5689), }, - [2063] = { - [sym__expression] = STATE(2415), - [sym_conditional_expression] = STATE(2415), - [sym_assignment_expression] = STATE(2415), - [sym_pointer_expression] = STATE(2415), - [sym_logical_expression] = STATE(2415), - [sym_bitwise_expression] = STATE(2415), - [sym_equality_expression] = STATE(2415), - [sym_relational_expression] = STATE(2415), - [sym_shift_expression] = STATE(2415), - [sym_math_expression] = STATE(2415), - [sym_cast_expression] = STATE(2415), - [sym_sizeof_expression] = STATE(2415), - [sym_subscript_expression] = STATE(2415), - [sym_call_expression] = STATE(2415), - [sym_field_expression] = STATE(2415), - [sym_compound_literal_expression] = STATE(2415), - [sym_parenthesized_expression] = STATE(2415), - [sym_concatenated_string] = STATE(2415), + [2069] = { + [sym__expression] = STATE(2425), + [sym_conditional_expression] = STATE(2425), + [sym_assignment_expression] = STATE(2425), + [sym_pointer_expression] = STATE(2425), + [sym_logical_expression] = STATE(2425), + [sym_bitwise_expression] = STATE(2425), + [sym_equality_expression] = STATE(2425), + [sym_relational_expression] = STATE(2425), + [sym_shift_expression] = STATE(2425), + [sym_math_expression] = STATE(2425), + [sym_cast_expression] = STATE(2425), + [sym_sizeof_expression] = STATE(2425), + [sym_subscript_expression] = STATE(2425), + [sym_call_expression] = STATE(2425), + [sym_field_expression] = STATE(2425), + [sym_compound_literal_expression] = STATE(2425), + [sym_parenthesized_expression] = STATE(2425), + [sym_concatenated_string] = STATE(2425), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2415), - [sym_new_expression] = STATE(2415), - [sym_delete_expression] = STATE(2415), - [sym_lambda_expression] = STATE(2415), + [sym_template_function] = STATE(2425), + [sym_new_expression] = STATE(2425), + [sym_delete_expression] = STATE(2425), + [sym_lambda_expression] = STATE(2425), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5667), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(5667), - [sym_char_literal] = ACTIONS(5667), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(5669), - [sym_false] = ACTIONS(5669), - [sym_null] = ACTIONS(5669), + [sym_raw_string_literal] = ACTIONS(5691), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(5691), + [sym_char_literal] = ACTIONS(5691), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(5693), + [sym_false] = ACTIONS(5693), + [sym_null] = ACTIONS(5693), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(5669), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(5693), }, - [2064] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2070] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5671), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5671), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5673), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5695), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5695), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5697), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(670), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(672), [anon_sym_DASH] = ACTIONS(672), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2065] = { - [sym__expression] = STATE(2416), - [sym_conditional_expression] = STATE(2416), - [sym_assignment_expression] = STATE(2416), - [sym_pointer_expression] = STATE(2416), - [sym_logical_expression] = STATE(2416), - [sym_bitwise_expression] = STATE(2416), - [sym_equality_expression] = STATE(2416), - [sym_relational_expression] = STATE(2416), - [sym_shift_expression] = STATE(2416), - [sym_math_expression] = STATE(2416), - [sym_cast_expression] = STATE(2416), - [sym_sizeof_expression] = STATE(2416), - [sym_subscript_expression] = STATE(2416), - [sym_call_expression] = STATE(2416), - [sym_field_expression] = STATE(2416), - [sym_compound_literal_expression] = STATE(2416), - [sym_parenthesized_expression] = STATE(2416), - [sym_concatenated_string] = STATE(2416), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2416), - [sym_new_expression] = STATE(2416), - [sym_delete_expression] = STATE(2416), - [sym_lambda_expression] = STATE(2416), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5675), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [2071] = { + [sym__expression] = STATE(2426), + [sym_conditional_expression] = STATE(2426), + [sym_assignment_expression] = STATE(2426), + [sym_pointer_expression] = STATE(2426), + [sym_logical_expression] = STATE(2426), + [sym_bitwise_expression] = STATE(2426), + [sym_equality_expression] = STATE(2426), + [sym_relational_expression] = STATE(2426), + [sym_shift_expression] = STATE(2426), + [sym_math_expression] = STATE(2426), + [sym_cast_expression] = STATE(2426), + [sym_sizeof_expression] = STATE(2426), + [sym_subscript_expression] = STATE(2426), + [sym_call_expression] = STATE(2426), + [sym_field_expression] = STATE(2426), + [sym_compound_literal_expression] = STATE(2426), + [sym_parenthesized_expression] = STATE(2426), + [sym_concatenated_string] = STATE(2426), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2426), + [sym_new_expression] = STATE(2426), + [sym_delete_expression] = STATE(2426), + [sym_lambda_expression] = STATE(2426), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5699), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), [anon_sym_PLUS] = ACTIONS(672), @@ -82570,384 +82788,384 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5675), - [sym_char_literal] = ACTIONS(5675), + [sym_number_literal] = ACTIONS(5699), + [sym_char_literal] = ACTIONS(5699), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5677), - [sym_false] = ACTIONS(5677), - [sym_null] = ACTIONS(5677), + [sym_true] = ACTIONS(5701), + [sym_false] = ACTIONS(5701), + [sym_null] = ACTIONS(5701), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5677), + [sym_nullptr] = ACTIONS(5701), }, - [2066] = { + [2072] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2067] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [2073] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [2068] = { + [2074] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5679), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5703), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2069] = { - [anon_sym_SEMI] = ACTIONS(5679), + [2075] = { + [anon_sym_SEMI] = ACTIONS(5703), [sym_comment] = ACTIONS(49), }, - [2070] = { - [sym_raw_string_literal] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_RBRACE] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_goto] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2581), - [sym_number_literal] = ACTIONS(2579), - [sym_char_literal] = ACTIONS(2579), - [sym_string_literal] = ACTIONS(2579), - [sym_true] = ACTIONS(2581), - [sym_false] = ACTIONS(2581), - [sym_null] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_delete] = ACTIONS(2581), - [sym_nullptr] = ACTIONS(2581), + [2076] = { + [sym_raw_string_literal] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_RBRACE] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2581), + [sym_char_literal] = ACTIONS(2581), + [sym_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), }, - [2071] = { + [2077] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5681), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5705), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2072] = { - [anon_sym_SEMI] = ACTIONS(5681), + [2078] = { + [anon_sym_SEMI] = ACTIONS(5705), [sym_comment] = ACTIONS(49), }, - [2073] = { - [sym_raw_string_literal] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_RBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [sym_string_literal] = ACTIONS(2585), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), + [2079] = { + [sym_raw_string_literal] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_RBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_sizeof] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [sym_string_literal] = ACTIONS(2587), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [sym_null] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2589), + [sym_nullptr] = ACTIONS(2589), }, - [2074] = { - [sym__expression] = STATE(2419), - [sym_conditional_expression] = STATE(2419), - [sym_assignment_expression] = STATE(2419), - [sym_pointer_expression] = STATE(2419), - [sym_logical_expression] = STATE(2419), - [sym_bitwise_expression] = STATE(2419), - [sym_equality_expression] = STATE(2419), - [sym_relational_expression] = STATE(2419), - [sym_shift_expression] = STATE(2419), - [sym_math_expression] = STATE(2419), - [sym_cast_expression] = STATE(2419), - [sym_sizeof_expression] = STATE(2419), - [sym_subscript_expression] = STATE(2419), - [sym_call_expression] = STATE(2419), - [sym_field_expression] = STATE(2419), - [sym_compound_literal_expression] = STATE(2419), - [sym_parenthesized_expression] = STATE(2419), - [sym_concatenated_string] = STATE(2419), + [2080] = { + [sym__expression] = STATE(2429), + [sym_conditional_expression] = STATE(2429), + [sym_assignment_expression] = STATE(2429), + [sym_pointer_expression] = STATE(2429), + [sym_logical_expression] = STATE(2429), + [sym_bitwise_expression] = STATE(2429), + [sym_equality_expression] = STATE(2429), + [sym_relational_expression] = STATE(2429), + [sym_shift_expression] = STATE(2429), + [sym_math_expression] = STATE(2429), + [sym_cast_expression] = STATE(2429), + [sym_sizeof_expression] = STATE(2429), + [sym_subscript_expression] = STATE(2429), + [sym_call_expression] = STATE(2429), + [sym_field_expression] = STATE(2429), + [sym_compound_literal_expression] = STATE(2429), + [sym_parenthesized_expression] = STATE(2429), + [sym_concatenated_string] = STATE(2429), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2419), - [sym_new_expression] = STATE(2419), - [sym_delete_expression] = STATE(2419), - [sym_lambda_expression] = STATE(2419), + [sym_template_function] = STATE(2429), + [sym_new_expression] = STATE(2429), + [sym_delete_expression] = STATE(2429), + [sym_lambda_expression] = STATE(2429), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5683), + [sym_raw_string_literal] = ACTIONS(5707), [anon_sym_LPAREN] = ACTIONS(626), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), @@ -82959,76 +83177,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5683), - [sym_char_literal] = ACTIONS(5683), + [sym_number_literal] = ACTIONS(5707), + [sym_char_literal] = ACTIONS(5707), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5685), - [sym_false] = ACTIONS(5685), - [sym_null] = ACTIONS(5685), + [sym_true] = ACTIONS(5709), + [sym_false] = ACTIONS(5709), + [sym_null] = ACTIONS(5709), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5685), + [sym_nullptr] = ACTIONS(5709), }, - [2075] = { - [sym_parameter_list] = STATE(2077), + [2081] = { + [sym_parameter_list] = STATE(2083), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_RPAREN] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2076] = { - [sym_parameter_list] = STATE(2077), + [2082] = { + [sym_parameter_list] = STATE(2083), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_RPAREN] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2077] = { - [sym_type_qualifier] = STATE(2420), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2420), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2083] = { + [sym_type_qualifier] = STATE(2430), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2430), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2078] = { - [sym_type_qualifier] = STATE(2159), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2159), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2084] = { + [sym_type_qualifier] = STATE(2165), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2165), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -83038,662 +83256,662 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(845), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4972), - }, - [2079] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_template] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [sym_operator_name] = ACTIONS(3336), - }, - [2080] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_template] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [sym_operator_name] = ACTIONS(3346), - }, - [2081] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_explicit] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3487), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3487), - [sym_auto] = ACTIONS(3487), - [anon_sym_typename] = ACTIONS(3487), - [anon_sym_template] = ACTIONS(3487), - [anon_sym_namespace] = ACTIONS(3487), - [anon_sym_using] = ACTIONS(3487), - [anon_sym_COLON_COLON] = ACTIONS(3485), - [sym_operator_name] = ACTIONS(3485), - }, - [2082] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3491), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3491), - [sym_auto] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3489), - [sym_operator_name] = ACTIONS(3489), - }, - [2083] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3495), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3495), - [sym_auto] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [sym_operator_name] = ACTIONS(3493), - }, - [2084] = { - [anon_sym_LF] = ACTIONS(5687), - [sym_comment] = ACTIONS(83), + [sym_noexcept] = ACTIONS(4986), }, [2085] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_AMP_AMP] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_template] = ACTIONS(1823), - [anon_sym_namespace] = ACTIONS(1823), - [anon_sym_using] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [sym_operator_name] = ACTIONS(1821), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_template] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [sym_operator_name] = ACTIONS(3342), }, [2086] = { - [anon_sym_LF] = ACTIONS(5689), - [sym_comment] = ACTIONS(83), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [sym_operator_name] = ACTIONS(3352), }, [2087] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1909), - [anon_sym_LPAREN] = ACTIONS(1907), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1909), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1909), - [sym_preproc_directive] = ACTIONS(1909), - [anon_sym_typedef] = ACTIONS(1909), - [anon_sym_extern] = ACTIONS(1909), - [anon_sym_STAR] = ACTIONS(1907), - [anon_sym_static] = ACTIONS(1909), - [anon_sym_register] = ACTIONS(1909), - [anon_sym_inline] = ACTIONS(1909), - [anon_sym_const] = ACTIONS(1909), - [anon_sym_restrict] = ACTIONS(1909), - [anon_sym_volatile] = ACTIONS(1909), - [anon_sym__Atomic] = ACTIONS(1909), - [anon_sym_mutable] = ACTIONS(1909), - [anon_sym_explicit] = ACTIONS(1909), - [anon_sym_constexpr] = ACTIONS(1909), - [anon_sym_unsigned] = ACTIONS(1909), - [anon_sym_long] = ACTIONS(1909), - [anon_sym_short] = ACTIONS(1909), - [sym_primitive_type] = ACTIONS(1909), - [anon_sym_enum] = ACTIONS(1909), - [anon_sym_struct] = ACTIONS(1909), - [anon_sym_union] = ACTIONS(1909), - [anon_sym_AMP] = ACTIONS(1909), - [anon_sym_AMP_AMP] = ACTIONS(1907), - [anon_sym_TILDE] = ACTIONS(1907), - [sym_identifier] = ACTIONS(1909), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1909), - [sym_auto] = ACTIONS(1909), - [anon_sym_typename] = ACTIONS(1909), - [anon_sym_template] = ACTIONS(1909), - [anon_sym_namespace] = ACTIONS(1909), - [anon_sym_using] = ACTIONS(1909), - [anon_sym_COLON_COLON] = ACTIONS(1907), - [sym_operator_name] = ACTIONS(1907), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3491), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_typedef] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3493), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3493), + [sym_auto] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [sym_operator_name] = ACTIONS(3491), }, [2088] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5691), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_typedef] = ACTIONS(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3497), + [sym_auto] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [sym_operator_name] = ACTIONS(3495), }, [2089] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1958), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1960), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1960), - [sym_preproc_directive] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_register] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_const] = ACTIONS(1960), - [anon_sym_restrict] = ACTIONS(1960), - [anon_sym_volatile] = ACTIONS(1960), - [anon_sym__Atomic] = ACTIONS(1960), - [anon_sym_mutable] = ACTIONS(1960), - [anon_sym_explicit] = ACTIONS(1960), - [anon_sym_constexpr] = ACTIONS(1960), - [anon_sym_unsigned] = ACTIONS(1960), - [anon_sym_long] = ACTIONS(1960), - [anon_sym_short] = ACTIONS(1960), - [sym_primitive_type] = ACTIONS(1960), - [anon_sym_enum] = ACTIONS(1960), - [anon_sym_struct] = ACTIONS(1960), - [anon_sym_union] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1960), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1960), - [sym_auto] = ACTIONS(1960), - [anon_sym_typename] = ACTIONS(1960), - [anon_sym_template] = ACTIONS(1960), - [anon_sym_namespace] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1958), - [sym_operator_name] = ACTIONS(1958), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3501), + [sym_preproc_directive] = ACTIONS(3501), + [anon_sym_typedef] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_explicit] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_unsigned] = ACTIONS(3501), + [anon_sym_long] = ACTIONS(3501), + [anon_sym_short] = ACTIONS(3501), + [sym_primitive_type] = ACTIONS(3501), + [anon_sym_enum] = ACTIONS(3501), + [anon_sym_struct] = ACTIONS(3501), + [anon_sym_union] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3501), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3501), + [sym_auto] = ACTIONS(3501), + [anon_sym_typename] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_namespace] = ACTIONS(3501), + [anon_sym_using] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [sym_operator_name] = ACTIONS(3499), }, [2090] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5693), - [sym_comment] = ACTIONS(49), + [anon_sym_LF] = ACTIONS(5711), + [sym_comment] = ACTIONS(83), }, [2091] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1966), - [anon_sym_LPAREN] = ACTIONS(1964), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1966), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1966), - [sym_preproc_directive] = ACTIONS(1966), - [anon_sym_typedef] = ACTIONS(1966), - [anon_sym_extern] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1966), - [anon_sym_register] = ACTIONS(1966), - [anon_sym_inline] = ACTIONS(1966), - [anon_sym_const] = ACTIONS(1966), - [anon_sym_restrict] = ACTIONS(1966), - [anon_sym_volatile] = ACTIONS(1966), - [anon_sym__Atomic] = ACTIONS(1966), - [anon_sym_mutable] = ACTIONS(1966), - [anon_sym_explicit] = ACTIONS(1966), - [anon_sym_constexpr] = ACTIONS(1966), - [anon_sym_unsigned] = ACTIONS(1966), - [anon_sym_long] = ACTIONS(1966), - [anon_sym_short] = ACTIONS(1966), - [sym_primitive_type] = ACTIONS(1966), - [anon_sym_enum] = ACTIONS(1966), - [anon_sym_struct] = ACTIONS(1966), - [anon_sym_union] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1966), - [anon_sym_AMP_AMP] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1964), - [sym_identifier] = ACTIONS(1966), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1966), - [sym_auto] = ACTIONS(1966), - [anon_sym_typename] = ACTIONS(1966), - [anon_sym_template] = ACTIONS(1966), - [anon_sym_namespace] = ACTIONS(1966), - [anon_sym_using] = ACTIONS(1966), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [sym_operator_name] = ACTIONS(1964), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_template] = ACTIONS(1825), + [anon_sym_namespace] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [sym_operator_name] = ACTIONS(1823), }, [2092] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5695), - [sym_comment] = ACTIONS(49), + [anon_sym_LF] = ACTIONS(5713), + [sym_comment] = ACTIONS(83), }, [2093] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_template] = ACTIONS(1972), - [anon_sym_namespace] = ACTIONS(1972), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [sym_operator_name] = ACTIONS(1970), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1911), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1911), + [sym_preproc_directive] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_register] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1911), + [anon_sym_restrict] = ACTIONS(1911), + [anon_sym_volatile] = ACTIONS(1911), + [anon_sym__Atomic] = ACTIONS(1911), + [anon_sym_mutable] = ACTIONS(1911), + [anon_sym_explicit] = ACTIONS(1911), + [anon_sym_constexpr] = ACTIONS(1911), + [anon_sym_unsigned] = ACTIONS(1911), + [anon_sym_long] = ACTIONS(1911), + [anon_sym_short] = ACTIONS(1911), + [sym_primitive_type] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_struct] = ACTIONS(1911), + [anon_sym_union] = ACTIONS(1911), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_TILDE] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1911), + [sym_auto] = ACTIONS(1911), + [anon_sym_typename] = ACTIONS(1911), + [anon_sym_template] = ACTIONS(1911), + [anon_sym_namespace] = ACTIONS(1911), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_COLON_COLON] = ACTIONS(1909), + [sym_operator_name] = ACTIONS(1909), }, [2094] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_template] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [sym_operator_name] = ACTIONS(1986), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5715), + [sym_comment] = ACTIONS(49), }, [2095] = { - [sym_parameter_list] = STATE(513), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(5697), - [anon_sym_LBRACK] = ACTIONS(955), - [sym_comment] = ACTIONS(49), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1960), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1962), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1962), + [sym_preproc_directive] = ACTIONS(1962), + [anon_sym_typedef] = ACTIONS(1962), + [anon_sym_extern] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1962), + [anon_sym_register] = ACTIONS(1962), + [anon_sym_inline] = ACTIONS(1962), + [anon_sym_const] = ACTIONS(1962), + [anon_sym_restrict] = ACTIONS(1962), + [anon_sym_volatile] = ACTIONS(1962), + [anon_sym__Atomic] = ACTIONS(1962), + [anon_sym_mutable] = ACTIONS(1962), + [anon_sym_explicit] = ACTIONS(1962), + [anon_sym_constexpr] = ACTIONS(1962), + [anon_sym_unsigned] = ACTIONS(1962), + [anon_sym_long] = ACTIONS(1962), + [anon_sym_short] = ACTIONS(1962), + [sym_primitive_type] = ACTIONS(1962), + [anon_sym_enum] = ACTIONS(1962), + [anon_sym_struct] = ACTIONS(1962), + [anon_sym_union] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1960), + [sym_identifier] = ACTIONS(1962), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1962), + [sym_auto] = ACTIONS(1962), + [anon_sym_typename] = ACTIONS(1962), + [anon_sym_template] = ACTIONS(1962), + [anon_sym_namespace] = ACTIONS(1962), + [anon_sym_using] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1960), + [sym_operator_name] = ACTIONS(1960), }, [2096] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2340), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2340), - [sym_preproc_directive] = ACTIONS(2340), - [anon_sym_typedef] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_register] = ACTIONS(2340), - [anon_sym_inline] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_restrict] = ACTIONS(2340), - [anon_sym_volatile] = ACTIONS(2340), - [anon_sym__Atomic] = ACTIONS(2340), - [anon_sym_mutable] = ACTIONS(2340), - [anon_sym_explicit] = ACTIONS(2340), - [anon_sym_constexpr] = ACTIONS(2340), - [anon_sym_unsigned] = ACTIONS(2340), - [anon_sym_long] = ACTIONS(2340), - [anon_sym_short] = ACTIONS(2340), - [sym_primitive_type] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_TILDE] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2340), - [sym_auto] = ACTIONS(2340), - [anon_sym_typename] = ACTIONS(2340), - [anon_sym_template] = ACTIONS(2340), - [anon_sym_namespace] = ACTIONS(2340), - [anon_sym_using] = ACTIONS(2340), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [sym_operator_name] = ACTIONS(2338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5717), + [sym_comment] = ACTIONS(49), }, [2097] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2355), - [anon_sym_LPAREN] = ACTIONS(2353), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2355), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2355), - [sym_preproc_directive] = ACTIONS(2355), - [anon_sym_typedef] = ACTIONS(2355), - [anon_sym_extern] = ACTIONS(2355), - [anon_sym_STAR] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2355), - [anon_sym_register] = ACTIONS(2355), - [anon_sym_inline] = ACTIONS(2355), - [anon_sym_const] = ACTIONS(2355), - [anon_sym_restrict] = ACTIONS(2355), - [anon_sym_volatile] = ACTIONS(2355), - [anon_sym__Atomic] = ACTIONS(2355), - [anon_sym_mutable] = ACTIONS(2355), - [anon_sym_explicit] = ACTIONS(2355), - [anon_sym_constexpr] = ACTIONS(2355), - [anon_sym_unsigned] = ACTIONS(2355), - [anon_sym_long] = ACTIONS(2355), - [anon_sym_short] = ACTIONS(2355), - [sym_primitive_type] = ACTIONS(2355), - [anon_sym_enum] = ACTIONS(2355), - [anon_sym_struct] = ACTIONS(2355), - [anon_sym_union] = ACTIONS(2355), - [anon_sym_AMP] = ACTIONS(2355), - [anon_sym_AMP_AMP] = ACTIONS(2353), - [anon_sym_TILDE] = ACTIONS(2353), - [sym_identifier] = ACTIONS(2355), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2355), - [sym_auto] = ACTIONS(2355), - [anon_sym_typename] = ACTIONS(2355), - [anon_sym_template] = ACTIONS(2355), - [anon_sym_namespace] = ACTIONS(2355), - [anon_sym_using] = ACTIONS(2355), - [anon_sym_COLON_COLON] = ACTIONS(2353), - [sym_operator_name] = ACTIONS(2353), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1966), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1968), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1968), + [sym_preproc_directive] = ACTIONS(1968), + [anon_sym_typedef] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_inline] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_restrict] = ACTIONS(1968), + [anon_sym_volatile] = ACTIONS(1968), + [anon_sym__Atomic] = ACTIONS(1968), + [anon_sym_mutable] = ACTIONS(1968), + [anon_sym_explicit] = ACTIONS(1968), + [anon_sym_constexpr] = ACTIONS(1968), + [anon_sym_unsigned] = ACTIONS(1968), + [anon_sym_long] = ACTIONS(1968), + [anon_sym_short] = ACTIONS(1968), + [sym_primitive_type] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_AMP] = ACTIONS(1968), + [anon_sym_AMP_AMP] = ACTIONS(1966), + [anon_sym_TILDE] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1968), + [sym_auto] = ACTIONS(1968), + [anon_sym_typename] = ACTIONS(1968), + [anon_sym_template] = ACTIONS(1968), + [anon_sym_namespace] = ACTIONS(1968), + [anon_sym_using] = ACTIONS(1968), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [sym_operator_name] = ACTIONS(1966), }, [2098] = { - [anon_sym_SEMI] = ACTIONS(5699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5719), [sym_comment] = ACTIONS(49), }, [2099] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2371), - [anon_sym_LPAREN] = ACTIONS(2369), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2371), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2371), - [sym_preproc_directive] = ACTIONS(2371), - [anon_sym_typedef] = ACTIONS(2371), - [anon_sym_extern] = ACTIONS(2371), - [anon_sym_STAR] = ACTIONS(2369), - [anon_sym_static] = ACTIONS(2371), - [anon_sym_register] = ACTIONS(2371), - [anon_sym_inline] = ACTIONS(2371), - [anon_sym_const] = ACTIONS(2371), - [anon_sym_restrict] = ACTIONS(2371), - [anon_sym_volatile] = ACTIONS(2371), - [anon_sym__Atomic] = ACTIONS(2371), - [anon_sym_mutable] = ACTIONS(2371), - [anon_sym_explicit] = ACTIONS(2371), - [anon_sym_constexpr] = ACTIONS(2371), - [anon_sym_unsigned] = ACTIONS(2371), - [anon_sym_long] = ACTIONS(2371), - [anon_sym_short] = ACTIONS(2371), - [sym_primitive_type] = ACTIONS(2371), - [anon_sym_enum] = ACTIONS(2371), - [anon_sym_struct] = ACTIONS(2371), - [anon_sym_union] = ACTIONS(2371), - [anon_sym_AMP] = ACTIONS(2371), - [anon_sym_AMP_AMP] = ACTIONS(2369), - [anon_sym_TILDE] = ACTIONS(2369), - [sym_identifier] = ACTIONS(2371), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2371), - [sym_auto] = ACTIONS(2371), - [anon_sym_typename] = ACTIONS(2371), - [anon_sym_template] = ACTIONS(2371), - [anon_sym_namespace] = ACTIONS(2371), - [anon_sym_using] = ACTIONS(2371), - [anon_sym_COLON_COLON] = ACTIONS(2369), - [sym_operator_name] = ACTIONS(2369), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_AMP_AMP] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_template] = ACTIONS(1974), + [anon_sym_namespace] = ACTIONS(1974), + [anon_sym_using] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [sym_operator_name] = ACTIONS(1972), }, [2100] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_AMP_AMP] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_template] = ACTIONS(1990), + [anon_sym_namespace] = ACTIONS(1990), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [sym_operator_name] = ACTIONS(1988), + }, + [2101] = { + [sym_parameter_list] = STATE(513), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(5721), + [anon_sym_LBRACK] = ACTIONS(955), + [sym_comment] = ACTIONS(49), + }, + [2102] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2342), + [sym_preproc_directive] = ACTIONS(2342), + [anon_sym_typedef] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_STAR] = ACTIONS(2340), + [anon_sym_static] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_inline] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [anon_sym_restrict] = ACTIONS(2342), + [anon_sym_volatile] = ACTIONS(2342), + [anon_sym__Atomic] = ACTIONS(2342), + [anon_sym_mutable] = ACTIONS(2342), + [anon_sym_explicit] = ACTIONS(2342), + [anon_sym_constexpr] = ACTIONS(2342), + [anon_sym_unsigned] = ACTIONS(2342), + [anon_sym_long] = ACTIONS(2342), + [anon_sym_short] = ACTIONS(2342), + [sym_primitive_type] = ACTIONS(2342), + [anon_sym_enum] = ACTIONS(2342), + [anon_sym_struct] = ACTIONS(2342), + [anon_sym_union] = ACTIONS(2342), + [anon_sym_AMP] = ACTIONS(2342), + [anon_sym_AMP_AMP] = ACTIONS(2340), + [anon_sym_TILDE] = ACTIONS(2340), + [sym_identifier] = ACTIONS(2342), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2342), + [sym_auto] = ACTIONS(2342), + [anon_sym_typename] = ACTIONS(2342), + [anon_sym_template] = ACTIONS(2342), + [anon_sym_namespace] = ACTIONS(2342), + [anon_sym_using] = ACTIONS(2342), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [sym_operator_name] = ACTIONS(2340), + }, + [2103] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2355), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2357), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2357), + [sym_preproc_directive] = ACTIONS(2357), + [anon_sym_typedef] = ACTIONS(2357), + [anon_sym_extern] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2357), + [anon_sym_register] = ACTIONS(2357), + [anon_sym_inline] = ACTIONS(2357), + [anon_sym_const] = ACTIONS(2357), + [anon_sym_restrict] = ACTIONS(2357), + [anon_sym_volatile] = ACTIONS(2357), + [anon_sym__Atomic] = ACTIONS(2357), + [anon_sym_mutable] = ACTIONS(2357), + [anon_sym_explicit] = ACTIONS(2357), + [anon_sym_constexpr] = ACTIONS(2357), + [anon_sym_unsigned] = ACTIONS(2357), + [anon_sym_long] = ACTIONS(2357), + [anon_sym_short] = ACTIONS(2357), + [sym_primitive_type] = ACTIONS(2357), + [anon_sym_enum] = ACTIONS(2357), + [anon_sym_struct] = ACTIONS(2357), + [anon_sym_union] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_AMP_AMP] = ACTIONS(2355), + [anon_sym_TILDE] = ACTIONS(2355), + [sym_identifier] = ACTIONS(2357), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2357), + [sym_auto] = ACTIONS(2357), + [anon_sym_typename] = ACTIONS(2357), + [anon_sym_template] = ACTIONS(2357), + [anon_sym_namespace] = ACTIONS(2357), + [anon_sym_using] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2355), + [sym_operator_name] = ACTIONS(2355), + }, + [2104] = { + [anon_sym_SEMI] = ACTIONS(5723), + [sym_comment] = ACTIONS(49), + }, + [2105] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2371), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2373), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2373), + [sym_preproc_directive] = ACTIONS(2373), + [anon_sym_typedef] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_inline] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [anon_sym_restrict] = ACTIONS(2373), + [anon_sym_volatile] = ACTIONS(2373), + [anon_sym__Atomic] = ACTIONS(2373), + [anon_sym_mutable] = ACTIONS(2373), + [anon_sym_explicit] = ACTIONS(2373), + [anon_sym_constexpr] = ACTIONS(2373), + [anon_sym_unsigned] = ACTIONS(2373), + [anon_sym_long] = ACTIONS(2373), + [anon_sym_short] = ACTIONS(2373), + [sym_primitive_type] = ACTIONS(2373), + [anon_sym_enum] = ACTIONS(2373), + [anon_sym_struct] = ACTIONS(2373), + [anon_sym_union] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_AMP_AMP] = ACTIONS(2371), + [anon_sym_TILDE] = ACTIONS(2371), + [sym_identifier] = ACTIONS(2373), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2373), + [sym_auto] = ACTIONS(2373), + [anon_sym_typename] = ACTIONS(2373), + [anon_sym_template] = ACTIONS(2373), + [anon_sym_namespace] = ACTIONS(2373), + [anon_sym_using] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2371), + [sym_operator_name] = ACTIONS(2371), + }, + [2106] = { [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2400), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1624), [sym_preproc_directive] = ACTIONS(1624), - [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2400), [anon_sym_typedef] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_STAR] = ACTIONS(1622), @@ -83728,557 +83946,557 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [2101] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_namespace] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [sym_operator_name] = ACTIONS(2476), + [2107] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_template] = ACTIONS(2480), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [sym_operator_name] = ACTIONS(2478), }, - [2102] = { + [2108] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5701), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5725), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2103] = { - [anon_sym_SEMI] = ACTIONS(5701), + [2109] = { + [anon_sym_SEMI] = ACTIONS(5725), [sym_comment] = ACTIONS(49), }, - [2104] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2581), - [anon_sym_AMP_AMP] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_template] = ACTIONS(2581), - [anon_sym_namespace] = ACTIONS(2581), - [anon_sym_using] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [sym_operator_name] = ACTIONS(2579), + [2110] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_template] = ACTIONS(2583), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_using] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [sym_operator_name] = ACTIONS(2581), }, - [2105] = { + [2111] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5703), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5727), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2106] = { - [anon_sym_SEMI] = ACTIONS(5703), + [2112] = { + [anon_sym_SEMI] = ACTIONS(5727), [sym_comment] = ACTIONS(49), }, - [2107] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2587), - [anon_sym_AMP_AMP] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_template] = ACTIONS(2587), - [anon_sym_namespace] = ACTIONS(2587), - [anon_sym_using] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [sym_operator_name] = ACTIONS(2585), + [2113] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_template] = ACTIONS(2589), + [anon_sym_namespace] = ACTIONS(2589), + [anon_sym_using] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [sym_operator_name] = ACTIONS(2587), }, - [2108] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_template] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [sym_operator_name] = ACTIONS(3176), + [2114] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3184), + [anon_sym_AMP_AMP] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_template] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [sym_operator_name] = ACTIONS(3182), }, - [2109] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3332), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3334), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3334), - [sym_preproc_directive] = ACTIONS(3334), - [anon_sym_typedef] = ACTIONS(3334), - [anon_sym_extern] = ACTIONS(3334), - [anon_sym_STAR] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_register] = ACTIONS(3334), - [anon_sym_inline] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_restrict] = ACTIONS(3334), - [anon_sym_volatile] = ACTIONS(3334), - [anon_sym__Atomic] = ACTIONS(3334), - [anon_sym_mutable] = ACTIONS(3334), - [anon_sym_explicit] = ACTIONS(3334), - [anon_sym_constexpr] = ACTIONS(3334), - [anon_sym_unsigned] = ACTIONS(3334), - [anon_sym_long] = ACTIONS(3334), - [anon_sym_short] = ACTIONS(3334), - [sym_primitive_type] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [anon_sym_struct] = ACTIONS(3334), - [anon_sym_union] = ACTIONS(3334), - [anon_sym_AMP] = ACTIONS(3334), - [anon_sym_AMP_AMP] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [sym_identifier] = ACTIONS(3334), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3334), - [sym_auto] = ACTIONS(3334), - [anon_sym_typename] = ACTIONS(3334), - [anon_sym_template] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_COLON_COLON] = ACTIONS(3332), - [sym_operator_name] = ACTIONS(3332), + [2115] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3338), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3340), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3340), + [sym_preproc_directive] = ACTIONS(3340), + [anon_sym_typedef] = ACTIONS(3340), + [anon_sym_extern] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_register] = ACTIONS(3340), + [anon_sym_inline] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_restrict] = ACTIONS(3340), + [anon_sym_volatile] = ACTIONS(3340), + [anon_sym__Atomic] = ACTIONS(3340), + [anon_sym_mutable] = ACTIONS(3340), + [anon_sym_explicit] = ACTIONS(3340), + [anon_sym_constexpr] = ACTIONS(3340), + [anon_sym_unsigned] = ACTIONS(3340), + [anon_sym_long] = ACTIONS(3340), + [anon_sym_short] = ACTIONS(3340), + [sym_primitive_type] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3340), + [sym_auto] = ACTIONS(3340), + [anon_sym_typename] = ACTIONS(3340), + [anon_sym_template] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_COLON_COLON] = ACTIONS(3338), + [sym_operator_name] = ACTIONS(3338), }, - [2110] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [sym_operator_name] = ACTIONS(3513), + [2116] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_template] = ACTIONS(3521), + [anon_sym_namespace] = ACTIONS(3521), + [anon_sym_using] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [sym_operator_name] = ACTIONS(3519), }, - [2111] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3858), - [sym_preproc_directive] = ACTIONS(3858), - [anon_sym_typedef] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3856), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_explicit] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_unsigned] = ACTIONS(3858), - [anon_sym_long] = ACTIONS(3858), - [anon_sym_short] = ACTIONS(3858), - [sym_primitive_type] = ACTIONS(3858), - [anon_sym_enum] = ACTIONS(3858), - [anon_sym_struct] = ACTIONS(3858), - [anon_sym_union] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_TILDE] = ACTIONS(3856), - [sym_identifier] = ACTIONS(3858), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3858), - [sym_auto] = ACTIONS(3858), - [anon_sym_typename] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_namespace] = ACTIONS(3858), - [anon_sym_using] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3856), - [sym_operator_name] = ACTIONS(3856), + [2117] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3862), + [anon_sym_TILDE] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3864), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3864), + [sym_auto] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3862), + [sym_operator_name] = ACTIONS(3862), }, - [2112] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_template] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_using] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [sym_operator_name] = ACTIONS(4058), + [2118] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [sym_operator_name] = ACTIONS(4064), }, - [2113] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [sym_operator_name] = ACTIONS(4106), + [2119] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [sym_operator_name] = ACTIONS(4112), }, - [2114] = { - [anon_sym_LPAREN] = ACTIONS(4822), - [anon_sym_STAR] = ACTIONS(4822), - [sym_identifier] = ACTIONS(4822), + [2120] = { + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [sym_identifier] = ACTIONS(4836), [sym_comment] = ACTIONS(49), }, - [2115] = { - [anon_sym_LPAREN] = ACTIONS(5705), - [anon_sym_RPAREN] = ACTIONS(5705), - [anon_sym_SEMI] = ACTIONS(5705), - [anon_sym_LBRACK] = ACTIONS(5705), + [2121] = { + [anon_sym_LPAREN] = ACTIONS(5729), + [anon_sym_RPAREN] = ACTIONS(5729), + [anon_sym_SEMI] = ACTIONS(5729), + [anon_sym_LBRACK] = ACTIONS(5729), [sym_comment] = ACTIONS(49), }, - [2116] = { - [sym_parameter_list] = STATE(2118), + [2122] = { + [sym_parameter_list] = STATE(2124), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2117] = { - [sym_parameter_list] = STATE(2118), + [2123] = { + [sym_parameter_list] = STATE(2124), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2118] = { - [sym_type_qualifier] = STATE(2430), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2430), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2124] = { + [sym_type_qualifier] = STATE(2440), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2440), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2119] = { - [sym_type_qualifier] = STATE(2243), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2243), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2125] = { + [sym_type_qualifier] = STATE(2249), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2249), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -84288,12 +84506,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(979), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5242), + [sym_noexcept] = ACTIONS(5256), }, - [2120] = { + [2126] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_type_definition] = STATE(2120), + [sym_type_definition] = STATE(2126), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -84306,85 +84524,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(2120), - [sym_field_declaration] = STATE(2120), + [sym__field_declaration_list_item] = STATE(2126), + [sym_field_declaration] = STATE(2126), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(2120), + [sym_template_declaration] = STATE(2126), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(2120), - [sym_access_specifier] = STATE(2120), + [sym_friend_declaration] = STATE(2126), + [sym_access_specifier] = STATE(2126), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(2120), - [sym_alias_declaration] = STATE(2120), + [sym_using_declaration] = STATE(2126), + [sym_alias_declaration] = STATE(2126), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2120), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(2126), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), - [anon_sym_LPAREN] = ACTIONS(2116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2119), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2134), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2122), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2125), - [anon_sym_typedef] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2131), - [anon_sym_register] = ACTIONS(2131), - [anon_sym_inline] = ACTIONS(2131), - [anon_sym_const] = ACTIONS(2139), - [anon_sym_restrict] = ACTIONS(2139), - [anon_sym_volatile] = ACTIONS(2139), - [anon_sym__Atomic] = ACTIONS(2139), - [anon_sym_mutable] = ACTIONS(2139), - [anon_sym_explicit] = ACTIONS(2139), - [anon_sym_constexpr] = ACTIONS(2139), - [anon_sym_unsigned] = ACTIONS(2142), - [anon_sym_long] = ACTIONS(2142), - [anon_sym_short] = ACTIONS(2142), - [sym_primitive_type] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(2151), - [anon_sym_union] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2157), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2166), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2169), - [anon_sym_public] = ACTIONS(2172), - [sym_auto] = ACTIONS(2145), - [anon_sym_typename] = ACTIONS(2175), - [anon_sym_template] = ACTIONS(2178), - [anon_sym_friend] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_protected] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [sym_operator_name] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2118), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2121), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2136), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2124), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2127), + [anon_sym_typedef] = ACTIONS(2130), + [anon_sym_extern] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2138), + [anon_sym_static] = ACTIONS(2133), + [anon_sym_register] = ACTIONS(2133), + [anon_sym_inline] = ACTIONS(2133), + [anon_sym_const] = ACTIONS(2141), + [anon_sym_restrict] = ACTIONS(2141), + [anon_sym_volatile] = ACTIONS(2141), + [anon_sym__Atomic] = ACTIONS(2141), + [anon_sym_mutable] = ACTIONS(2141), + [anon_sym_explicit] = ACTIONS(2141), + [anon_sym_constexpr] = ACTIONS(2141), + [anon_sym_unsigned] = ACTIONS(2144), + [anon_sym_long] = ACTIONS(2144), + [anon_sym_short] = ACTIONS(2144), + [sym_primitive_type] = ACTIONS(2147), + [anon_sym_enum] = ACTIONS(2150), + [anon_sym_struct] = ACTIONS(2153), + [anon_sym_union] = ACTIONS(2156), + [anon_sym_AMP] = ACTIONS(2159), + [anon_sym_AMP_AMP] = ACTIONS(2162), + [anon_sym_TILDE] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2168), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2171), + [anon_sym_public] = ACTIONS(2174), + [sym_auto] = ACTIONS(2147), + [anon_sym_typename] = ACTIONS(2177), + [anon_sym_template] = ACTIONS(2180), + [anon_sym_friend] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2174), + [anon_sym_protected] = ACTIONS(2174), + [anon_sym_using] = ACTIONS(2186), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [sym_operator_name] = ACTIONS(2192), }, - [2121] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5707), + [2127] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5731), [sym_comment] = ACTIONS(49), }, - [2122] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5709), + [2128] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5733), [sym_comment] = ACTIONS(49), }, - [2123] = { + [2129] = { [sym_preproc_if_in_field_declaration_list] = STATE(246), [sym_preproc_ifdef_in_field_declaration_list] = STATE(247), - [sym_preproc_else_in_field_declaration_list] = STATE(2431), - [sym_preproc_elif_in_field_declaration_list] = STATE(2432), - [sym_type_definition] = STATE(1634), + [sym_preproc_else_in_field_declaration_list] = STATE(2441), + [sym_preproc_elif_in_field_declaration_list] = STATE(2442), + [sym_type_definition] = STATE(1637), [sym__declaration_specifiers] = STATE(248), [sym__declarator] = STATE(249), [sym_pointer_declarator] = STATE(249), @@ -84397,36 +84615,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(251), [sym_struct_specifier] = STATE(251), [sym_union_specifier] = STATE(251), - [sym__field_declaration_list_item] = STATE(1634), - [sym_field_declaration] = STATE(1634), + [sym__field_declaration_list_item] = STATE(1637), + [sym_field_declaration] = STATE(1637), [sym_macro_type_specifier] = STATE(251), [sym_class_specifier] = STATE(251), [sym_dependent_type] = STATE(251), - [sym_template_declaration] = STATE(1634), + [sym_template_declaration] = STATE(1637), [sym_inline_method_definition] = STATE(252), [sym_constructor_or_destructor_definition] = STATE(252), [sym_constructor_or_destructor_declaration] = STATE(253), - [sym_friend_declaration] = STATE(1634), - [sym_access_specifier] = STATE(1634), + [sym_friend_declaration] = STATE(1637), + [sym_access_specifier] = STATE(1637), [sym_reference_declarator] = STATE(249), [sym_template_type] = STATE(254), [sym_template_function] = STATE(249), - [sym_using_declaration] = STATE(1634), - [sym_alias_declaration] = STATE(1634), + [sym_using_declaration] = STATE(1637), + [sym_alias_declaration] = STATE(1637), [sym_destructor_name] = STATE(249), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(255), - [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1634), + [aux_sym_preproc_if_in_field_declaration_list_repeat1] = STATE(1637), [aux_sym__declaration_specifiers_repeat1] = STATE(257), [aux_sym_sized_type_specifier_repeat1] = STATE(258), [anon_sym_LPAREN] = ACTIONS(11), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(358), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5711), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5735), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(360), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(362), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2022), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2024), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2026), [anon_sym_typedef] = ACTIONS(364), [anon_sym_extern] = ACTIONS(27), [anon_sym_STAR] = ACTIONS(25), @@ -84464,338 +84682,338 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(390), [sym_operator_name] = ACTIONS(392), }, - [2124] = { - [anon_sym_LPAREN] = ACTIONS(5713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5715), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5713), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5713), - [anon_sym_typedef] = ACTIONS(5715), - [anon_sym_extern] = ACTIONS(5715), - [anon_sym_RBRACE] = ACTIONS(5713), - [anon_sym_STAR] = ACTIONS(5713), - [anon_sym_static] = ACTIONS(5715), - [anon_sym_register] = ACTIONS(5715), - [anon_sym_inline] = ACTIONS(5715), - [anon_sym_const] = ACTIONS(5715), - [anon_sym_restrict] = ACTIONS(5715), - [anon_sym_volatile] = ACTIONS(5715), - [anon_sym__Atomic] = ACTIONS(5715), - [anon_sym_mutable] = ACTIONS(5715), - [anon_sym_explicit] = ACTIONS(5715), - [anon_sym_constexpr] = ACTIONS(5715), - [anon_sym_unsigned] = ACTIONS(5715), - [anon_sym_long] = ACTIONS(5715), - [anon_sym_short] = ACTIONS(5715), - [sym_primitive_type] = ACTIONS(5715), - [anon_sym_enum] = ACTIONS(5715), - [anon_sym_struct] = ACTIONS(5715), - [anon_sym_union] = ACTIONS(5715), - [anon_sym_AMP] = ACTIONS(5715), - [anon_sym_AMP_AMP] = ACTIONS(5713), - [anon_sym_TILDE] = ACTIONS(5713), - [sym_identifier] = ACTIONS(5715), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5715), - [anon_sym_public] = ACTIONS(5715), - [sym_auto] = ACTIONS(5715), - [anon_sym_typename] = ACTIONS(5715), - [anon_sym_template] = ACTIONS(5715), - [anon_sym_friend] = ACTIONS(5715), - [anon_sym_private] = ACTIONS(5715), - [anon_sym_protected] = ACTIONS(5715), - [anon_sym_using] = ACTIONS(5715), - [anon_sym_COLON_COLON] = ACTIONS(5713), - [sym_operator_name] = ACTIONS(5713), + [2130] = { + [anon_sym_LPAREN] = ACTIONS(5737), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5739), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5737), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5737), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5737), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5737), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5737), + [anon_sym_typedef] = ACTIONS(5739), + [anon_sym_extern] = ACTIONS(5739), + [anon_sym_RBRACE] = ACTIONS(5737), + [anon_sym_STAR] = ACTIONS(5737), + [anon_sym_static] = ACTIONS(5739), + [anon_sym_register] = ACTIONS(5739), + [anon_sym_inline] = ACTIONS(5739), + [anon_sym_const] = ACTIONS(5739), + [anon_sym_restrict] = ACTIONS(5739), + [anon_sym_volatile] = ACTIONS(5739), + [anon_sym__Atomic] = ACTIONS(5739), + [anon_sym_mutable] = ACTIONS(5739), + [anon_sym_explicit] = ACTIONS(5739), + [anon_sym_constexpr] = ACTIONS(5739), + [anon_sym_unsigned] = ACTIONS(5739), + [anon_sym_long] = ACTIONS(5739), + [anon_sym_short] = ACTIONS(5739), + [sym_primitive_type] = ACTIONS(5739), + [anon_sym_enum] = ACTIONS(5739), + [anon_sym_struct] = ACTIONS(5739), + [anon_sym_union] = ACTIONS(5739), + [anon_sym_AMP] = ACTIONS(5739), + [anon_sym_AMP_AMP] = ACTIONS(5737), + [anon_sym_TILDE] = ACTIONS(5737), + [sym_identifier] = ACTIONS(5739), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5739), + [anon_sym_public] = ACTIONS(5739), + [sym_auto] = ACTIONS(5739), + [anon_sym_typename] = ACTIONS(5739), + [anon_sym_template] = ACTIONS(5739), + [anon_sym_friend] = ACTIONS(5739), + [anon_sym_private] = ACTIONS(5739), + [anon_sym_protected] = ACTIONS(5739), + [anon_sym_using] = ACTIONS(5739), + [anon_sym_COLON_COLON] = ACTIONS(5737), + [sym_operator_name] = ACTIONS(5737), }, - [2125] = { - [anon_sym_LPAREN] = ACTIONS(5717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5719), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5717), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5717), - [anon_sym_typedef] = ACTIONS(5719), - [anon_sym_extern] = ACTIONS(5719), - [anon_sym_RBRACE] = ACTIONS(5717), - [anon_sym_STAR] = ACTIONS(5717), - [anon_sym_static] = ACTIONS(5719), - [anon_sym_register] = ACTIONS(5719), - [anon_sym_inline] = ACTIONS(5719), - [anon_sym_const] = ACTIONS(5719), - [anon_sym_restrict] = ACTIONS(5719), - [anon_sym_volatile] = ACTIONS(5719), - [anon_sym__Atomic] = ACTIONS(5719), - [anon_sym_mutable] = ACTIONS(5719), - [anon_sym_explicit] = ACTIONS(5719), - [anon_sym_constexpr] = ACTIONS(5719), - [anon_sym_unsigned] = ACTIONS(5719), - [anon_sym_long] = ACTIONS(5719), - [anon_sym_short] = ACTIONS(5719), - [sym_primitive_type] = ACTIONS(5719), - [anon_sym_enum] = ACTIONS(5719), - [anon_sym_struct] = ACTIONS(5719), - [anon_sym_union] = ACTIONS(5719), - [anon_sym_AMP] = ACTIONS(5719), - [anon_sym_AMP_AMP] = ACTIONS(5717), - [anon_sym_TILDE] = ACTIONS(5717), - [sym_identifier] = ACTIONS(5719), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5719), - [anon_sym_public] = ACTIONS(5719), - [sym_auto] = ACTIONS(5719), - [anon_sym_typename] = ACTIONS(5719), - [anon_sym_template] = ACTIONS(5719), - [anon_sym_friend] = ACTIONS(5719), - [anon_sym_private] = ACTIONS(5719), - [anon_sym_protected] = ACTIONS(5719), - [anon_sym_using] = ACTIONS(5719), - [anon_sym_COLON_COLON] = ACTIONS(5717), - [sym_operator_name] = ACTIONS(5717), + [2131] = { + [anon_sym_LPAREN] = ACTIONS(5741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5743), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5741), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5741), + [anon_sym_typedef] = ACTIONS(5743), + [anon_sym_extern] = ACTIONS(5743), + [anon_sym_RBRACE] = ACTIONS(5741), + [anon_sym_STAR] = ACTIONS(5741), + [anon_sym_static] = ACTIONS(5743), + [anon_sym_register] = ACTIONS(5743), + [anon_sym_inline] = ACTIONS(5743), + [anon_sym_const] = ACTIONS(5743), + [anon_sym_restrict] = ACTIONS(5743), + [anon_sym_volatile] = ACTIONS(5743), + [anon_sym__Atomic] = ACTIONS(5743), + [anon_sym_mutable] = ACTIONS(5743), + [anon_sym_explicit] = ACTIONS(5743), + [anon_sym_constexpr] = ACTIONS(5743), + [anon_sym_unsigned] = ACTIONS(5743), + [anon_sym_long] = ACTIONS(5743), + [anon_sym_short] = ACTIONS(5743), + [sym_primitive_type] = ACTIONS(5743), + [anon_sym_enum] = ACTIONS(5743), + [anon_sym_struct] = ACTIONS(5743), + [anon_sym_union] = ACTIONS(5743), + [anon_sym_AMP] = ACTIONS(5743), + [anon_sym_AMP_AMP] = ACTIONS(5741), + [anon_sym_TILDE] = ACTIONS(5741), + [sym_identifier] = ACTIONS(5743), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5743), + [anon_sym_public] = ACTIONS(5743), + [sym_auto] = ACTIONS(5743), + [anon_sym_typename] = ACTIONS(5743), + [anon_sym_template] = ACTIONS(5743), + [anon_sym_friend] = ACTIONS(5743), + [anon_sym_private] = ACTIONS(5743), + [anon_sym_protected] = ACTIONS(5743), + [anon_sym_using] = ACTIONS(5743), + [anon_sym_COLON_COLON] = ACTIONS(5741), + [sym_operator_name] = ACTIONS(5741), }, - [2126] = { - [anon_sym_LPAREN] = ACTIONS(5721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5723), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5721), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5721), - [anon_sym_typedef] = ACTIONS(5723), - [anon_sym_extern] = ACTIONS(5723), - [anon_sym_RBRACE] = ACTIONS(5721), - [anon_sym_STAR] = ACTIONS(5721), - [anon_sym_static] = ACTIONS(5723), - [anon_sym_register] = ACTIONS(5723), - [anon_sym_inline] = ACTIONS(5723), - [anon_sym_const] = ACTIONS(5723), - [anon_sym_restrict] = ACTIONS(5723), - [anon_sym_volatile] = ACTIONS(5723), - [anon_sym__Atomic] = ACTIONS(5723), - [anon_sym_mutable] = ACTIONS(5723), - [anon_sym_explicit] = ACTIONS(5723), - [anon_sym_constexpr] = ACTIONS(5723), - [anon_sym_unsigned] = ACTIONS(5723), - [anon_sym_long] = ACTIONS(5723), - [anon_sym_short] = ACTIONS(5723), - [sym_primitive_type] = ACTIONS(5723), - [anon_sym_enum] = ACTIONS(5723), - [anon_sym_struct] = ACTIONS(5723), - [anon_sym_union] = ACTIONS(5723), - [anon_sym_AMP] = ACTIONS(5723), - [anon_sym_AMP_AMP] = ACTIONS(5721), - [anon_sym_TILDE] = ACTIONS(5721), - [sym_identifier] = ACTIONS(5723), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5723), - [anon_sym_public] = ACTIONS(5723), - [sym_auto] = ACTIONS(5723), - [anon_sym_typename] = ACTIONS(5723), - [anon_sym_template] = ACTIONS(5723), - [anon_sym_friend] = ACTIONS(5723), - [anon_sym_private] = ACTIONS(5723), - [anon_sym_protected] = ACTIONS(5723), - [anon_sym_using] = ACTIONS(5723), - [anon_sym_COLON_COLON] = ACTIONS(5721), - [sym_operator_name] = ACTIONS(5721), + [2132] = { + [anon_sym_LPAREN] = ACTIONS(5745), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5747), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5745), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5745), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5745), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5745), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5745), + [anon_sym_typedef] = ACTIONS(5747), + [anon_sym_extern] = ACTIONS(5747), + [anon_sym_RBRACE] = ACTIONS(5745), + [anon_sym_STAR] = ACTIONS(5745), + [anon_sym_static] = ACTIONS(5747), + [anon_sym_register] = ACTIONS(5747), + [anon_sym_inline] = ACTIONS(5747), + [anon_sym_const] = ACTIONS(5747), + [anon_sym_restrict] = ACTIONS(5747), + [anon_sym_volatile] = ACTIONS(5747), + [anon_sym__Atomic] = ACTIONS(5747), + [anon_sym_mutable] = ACTIONS(5747), + [anon_sym_explicit] = ACTIONS(5747), + [anon_sym_constexpr] = ACTIONS(5747), + [anon_sym_unsigned] = ACTIONS(5747), + [anon_sym_long] = ACTIONS(5747), + [anon_sym_short] = ACTIONS(5747), + [sym_primitive_type] = ACTIONS(5747), + [anon_sym_enum] = ACTIONS(5747), + [anon_sym_struct] = ACTIONS(5747), + [anon_sym_union] = ACTIONS(5747), + [anon_sym_AMP] = ACTIONS(5747), + [anon_sym_AMP_AMP] = ACTIONS(5745), + [anon_sym_TILDE] = ACTIONS(5745), + [sym_identifier] = ACTIONS(5747), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5747), + [anon_sym_public] = ACTIONS(5747), + [sym_auto] = ACTIONS(5747), + [anon_sym_typename] = ACTIONS(5747), + [anon_sym_template] = ACTIONS(5747), + [anon_sym_friend] = ACTIONS(5747), + [anon_sym_private] = ACTIONS(5747), + [anon_sym_protected] = ACTIONS(5747), + [anon_sym_using] = ACTIONS(5747), + [anon_sym_COLON_COLON] = ACTIONS(5745), + [sym_operator_name] = ACTIONS(5745), }, - [2127] = { - [anon_sym_LPAREN] = ACTIONS(5725), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5727), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5725), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5725), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5725), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5725), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5725), - [anon_sym_typedef] = ACTIONS(5727), - [anon_sym_extern] = ACTIONS(5727), - [anon_sym_RBRACE] = ACTIONS(5725), - [anon_sym_STAR] = ACTIONS(5725), - [anon_sym_static] = ACTIONS(5727), - [anon_sym_register] = ACTIONS(5727), - [anon_sym_inline] = ACTIONS(5727), - [anon_sym_const] = ACTIONS(5727), - [anon_sym_restrict] = ACTIONS(5727), - [anon_sym_volatile] = ACTIONS(5727), - [anon_sym__Atomic] = ACTIONS(5727), - [anon_sym_mutable] = ACTIONS(5727), - [anon_sym_explicit] = ACTIONS(5727), - [anon_sym_constexpr] = ACTIONS(5727), - [anon_sym_unsigned] = ACTIONS(5727), - [anon_sym_long] = ACTIONS(5727), - [anon_sym_short] = ACTIONS(5727), - [sym_primitive_type] = ACTIONS(5727), - [anon_sym_enum] = ACTIONS(5727), - [anon_sym_struct] = ACTIONS(5727), - [anon_sym_union] = ACTIONS(5727), - [anon_sym_AMP] = ACTIONS(5727), - [anon_sym_AMP_AMP] = ACTIONS(5725), - [anon_sym_TILDE] = ACTIONS(5725), - [sym_identifier] = ACTIONS(5727), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5727), - [anon_sym_public] = ACTIONS(5727), - [sym_auto] = ACTIONS(5727), - [anon_sym_typename] = ACTIONS(5727), - [anon_sym_template] = ACTIONS(5727), - [anon_sym_friend] = ACTIONS(5727), - [anon_sym_private] = ACTIONS(5727), - [anon_sym_protected] = ACTIONS(5727), - [anon_sym_using] = ACTIONS(5727), - [anon_sym_COLON_COLON] = ACTIONS(5725), - [sym_operator_name] = ACTIONS(5725), + [2133] = { + [anon_sym_LPAREN] = ACTIONS(5749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5751), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5749), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5749), + [anon_sym_typedef] = ACTIONS(5751), + [anon_sym_extern] = ACTIONS(5751), + [anon_sym_RBRACE] = ACTIONS(5749), + [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_static] = ACTIONS(5751), + [anon_sym_register] = ACTIONS(5751), + [anon_sym_inline] = ACTIONS(5751), + [anon_sym_const] = ACTIONS(5751), + [anon_sym_restrict] = ACTIONS(5751), + [anon_sym_volatile] = ACTIONS(5751), + [anon_sym__Atomic] = ACTIONS(5751), + [anon_sym_mutable] = ACTIONS(5751), + [anon_sym_explicit] = ACTIONS(5751), + [anon_sym_constexpr] = ACTIONS(5751), + [anon_sym_unsigned] = ACTIONS(5751), + [anon_sym_long] = ACTIONS(5751), + [anon_sym_short] = ACTIONS(5751), + [sym_primitive_type] = ACTIONS(5751), + [anon_sym_enum] = ACTIONS(5751), + [anon_sym_struct] = ACTIONS(5751), + [anon_sym_union] = ACTIONS(5751), + [anon_sym_AMP] = ACTIONS(5751), + [anon_sym_AMP_AMP] = ACTIONS(5749), + [anon_sym_TILDE] = ACTIONS(5749), + [sym_identifier] = ACTIONS(5751), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5751), + [anon_sym_public] = ACTIONS(5751), + [sym_auto] = ACTIONS(5751), + [anon_sym_typename] = ACTIONS(5751), + [anon_sym_template] = ACTIONS(5751), + [anon_sym_friend] = ACTIONS(5751), + [anon_sym_private] = ACTIONS(5751), + [anon_sym_protected] = ACTIONS(5751), + [anon_sym_using] = ACTIONS(5751), + [anon_sym_COLON_COLON] = ACTIONS(5749), + [sym_operator_name] = ACTIONS(5749), }, - [2128] = { - [anon_sym_LPAREN] = ACTIONS(5729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5731), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5729), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5729), - [anon_sym_typedef] = ACTIONS(5731), - [anon_sym_extern] = ACTIONS(5731), - [anon_sym_RBRACE] = ACTIONS(5729), - [anon_sym_STAR] = ACTIONS(5729), - [anon_sym_static] = ACTIONS(5731), - [anon_sym_register] = ACTIONS(5731), - [anon_sym_inline] = ACTIONS(5731), - [anon_sym_const] = ACTIONS(5731), - [anon_sym_restrict] = ACTIONS(5731), - [anon_sym_volatile] = ACTIONS(5731), - [anon_sym__Atomic] = ACTIONS(5731), - [anon_sym_mutable] = ACTIONS(5731), - [anon_sym_explicit] = ACTIONS(5731), - [anon_sym_constexpr] = ACTIONS(5731), - [anon_sym_unsigned] = ACTIONS(5731), - [anon_sym_long] = ACTIONS(5731), - [anon_sym_short] = ACTIONS(5731), - [sym_primitive_type] = ACTIONS(5731), - [anon_sym_enum] = ACTIONS(5731), - [anon_sym_struct] = ACTIONS(5731), - [anon_sym_union] = ACTIONS(5731), - [anon_sym_AMP] = ACTIONS(5731), - [anon_sym_AMP_AMP] = ACTIONS(5729), - [anon_sym_TILDE] = ACTIONS(5729), - [sym_identifier] = ACTIONS(5731), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5731), - [anon_sym_public] = ACTIONS(5731), - [sym_auto] = ACTIONS(5731), - [anon_sym_typename] = ACTIONS(5731), - [anon_sym_template] = ACTIONS(5731), - [anon_sym_friend] = ACTIONS(5731), - [anon_sym_private] = ACTIONS(5731), - [anon_sym_protected] = ACTIONS(5731), - [anon_sym_using] = ACTIONS(5731), - [anon_sym_COLON_COLON] = ACTIONS(5729), - [sym_operator_name] = ACTIONS(5729), + [2134] = { + [anon_sym_LPAREN] = ACTIONS(5753), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5755), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5753), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5753), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5753), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5753), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5753), + [anon_sym_typedef] = ACTIONS(5755), + [anon_sym_extern] = ACTIONS(5755), + [anon_sym_RBRACE] = ACTIONS(5753), + [anon_sym_STAR] = ACTIONS(5753), + [anon_sym_static] = ACTIONS(5755), + [anon_sym_register] = ACTIONS(5755), + [anon_sym_inline] = ACTIONS(5755), + [anon_sym_const] = ACTIONS(5755), + [anon_sym_restrict] = ACTIONS(5755), + [anon_sym_volatile] = ACTIONS(5755), + [anon_sym__Atomic] = ACTIONS(5755), + [anon_sym_mutable] = ACTIONS(5755), + [anon_sym_explicit] = ACTIONS(5755), + [anon_sym_constexpr] = ACTIONS(5755), + [anon_sym_unsigned] = ACTIONS(5755), + [anon_sym_long] = ACTIONS(5755), + [anon_sym_short] = ACTIONS(5755), + [sym_primitive_type] = ACTIONS(5755), + [anon_sym_enum] = ACTIONS(5755), + [anon_sym_struct] = ACTIONS(5755), + [anon_sym_union] = ACTIONS(5755), + [anon_sym_AMP] = ACTIONS(5755), + [anon_sym_AMP_AMP] = ACTIONS(5753), + [anon_sym_TILDE] = ACTIONS(5753), + [sym_identifier] = ACTIONS(5755), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5755), + [anon_sym_public] = ACTIONS(5755), + [sym_auto] = ACTIONS(5755), + [anon_sym_typename] = ACTIONS(5755), + [anon_sym_template] = ACTIONS(5755), + [anon_sym_friend] = ACTIONS(5755), + [anon_sym_private] = ACTIONS(5755), + [anon_sym_protected] = ACTIONS(5755), + [anon_sym_using] = ACTIONS(5755), + [anon_sym_COLON_COLON] = ACTIONS(5753), + [sym_operator_name] = ACTIONS(5753), }, - [2129] = { - [anon_sym_LPAREN] = ACTIONS(5733), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5735), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5733), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5733), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5733), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5733), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5733), - [anon_sym_typedef] = ACTIONS(5735), - [anon_sym_extern] = ACTIONS(5735), - [anon_sym_RBRACE] = ACTIONS(5733), - [anon_sym_STAR] = ACTIONS(5733), - [anon_sym_static] = ACTIONS(5735), - [anon_sym_register] = ACTIONS(5735), - [anon_sym_inline] = ACTIONS(5735), - [anon_sym_const] = ACTIONS(5735), - [anon_sym_restrict] = ACTIONS(5735), - [anon_sym_volatile] = ACTIONS(5735), - [anon_sym__Atomic] = ACTIONS(5735), - [anon_sym_mutable] = ACTIONS(5735), - [anon_sym_explicit] = ACTIONS(5735), - [anon_sym_constexpr] = ACTIONS(5735), - [anon_sym_unsigned] = ACTIONS(5735), - [anon_sym_long] = ACTIONS(5735), - [anon_sym_short] = ACTIONS(5735), - [sym_primitive_type] = ACTIONS(5735), - [anon_sym_enum] = ACTIONS(5735), - [anon_sym_struct] = ACTIONS(5735), - [anon_sym_union] = ACTIONS(5735), - [anon_sym_AMP] = ACTIONS(5735), - [anon_sym_AMP_AMP] = ACTIONS(5733), - [anon_sym_TILDE] = ACTIONS(5733), - [sym_identifier] = ACTIONS(5735), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5735), - [anon_sym_public] = ACTIONS(5735), - [sym_auto] = ACTIONS(5735), - [anon_sym_typename] = ACTIONS(5735), - [anon_sym_template] = ACTIONS(5735), - [anon_sym_friend] = ACTIONS(5735), - [anon_sym_private] = ACTIONS(5735), - [anon_sym_protected] = ACTIONS(5735), - [anon_sym_using] = ACTIONS(5735), - [anon_sym_COLON_COLON] = ACTIONS(5733), - [sym_operator_name] = ACTIONS(5733), + [2135] = { + [anon_sym_LPAREN] = ACTIONS(5757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5759), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5757), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5757), + [anon_sym_typedef] = ACTIONS(5759), + [anon_sym_extern] = ACTIONS(5759), + [anon_sym_RBRACE] = ACTIONS(5757), + [anon_sym_STAR] = ACTIONS(5757), + [anon_sym_static] = ACTIONS(5759), + [anon_sym_register] = ACTIONS(5759), + [anon_sym_inline] = ACTIONS(5759), + [anon_sym_const] = ACTIONS(5759), + [anon_sym_restrict] = ACTIONS(5759), + [anon_sym_volatile] = ACTIONS(5759), + [anon_sym__Atomic] = ACTIONS(5759), + [anon_sym_mutable] = ACTIONS(5759), + [anon_sym_explicit] = ACTIONS(5759), + [anon_sym_constexpr] = ACTIONS(5759), + [anon_sym_unsigned] = ACTIONS(5759), + [anon_sym_long] = ACTIONS(5759), + [anon_sym_short] = ACTIONS(5759), + [sym_primitive_type] = ACTIONS(5759), + [anon_sym_enum] = ACTIONS(5759), + [anon_sym_struct] = ACTIONS(5759), + [anon_sym_union] = ACTIONS(5759), + [anon_sym_AMP] = ACTIONS(5759), + [anon_sym_AMP_AMP] = ACTIONS(5757), + [anon_sym_TILDE] = ACTIONS(5757), + [sym_identifier] = ACTIONS(5759), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5759), + [anon_sym_public] = ACTIONS(5759), + [sym_auto] = ACTIONS(5759), + [anon_sym_typename] = ACTIONS(5759), + [anon_sym_template] = ACTIONS(5759), + [anon_sym_friend] = ACTIONS(5759), + [anon_sym_private] = ACTIONS(5759), + [anon_sym_protected] = ACTIONS(5759), + [anon_sym_using] = ACTIONS(5759), + [anon_sym_COLON_COLON] = ACTIONS(5757), + [sym_operator_name] = ACTIONS(5757), }, - [2130] = { - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [anon_sym_public] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_friend] = ACTIONS(3515), - [anon_sym_private] = ACTIONS(3515), - [anon_sym_protected] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [sym_operator_name] = ACTIONS(3513), + [2136] = { + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [anon_sym_public] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_template] = ACTIONS(3521), + [anon_sym_friend] = ACTIONS(3521), + [anon_sym_private] = ACTIONS(3521), + [anon_sym_protected] = ACTIONS(3521), + [anon_sym_using] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [sym_operator_name] = ACTIONS(3519), }, - [2131] = { + [2137] = { [anon_sym_LPAREN] = ACTIONS(1622), - [anon_sym_COMMA] = ACTIONS(2398), + [anon_sym_COMMA] = ACTIONS(2400), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1622), - [anon_sym_SEMI] = ACTIONS(2398), + [anon_sym_SEMI] = ACTIONS(2400), [anon_sym_typedef] = ACTIONS(1624), [anon_sym_extern] = ACTIONS(1624), [anon_sym_RBRACE] = ACTIONS(1622), @@ -84834,105 +85052,105 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1622), [sym_operator_name] = ACTIONS(1622), }, - [2132] = { - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2478), - [anon_sym_AMP_AMP] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [anon_sym_public] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_template] = ACTIONS(2478), - [anon_sym_friend] = ACTIONS(2478), - [anon_sym_private] = ACTIONS(2478), - [anon_sym_protected] = ACTIONS(2478), - [anon_sym_using] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [sym_operator_name] = ACTIONS(2476), + [2138] = { + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2480), + [anon_sym_AMP_AMP] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [anon_sym_public] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_template] = ACTIONS(2480), + [anon_sym_friend] = ACTIONS(2480), + [anon_sym_private] = ACTIONS(2480), + [anon_sym_protected] = ACTIONS(2480), + [anon_sym_using] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [sym_operator_name] = ACTIONS(2478), }, - [2133] = { - [anon_sym_LPAREN] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3856), - [anon_sym_typedef] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym_RBRACE] = ACTIONS(3856), - [anon_sym_STAR] = ACTIONS(3856), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_explicit] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_unsigned] = ACTIONS(3858), - [anon_sym_long] = ACTIONS(3858), - [anon_sym_short] = ACTIONS(3858), - [sym_primitive_type] = ACTIONS(3858), - [anon_sym_enum] = ACTIONS(3858), - [anon_sym_struct] = ACTIONS(3858), - [anon_sym_union] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_TILDE] = ACTIONS(3856), - [sym_identifier] = ACTIONS(3858), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3858), - [anon_sym_public] = ACTIONS(3858), - [sym_auto] = ACTIONS(3858), - [anon_sym_typename] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_friend] = ACTIONS(3858), - [anon_sym_private] = ACTIONS(3858), - [anon_sym_protected] = ACTIONS(3858), - [anon_sym_using] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3856), - [sym_operator_name] = ACTIONS(3856), + [2139] = { + [anon_sym_LPAREN] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3862), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym_RBRACE] = ACTIONS(3862), + [anon_sym_STAR] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3862), + [anon_sym_TILDE] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3864), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3864), + [anon_sym_public] = ACTIONS(3864), + [sym_auto] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_friend] = ACTIONS(3864), + [anon_sym_private] = ACTIONS(3864), + [anon_sym_protected] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3862), + [sym_operator_name] = ACTIONS(3862), }, - [2134] = { - [sym_type_qualifier] = STATE(934), - [sym_trailing_return_type] = STATE(934), - [aux_sym_function_declarator_repeat1] = STATE(934), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_RPAREN] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), + [2140] = { + [sym_type_qualifier] = STATE(935), + [sym_trailing_return_type] = STATE(935), + [aux_sym_function_declarator_repeat1] = STATE(935), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_RPAREN] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -84942,34 +85160,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(845), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(1841), + [sym_noexcept] = ACTIONS(1843), }, - [2135] = { - [sym_parameter_list] = STATE(2137), + [2141] = { + [sym_parameter_list] = STATE(2143), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_SEMI] = ACTIONS(3598), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3604), + [anon_sym_SEMI] = ACTIONS(3604), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(3604), [sym_comment] = ACTIONS(49), }, - [2136] = { - [sym_parameter_list] = STATE(2137), + [2142] = { + [sym_parameter_list] = STATE(2143), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3602), - [anon_sym_SEMI] = ACTIONS(3602), - [anon_sym_LBRACK] = ACTIONS(2084), - [anon_sym_COLON] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3608), + [anon_sym_SEMI] = ACTIONS(3608), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_COLON] = ACTIONS(3608), [sym_comment] = ACTIONS(49), }, - [2137] = { - [sym_type_qualifier] = STATE(2434), - [sym_trailing_return_type] = STATE(2434), - [aux_sym_function_declarator_repeat1] = STATE(2434), - [anon_sym_LPAREN] = ACTIONS(3639), - [anon_sym_COMMA] = ACTIONS(3639), - [anon_sym_SEMI] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3639), + [2143] = { + [sym_type_qualifier] = STATE(2444), + [sym_trailing_return_type] = STATE(2444), + [aux_sym_function_declarator_repeat1] = STATE(2444), + [anon_sym_LPAREN] = ACTIONS(3645), + [anon_sym_COMMA] = ACTIONS(3645), + [anon_sym_SEMI] = ACTIONS(3645), + [anon_sym_LBRACK] = ACTIONS(3645), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -84977,27 +85195,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3639), - [anon_sym_DASH_GT] = ACTIONS(5737), + [anon_sym_COLON] = ACTIONS(3645), + [anon_sym_DASH_GT] = ACTIONS(5761), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5739), + [sym_noexcept] = ACTIONS(5763), }, - [2138] = { - [anon_sym_LPAREN] = ACTIONS(5741), - [anon_sym_COMMA] = ACTIONS(5741), - [anon_sym_RPAREN] = ACTIONS(5741), - [anon_sym_SEMI] = ACTIONS(5741), - [anon_sym_LBRACE] = ACTIONS(5741), - [anon_sym_LBRACK] = ACTIONS(5741), - [anon_sym_COLON] = ACTIONS(5741), + [2144] = { + [anon_sym_LPAREN] = ACTIONS(5765), + [anon_sym_COMMA] = ACTIONS(5765), + [anon_sym_RPAREN] = ACTIONS(5765), + [anon_sym_SEMI] = ACTIONS(5765), + [anon_sym_LBRACE] = ACTIONS(5765), + [anon_sym_LBRACK] = ACTIONS(5765), + [anon_sym_COLON] = ACTIONS(5765), [sym_comment] = ACTIONS(49), }, - [2139] = { + [2145] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5743), + [anon_sym_RBRACK] = ACTIONS(5767), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -85033,108 +85251,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2140] = { - [anon_sym_LPAREN] = ACTIONS(5745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5747), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5745), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5745), - [anon_sym_typedef] = ACTIONS(5747), - [anon_sym_extern] = ACTIONS(5747), - [anon_sym_RBRACE] = ACTIONS(5745), - [anon_sym_STAR] = ACTIONS(5745), - [anon_sym_static] = ACTIONS(5747), - [anon_sym_register] = ACTIONS(5747), - [anon_sym_inline] = ACTIONS(5747), - [anon_sym_const] = ACTIONS(5747), - [anon_sym_restrict] = ACTIONS(5747), - [anon_sym_volatile] = ACTIONS(5747), - [anon_sym__Atomic] = ACTIONS(5747), - [anon_sym_mutable] = ACTIONS(5747), - [anon_sym_explicit] = ACTIONS(5747), - [anon_sym_constexpr] = ACTIONS(5747), - [anon_sym_unsigned] = ACTIONS(5747), - [anon_sym_long] = ACTIONS(5747), - [anon_sym_short] = ACTIONS(5747), - [sym_primitive_type] = ACTIONS(5747), - [anon_sym_enum] = ACTIONS(5747), - [anon_sym_struct] = ACTIONS(5747), - [anon_sym_union] = ACTIONS(5747), - [anon_sym_AMP] = ACTIONS(5747), - [anon_sym_AMP_AMP] = ACTIONS(5745), - [anon_sym_TILDE] = ACTIONS(5745), - [sym_identifier] = ACTIONS(5747), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5747), - [anon_sym_public] = ACTIONS(5747), - [sym_auto] = ACTIONS(5747), - [anon_sym_typename] = ACTIONS(5747), - [anon_sym_template] = ACTIONS(5747), - [anon_sym_friend] = ACTIONS(5747), - [anon_sym_private] = ACTIONS(5747), - [anon_sym_protected] = ACTIONS(5747), - [anon_sym_using] = ACTIONS(5747), - [anon_sym_COLON_COLON] = ACTIONS(5745), - [sym_operator_name] = ACTIONS(5745), + [2146] = { + [anon_sym_LPAREN] = ACTIONS(5769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5771), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5769), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5769), + [anon_sym_typedef] = ACTIONS(5771), + [anon_sym_extern] = ACTIONS(5771), + [anon_sym_RBRACE] = ACTIONS(5769), + [anon_sym_STAR] = ACTIONS(5769), + [anon_sym_static] = ACTIONS(5771), + [anon_sym_register] = ACTIONS(5771), + [anon_sym_inline] = ACTIONS(5771), + [anon_sym_const] = ACTIONS(5771), + [anon_sym_restrict] = ACTIONS(5771), + [anon_sym_volatile] = ACTIONS(5771), + [anon_sym__Atomic] = ACTIONS(5771), + [anon_sym_mutable] = ACTIONS(5771), + [anon_sym_explicit] = ACTIONS(5771), + [anon_sym_constexpr] = ACTIONS(5771), + [anon_sym_unsigned] = ACTIONS(5771), + [anon_sym_long] = ACTIONS(5771), + [anon_sym_short] = ACTIONS(5771), + [sym_primitive_type] = ACTIONS(5771), + [anon_sym_enum] = ACTIONS(5771), + [anon_sym_struct] = ACTIONS(5771), + [anon_sym_union] = ACTIONS(5771), + [anon_sym_AMP] = ACTIONS(5771), + [anon_sym_AMP_AMP] = ACTIONS(5769), + [anon_sym_TILDE] = ACTIONS(5769), + [sym_identifier] = ACTIONS(5771), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5771), + [anon_sym_public] = ACTIONS(5771), + [sym_auto] = ACTIONS(5771), + [anon_sym_typename] = ACTIONS(5771), + [anon_sym_template] = ACTIONS(5771), + [anon_sym_friend] = ACTIONS(5771), + [anon_sym_private] = ACTIONS(5771), + [anon_sym_protected] = ACTIONS(5771), + [anon_sym_using] = ACTIONS(5771), + [anon_sym_COLON_COLON] = ACTIONS(5769), + [sym_operator_name] = ACTIONS(5769), }, - [2141] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [2147] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2143), - [anon_sym_unsigned] = ACTIONS(4913), - [anon_sym_long] = ACTIONS(4913), - [anon_sym_short] = ACTIONS(4913), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(2149), + [anon_sym_unsigned] = ACTIONS(4927), + [anon_sym_long] = ACTIONS(4927), + [anon_sym_short] = ACTIONS(4927), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(4917), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(4931), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2142] = { - [sym__abstract_declarator] = STATE(2438), - [sym_abstract_pointer_declarator] = STATE(2438), - [sym_abstract_function_declarator] = STATE(2438), - [sym_abstract_array_declarator] = STATE(2438), - [sym_parameter_list] = STATE(2439), - [sym_abstract_reference_declarator] = STATE(2438), + [2148] = { + [sym__abstract_declarator] = STATE(2448), + [sym_abstract_pointer_declarator] = STATE(2448), + [sym_abstract_function_declarator] = STATE(2448), + [sym_abstract_array_declarator] = STATE(2448), + [sym_parameter_list] = STATE(2449), + [sym_abstract_reference_declarator] = STATE(2448), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(5773), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(5751), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5777), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [2143] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2440), + [2149] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), @@ -85148,221 +85366,221 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(5755), - [anon_sym_long] = ACTIONS(5755), - [anon_sym_short] = ACTIONS(5755), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(5779), + [anon_sym_long] = ACTIONS(5779), + [anon_sym_short] = ACTIONS(5779), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_COLON] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [2144] = { - [sym_type_qualifier] = STATE(2144), - [sym_trailing_return_type] = STATE(2144), - [aux_sym_function_declarator_repeat1] = STATE(2144), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(5757), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5760), + [2150] = { + [sym_type_qualifier] = STATE(2150), + [sym_trailing_return_type] = STATE(2150), + [aux_sym_function_declarator_repeat1] = STATE(2150), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(5781), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5784), }, - [2145] = { + [2151] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5763), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5787), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2146] = { - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2290), - [anon_sym_COLON] = ACTIONS(2288), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_STAR_EQ] = ACTIONS(2288), - [anon_sym_SLASH_EQ] = ACTIONS(2288), - [anon_sym_PERCENT_EQ] = ACTIONS(2288), - [anon_sym_PLUS_EQ] = ACTIONS(2288), - [anon_sym_DASH_EQ] = ACTIONS(2288), - [anon_sym_LT_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_GT_EQ] = ACTIONS(2288), - [anon_sym_AMP_EQ] = ACTIONS(2288), - [anon_sym_CARET_EQ] = ACTIONS(2288), - [anon_sym_PIPE_EQ] = ACTIONS(2288), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2288), - [anon_sym_BANG_EQ] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2290), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_LT_EQ] = ACTIONS(2288), - [anon_sym_GT_EQ] = ACTIONS(2288), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_PLUS] = ACTIONS(2290), - [anon_sym_DASH] = ACTIONS(2290), - [anon_sym_SLASH] = ACTIONS(2290), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_DASH_GT] = ACTIONS(2288), + [2152] = { + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2292), + [anon_sym_COLON] = ACTIONS(2290), + [anon_sym_QMARK] = ACTIONS(2290), + [anon_sym_STAR_EQ] = ACTIONS(2290), + [anon_sym_SLASH_EQ] = ACTIONS(2290), + [anon_sym_PERCENT_EQ] = ACTIONS(2290), + [anon_sym_PLUS_EQ] = ACTIONS(2290), + [anon_sym_DASH_EQ] = ACTIONS(2290), + [anon_sym_LT_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_GT_EQ] = ACTIONS(2290), + [anon_sym_AMP_EQ] = ACTIONS(2290), + [anon_sym_CARET_EQ] = ACTIONS(2290), + [anon_sym_PIPE_EQ] = ACTIONS(2290), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_PIPE_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_PIPE] = ACTIONS(2292), + [anon_sym_CARET] = ACTIONS(2292), + [anon_sym_EQ_EQ] = ACTIONS(2290), + [anon_sym_BANG_EQ] = ACTIONS(2290), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2290), + [anon_sym_GT_EQ] = ACTIONS(2290), + [anon_sym_LT_LT] = ACTIONS(2292), + [anon_sym_GT_GT] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2290), + [anon_sym_PLUS_PLUS] = ACTIONS(2290), + [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2290), [sym_comment] = ACTIONS(49), }, - [2147] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [2153] = { + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5765), + [anon_sym_GT] = ACTIONS(5789), [sym_comment] = ACTIONS(49), }, - [2148] = { - [sym__abstract_declarator] = STATE(2443), - [sym_abstract_pointer_declarator] = STATE(2443), - [sym_abstract_function_declarator] = STATE(2443), - [sym_abstract_array_declarator] = STATE(2443), - [sym_parameter_list] = STATE(2151), - [sym_abstract_reference_declarator] = STATE(2443), + [2154] = { + [sym__abstract_declarator] = STATE(2453), + [sym_abstract_pointer_declarator] = STATE(2453), + [sym_abstract_function_declarator] = STATE(2453), + [sym_abstract_array_declarator] = STATE(2453), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(2453), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(4949), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_COLON] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2149] = { - [sym__abstract_declarator] = STATE(2444), - [sym_abstract_pointer_declarator] = STATE(2444), - [sym_abstract_function_declarator] = STATE(2444), - [sym_abstract_array_declarator] = STATE(2444), - [sym_parameter_list] = STATE(2151), - [sym_abstract_reference_declarator] = STATE(2444), + [2155] = { + [sym__abstract_declarator] = STATE(2454), + [sym_abstract_pointer_declarator] = STATE(2454), + [sym_abstract_function_declarator] = STATE(2454), + [sym_abstract_array_declarator] = STATE(2454), + [sym_parameter_list] = STATE(2157), + [sym_abstract_reference_declarator] = STATE(2454), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(4935), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(4949), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(4937), - [anon_sym_AMP_AMP] = ACTIONS(4939), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(4951), + [anon_sym_AMP_AMP] = ACTIONS(4953), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [2150] = { - [sym_parameter_list] = STATE(2445), + [2156] = { + [sym_parameter_list] = STATE(2455), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [2151] = { - [sym_type_qualifier] = STATE(2446), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2446), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2157] = { + [sym_type_qualifier] = STATE(2456), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2456), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2152] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2152), + [2158] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2158), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), [anon_sym_LBRACE] = ACTIONS(816), @@ -85375,9 +85593,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(5767), - [anon_sym_long] = ACTIONS(5767), - [anon_sym_short] = ACTIONS(5767), + [anon_sym_unsigned] = ACTIONS(5791), + [anon_sym_long] = ACTIONS(5791), + [anon_sym_short] = ACTIONS(5791), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(816), [anon_sym_AMP] = ACTIONS(818), @@ -85387,125 +85605,125 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2153] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2159] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_RPAREN] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_RPAREN] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5770), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5770), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5772), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5794), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5794), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5796), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(1093), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(1095), [anon_sym_DASH] = ACTIONS(1095), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2154] = { - [sym__expression] = STATE(2447), - [sym_conditional_expression] = STATE(2447), - [sym_assignment_expression] = STATE(2447), - [sym_pointer_expression] = STATE(2447), - [sym_logical_expression] = STATE(2447), - [sym_bitwise_expression] = STATE(2447), - [sym_equality_expression] = STATE(2447), - [sym_relational_expression] = STATE(2447), - [sym_shift_expression] = STATE(2447), - [sym_math_expression] = STATE(2447), - [sym_cast_expression] = STATE(2447), - [sym_sizeof_expression] = STATE(2447), - [sym_subscript_expression] = STATE(2447), - [sym_call_expression] = STATE(2447), - [sym_field_expression] = STATE(2447), - [sym_compound_literal_expression] = STATE(2447), - [sym_parenthesized_expression] = STATE(2447), - [sym_concatenated_string] = STATE(2447), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2447), - [sym_new_expression] = STATE(2447), - [sym_delete_expression] = STATE(2447), - [sym_lambda_expression] = STATE(2447), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5774), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [2160] = { + [sym__expression] = STATE(2457), + [sym_conditional_expression] = STATE(2457), + [sym_assignment_expression] = STATE(2457), + [sym_pointer_expression] = STATE(2457), + [sym_logical_expression] = STATE(2457), + [sym_bitwise_expression] = STATE(2457), + [sym_equality_expression] = STATE(2457), + [sym_relational_expression] = STATE(2457), + [sym_shift_expression] = STATE(2457), + [sym_math_expression] = STATE(2457), + [sym_cast_expression] = STATE(2457), + [sym_sizeof_expression] = STATE(2457), + [sym_subscript_expression] = STATE(2457), + [sym_call_expression] = STATE(2457), + [sym_field_expression] = STATE(2457), + [sym_compound_literal_expression] = STATE(2457), + [sym_parenthesized_expression] = STATE(2457), + [sym_concatenated_string] = STATE(2457), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2457), + [sym_new_expression] = STATE(2457), + [sym_delete_expression] = STATE(2457), + [sym_lambda_expression] = STATE(2457), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5798), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1091), [anon_sym_TILDE] = ACTIONS(1093), [anon_sym_PLUS] = ACTIONS(1095), @@ -85513,90 +85731,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(5774), - [sym_char_literal] = ACTIONS(5774), + [sym_number_literal] = ACTIONS(5798), + [sym_char_literal] = ACTIONS(5798), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(5776), - [sym_false] = ACTIONS(5776), - [sym_null] = ACTIONS(5776), + [sym_true] = ACTIONS(5800), + [sym_false] = ACTIONS(5800), + [sym_null] = ACTIONS(5800), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(5776), + [sym_nullptr] = ACTIONS(5800), }, - [2155] = { + [2161] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2156] = { - [sym__expression] = STATE(2448), - [sym_conditional_expression] = STATE(2448), - [sym_assignment_expression] = STATE(2448), - [sym_pointer_expression] = STATE(2448), - [sym_logical_expression] = STATE(2448), - [sym_bitwise_expression] = STATE(2448), - [sym_equality_expression] = STATE(2448), - [sym_relational_expression] = STATE(2448), - [sym_shift_expression] = STATE(2448), - [sym_math_expression] = STATE(2448), - [sym_cast_expression] = STATE(2448), - [sym_sizeof_expression] = STATE(2448), - [sym_subscript_expression] = STATE(2448), - [sym_call_expression] = STATE(2448), - [sym_field_expression] = STATE(2448), - [sym_compound_literal_expression] = STATE(2448), - [sym_parenthesized_expression] = STATE(2448), - [sym_concatenated_string] = STATE(2448), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2448), - [sym_new_expression] = STATE(2448), - [sym_delete_expression] = STATE(2448), - [sym_lambda_expression] = STATE(2448), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5778), + [2162] = { + [sym__expression] = STATE(2458), + [sym_conditional_expression] = STATE(2458), + [sym_assignment_expression] = STATE(2458), + [sym_pointer_expression] = STATE(2458), + [sym_logical_expression] = STATE(2458), + [sym_bitwise_expression] = STATE(2458), + [sym_equality_expression] = STATE(2458), + [sym_relational_expression] = STATE(2458), + [sym_shift_expression] = STATE(2458), + [sym_math_expression] = STATE(2458), + [sym_cast_expression] = STATE(2458), + [sym_sizeof_expression] = STATE(2458), + [sym_subscript_expression] = STATE(2458), + [sym_call_expression] = STATE(2458), + [sym_field_expression] = STATE(2458), + [sym_compound_literal_expression] = STATE(2458), + [sym_parenthesized_expression] = STATE(2458), + [sym_concatenated_string] = STATE(2458), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2458), + [sym_new_expression] = STATE(2458), + [sym_delete_expression] = STATE(2458), + [sym_lambda_expression] = STATE(2458), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5802), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -85608,26 +85826,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(5778), - [sym_char_literal] = ACTIONS(5778), + [sym_number_literal] = ACTIONS(5802), + [sym_char_literal] = ACTIONS(5802), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(5780), - [sym_false] = ACTIONS(5780), - [sym_null] = ACTIONS(5780), + [sym_true] = ACTIONS(5804), + [sym_false] = ACTIONS(5804), + [sym_null] = ACTIONS(5804), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(5780), + [sym_nullptr] = ACTIONS(5804), }, - [2157] = { - [sym_type_qualifier] = STATE(2159), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2159), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2163] = { + [sym_type_qualifier] = STATE(2165), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2165), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -85635,69 +85853,69 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3740), + [anon_sym_DASH_GT] = ACTIONS(3746), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4972), + [sym_noexcept] = ACTIONS(4986), }, - [2158] = { - [sym__abstract_declarator] = STATE(2449), - [sym_abstract_pointer_declarator] = STATE(2449), - [sym_abstract_function_declarator] = STATE(2449), - [sym_abstract_array_declarator] = STATE(2449), - [sym_parameter_list] = STATE(1119), - [sym_abstract_reference_declarator] = STATE(2449), + [2164] = { + [sym__abstract_declarator] = STATE(2459), + [sym_abstract_pointer_declarator] = STATE(2459), + [sym_abstract_function_declarator] = STATE(2459), + [sym_abstract_array_declarator] = STATE(2459), + [sym_parameter_list] = STATE(1120), + [sym_abstract_reference_declarator] = STATE(2459), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2262), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2264), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_AMP_AMP] = ACTIONS(2268), [sym_comment] = ACTIONS(49), }, - [2159] = { - [sym_type_qualifier] = STATE(2159), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2159), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_RPAREN] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5782), + [2165] = { + [sym_type_qualifier] = STATE(2165), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2165), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5806), }, - [2160] = { - [anon_sym_LPAREN] = ACTIONS(5785), - [anon_sym_COMMA] = ACTIONS(5785), - [anon_sym_RPAREN] = ACTIONS(5785), - [anon_sym_SEMI] = ACTIONS(5785), - [anon_sym_LBRACE] = ACTIONS(5785), - [anon_sym_LBRACK] = ACTIONS(5785), - [anon_sym_EQ] = ACTIONS(5785), - [anon_sym_const] = ACTIONS(5787), - [anon_sym_restrict] = ACTIONS(5785), - [anon_sym_volatile] = ACTIONS(5785), - [anon_sym__Atomic] = ACTIONS(5785), - [anon_sym_mutable] = ACTIONS(5785), - [anon_sym_explicit] = ACTIONS(5785), - [anon_sym_constexpr] = ACTIONS(5785), - [anon_sym_COLON] = ACTIONS(5785), - [anon_sym_GT] = ACTIONS(5785), - [anon_sym_DASH_GT] = ACTIONS(5785), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5785), + [2166] = { + [anon_sym_LPAREN] = ACTIONS(5809), + [anon_sym_COMMA] = ACTIONS(5809), + [anon_sym_RPAREN] = ACTIONS(5809), + [anon_sym_SEMI] = ACTIONS(5809), + [anon_sym_LBRACE] = ACTIONS(5809), + [anon_sym_LBRACK] = ACTIONS(5809), + [anon_sym_EQ] = ACTIONS(5809), + [anon_sym_const] = ACTIONS(5811), + [anon_sym_restrict] = ACTIONS(5809), + [anon_sym_volatile] = ACTIONS(5809), + [anon_sym__Atomic] = ACTIONS(5809), + [anon_sym_mutable] = ACTIONS(5809), + [anon_sym_explicit] = ACTIONS(5809), + [anon_sym_constexpr] = ACTIONS(5809), + [anon_sym_COLON] = ACTIONS(5809), + [anon_sym_GT] = ACTIONS(5809), + [anon_sym_DASH_GT] = ACTIONS(5809), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5809), }, - [2161] = { + [2167] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5789), + [anon_sym_RBRACK] = ACTIONS(5813), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -85733,99 +85951,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2162] = { - [anon_sym_LPAREN] = ACTIONS(5791), - [anon_sym_COMMA] = ACTIONS(5791), - [anon_sym_RPAREN] = ACTIONS(5791), - [anon_sym_SEMI] = ACTIONS(5791), - [anon_sym_LBRACE] = ACTIONS(5791), - [anon_sym_LBRACK] = ACTIONS(5791), - [anon_sym_EQ] = ACTIONS(5791), - [anon_sym_const] = ACTIONS(5793), - [anon_sym_restrict] = ACTIONS(5791), - [anon_sym_volatile] = ACTIONS(5791), - [anon_sym__Atomic] = ACTIONS(5791), - [anon_sym_mutable] = ACTIONS(5791), - [anon_sym_explicit] = ACTIONS(5791), - [anon_sym_constexpr] = ACTIONS(5791), - [anon_sym_COLON] = ACTIONS(5791), - [anon_sym_GT] = ACTIONS(5791), - [anon_sym_DASH_GT] = ACTIONS(5791), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5791), + [2168] = { + [anon_sym_LPAREN] = ACTIONS(5815), + [anon_sym_COMMA] = ACTIONS(5815), + [anon_sym_RPAREN] = ACTIONS(5815), + [anon_sym_SEMI] = ACTIONS(5815), + [anon_sym_LBRACE] = ACTIONS(5815), + [anon_sym_LBRACK] = ACTIONS(5815), + [anon_sym_EQ] = ACTIONS(5815), + [anon_sym_const] = ACTIONS(5817), + [anon_sym_restrict] = ACTIONS(5815), + [anon_sym_volatile] = ACTIONS(5815), + [anon_sym__Atomic] = ACTIONS(5815), + [anon_sym_mutable] = ACTIONS(5815), + [anon_sym_explicit] = ACTIONS(5815), + [anon_sym_constexpr] = ACTIONS(5815), + [anon_sym_COLON] = ACTIONS(5815), + [anon_sym_GT] = ACTIONS(5815), + [anon_sym_DASH_GT] = ACTIONS(5815), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5815), }, - [2163] = { - [sym_parameter_list] = STATE(1126), + [2169] = { + [sym_parameter_list] = STATE(1127), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(4358), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_GT] = ACTIONS(4364), [sym_comment] = ACTIONS(49), }, - [2164] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2164), + [2170] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2170), [anon_sym_COMMA] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(5795), - [anon_sym_long] = ACTIONS(5795), - [anon_sym_short] = ACTIONS(5795), + [anon_sym_unsigned] = ACTIONS(5819), + [anon_sym_long] = ACTIONS(5819), + [anon_sym_short] = ACTIONS(5819), [sym_primitive_type] = ACTIONS(818), [anon_sym_GT] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [2165] = { - [anon_sym_COMMA] = ACTIONS(3876), - [anon_sym_GT] = ACTIONS(3876), + [2171] = { + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_GT] = ACTIONS(3882), [sym_comment] = ACTIONS(49), }, - [2166] = { - [aux_sym_argument_list_repeat1] = STATE(1752), - [anon_sym_COMMA] = ACTIONS(2386), - [anon_sym_RPAREN] = ACTIONS(5798), + [2172] = { + [aux_sym_argument_list_repeat1] = STATE(1755), + [anon_sym_COMMA] = ACTIONS(2388), + [anon_sym_RPAREN] = ACTIONS(5822), [sym_comment] = ACTIONS(49), }, - [2167] = { - [anon_sym_COMMA] = ACTIONS(3886), - [anon_sym_GT] = ACTIONS(3886), + [2173] = { + [anon_sym_COMMA] = ACTIONS(3892), + [anon_sym_GT] = ACTIONS(3892), [sym_comment] = ACTIONS(49), }, - [2168] = { - [sym__expression] = STATE(1777), - [sym_conditional_expression] = STATE(1777), - [sym_assignment_expression] = STATE(1777), - [sym_pointer_expression] = STATE(1777), - [sym_logical_expression] = STATE(1777), - [sym_bitwise_expression] = STATE(1777), - [sym_equality_expression] = STATE(1777), - [sym_relational_expression] = STATE(1777), - [sym_shift_expression] = STATE(1777), - [sym_math_expression] = STATE(1777), - [sym_cast_expression] = STATE(1777), - [sym_sizeof_expression] = STATE(1777), - [sym_subscript_expression] = STATE(1777), - [sym_call_expression] = STATE(1777), - [sym_field_expression] = STATE(1777), - [sym_compound_literal_expression] = STATE(1777), - [sym_parenthesized_expression] = STATE(1777), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), + [2174] = { + [sym__expression] = STATE(1780), + [sym_conditional_expression] = STATE(1780), + [sym_assignment_expression] = STATE(1780), + [sym_pointer_expression] = STATE(1780), + [sym_logical_expression] = STATE(1780), + [sym_bitwise_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_relational_expression] = STATE(1780), + [sym_shift_expression] = STATE(1780), + [sym_math_expression] = STATE(1780), + [sym_cast_expression] = STATE(1780), + [sym_sizeof_expression] = STATE(1780), + [sym_subscript_expression] = STATE(1780), + [sym_call_expression] = STATE(1780), + [sym_field_expression] = STATE(1780), + [sym_compound_literal_expression] = STATE(1780), + [sym_parenthesized_expression] = STATE(1780), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1777), + [sym_concatenated_string] = STATE(1780), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1777), - [sym_new_expression] = STATE(1777), - [sym_delete_expression] = STATE(1777), - [sym_lambda_expression] = STATE(1777), + [sym_template_function] = STATE(1780), + [sym_new_expression] = STATE(1780), + [sym_delete_expression] = STATE(1780), + [sym_lambda_expression] = STATE(1780), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3956), + [sym_raw_string_literal] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(5800), + [anon_sym_RBRACE] = ACTIONS(5824), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1325), @@ -85837,30 +86055,30 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3956), - [sym_char_literal] = ACTIONS(3956), + [sym_number_literal] = ACTIONS(3962), + [sym_char_literal] = ACTIONS(3962), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_null] = ACTIONS(3958), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_null] = ACTIONS(3964), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3958), + [sym_nullptr] = ACTIONS(3964), }, - [2169] = { - [aux_sym_initializer_list_repeat1] = STATE(1776), - [anon_sym_COMMA] = ACTIONS(5802), - [anon_sym_RBRACE] = ACTIONS(5800), + [2175] = { + [aux_sym_initializer_list_repeat1] = STATE(1779), + [anon_sym_COMMA] = ACTIONS(5826), + [anon_sym_RBRACE] = ACTIONS(5824), [sym_comment] = ACTIONS(49), }, - [2170] = { - [anon_sym_RPAREN] = ACTIONS(5804), + [2176] = { + [anon_sym_RPAREN] = ACTIONS(5828), [sym_comment] = ACTIONS(49), }, - [2171] = { + [2177] = { [sym_type_qualifier] = STATE(724), [sym__type_specifier] = STATE(720), [sym_sized_type_specifier] = STATE(720), @@ -85879,7 +86097,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_shift_expression] = STATE(721), [sym_math_expression] = STATE(721), [sym_cast_expression] = STATE(721), - [sym_type_descriptor] = STATE(2455), + [sym_type_descriptor] = STATE(2465), [sym_sizeof_expression] = STATE(721), [sym_subscript_expression] = STATE(721), [sym_call_expression] = STATE(721), @@ -85943,143 +86161,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1109), [sym_nullptr] = ACTIONS(1403), }, - [2172] = { + [2178] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(2702), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2702), - [anon_sym_GT] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(2704), + [anon_sym_QMARK] = ACTIONS(2702), + [anon_sym_STAR_EQ] = ACTIONS(2702), + [anon_sym_SLASH_EQ] = ACTIONS(2702), + [anon_sym_PERCENT_EQ] = ACTIONS(2702), + [anon_sym_PLUS_EQ] = ACTIONS(2702), + [anon_sym_DASH_EQ] = ACTIONS(2702), + [anon_sym_LT_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_GT_EQ] = ACTIONS(2702), + [anon_sym_AMP_EQ] = ACTIONS(2702), + [anon_sym_CARET_EQ] = ACTIONS(2702), + [anon_sym_PIPE_EQ] = ACTIONS(2702), + [anon_sym_AMP] = ACTIONS(2704), + [anon_sym_PIPE_PIPE] = ACTIONS(2702), + [anon_sym_AMP_AMP] = ACTIONS(2702), + [anon_sym_PIPE] = ACTIONS(2704), + [anon_sym_CARET] = ACTIONS(2704), + [anon_sym_EQ_EQ] = ACTIONS(2702), + [anon_sym_BANG_EQ] = ACTIONS(2702), + [anon_sym_LT] = ACTIONS(2704), + [anon_sym_GT] = ACTIONS(2704), + [anon_sym_LT_EQ] = ACTIONS(2702), + [anon_sym_GT_EQ] = ACTIONS(2702), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2173] = { - [aux_sym_concatenated_string_repeat1] = STATE(2456), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2706), - [anon_sym_LBRACK] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2706), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2706), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2706), - [anon_sym_CARET] = ACTIONS(2706), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2706), - [anon_sym_GT] = ACTIONS(2706), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2706), - [anon_sym_GT_GT] = ACTIONS(2706), - [anon_sym_PLUS] = ACTIONS(2706), - [anon_sym_DASH] = ACTIONS(2706), - [anon_sym_SLASH] = ACTIONS(2706), - [anon_sym_PERCENT] = ACTIONS(2706), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_DASH_GT] = ACTIONS(2704), - [sym_string_literal] = ACTIONS(5806), + [2179] = { + [aux_sym_concatenated_string_repeat1] = STATE(2466), + [anon_sym_LPAREN] = ACTIONS(2706), + [anon_sym_COMMA] = ACTIONS(2706), + [anon_sym_STAR] = ACTIONS(2708), + [anon_sym_LBRACK] = ACTIONS(2706), + [anon_sym_EQ] = ACTIONS(2708), + [anon_sym_QMARK] = ACTIONS(2706), + [anon_sym_STAR_EQ] = ACTIONS(2706), + [anon_sym_SLASH_EQ] = ACTIONS(2706), + [anon_sym_PERCENT_EQ] = ACTIONS(2706), + [anon_sym_PLUS_EQ] = ACTIONS(2706), + [anon_sym_DASH_EQ] = ACTIONS(2706), + [anon_sym_LT_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_GT_EQ] = ACTIONS(2706), + [anon_sym_AMP_EQ] = ACTIONS(2706), + [anon_sym_CARET_EQ] = ACTIONS(2706), + [anon_sym_PIPE_EQ] = ACTIONS(2706), + [anon_sym_AMP] = ACTIONS(2708), + [anon_sym_PIPE_PIPE] = ACTIONS(2706), + [anon_sym_AMP_AMP] = ACTIONS(2706), + [anon_sym_PIPE] = ACTIONS(2708), + [anon_sym_CARET] = ACTIONS(2708), + [anon_sym_EQ_EQ] = ACTIONS(2706), + [anon_sym_BANG_EQ] = ACTIONS(2706), + [anon_sym_LT] = ACTIONS(2708), + [anon_sym_GT] = ACTIONS(2708), + [anon_sym_LT_EQ] = ACTIONS(2706), + [anon_sym_GT_EQ] = ACTIONS(2706), + [anon_sym_LT_LT] = ACTIONS(2708), + [anon_sym_GT_GT] = ACTIONS(2708), + [anon_sym_PLUS] = ACTIONS(2708), + [anon_sym_DASH] = ACTIONS(2708), + [anon_sym_SLASH] = ACTIONS(2708), + [anon_sym_PERCENT] = ACTIONS(2708), + [anon_sym_DASH_DASH] = ACTIONS(2706), + [anon_sym_PLUS_PLUS] = ACTIONS(2706), + [anon_sym_DOT] = ACTIONS(2706), + [anon_sym_DASH_GT] = ACTIONS(2706), + [sym_string_literal] = ACTIONS(5830), [sym_comment] = ACTIONS(49), }, - [2174] = { - [sym__expression] = STATE(2458), - [sym_conditional_expression] = STATE(2458), - [sym_assignment_expression] = STATE(2458), - [sym_pointer_expression] = STATE(2458), - [sym_logical_expression] = STATE(2458), - [sym_bitwise_expression] = STATE(2458), - [sym_equality_expression] = STATE(2458), - [sym_relational_expression] = STATE(2458), - [sym_shift_expression] = STATE(2458), - [sym_math_expression] = STATE(2458), - [sym_cast_expression] = STATE(2458), - [sym_sizeof_expression] = STATE(2458), - [sym_subscript_expression] = STATE(2458), - [sym_call_expression] = STATE(2458), - [sym_field_expression] = STATE(2458), - [sym_compound_literal_expression] = STATE(2458), - [sym_parenthesized_expression] = STATE(2458), - [sym_concatenated_string] = STATE(2458), + [2180] = { + [sym__expression] = STATE(2468), + [sym_conditional_expression] = STATE(2468), + [sym_assignment_expression] = STATE(2468), + [sym_pointer_expression] = STATE(2468), + [sym_logical_expression] = STATE(2468), + [sym_bitwise_expression] = STATE(2468), + [sym_equality_expression] = STATE(2468), + [sym_relational_expression] = STATE(2468), + [sym_shift_expression] = STATE(2468), + [sym_math_expression] = STATE(2468), + [sym_cast_expression] = STATE(2468), + [sym_sizeof_expression] = STATE(2468), + [sym_subscript_expression] = STATE(2468), + [sym_call_expression] = STATE(2468), + [sym_field_expression] = STATE(2468), + [sym_compound_literal_expression] = STATE(2468), + [sym_parenthesized_expression] = STATE(2468), + [sym_concatenated_string] = STATE(2468), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2458), - [sym_new_expression] = STATE(2458), - [sym_delete_expression] = STATE(2458), - [sym_lambda_expression] = STATE(2458), + [sym_template_function] = STATE(2468), + [sym_new_expression] = STATE(2468), + [sym_delete_expression] = STATE(2468), + [sym_lambda_expression] = STATE(2468), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5808), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(5810), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5808), - [sym_char_literal] = ACTIONS(5808), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5812), - [sym_false] = ACTIONS(5812), - [sym_null] = ACTIONS(5812), + [sym_raw_string_literal] = ACTIONS(5832), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(5834), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5832), + [sym_char_literal] = ACTIONS(5832), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5836), + [sym_false] = ACTIONS(5836), + [sym_null] = ACTIONS(5836), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5812), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5836), }, - [2175] = { + [2181] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -86112,7 +86330,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5814), + [anon_sym_RBRACK] = ACTIONS(5838), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -86135,739 +86353,739 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [2176] = { + [2182] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(2740), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_STAR_EQ] = ACTIONS(2738), - [anon_sym_SLASH_EQ] = ACTIONS(2738), - [anon_sym_PERCENT_EQ] = ACTIONS(2738), - [anon_sym_PLUS_EQ] = ACTIONS(2738), - [anon_sym_DASH_EQ] = ACTIONS(2738), - [anon_sym_LT_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_GT_EQ] = ACTIONS(2738), - [anon_sym_AMP_EQ] = ACTIONS(2738), - [anon_sym_CARET_EQ] = ACTIONS(2738), - [anon_sym_PIPE_EQ] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(2742), + [anon_sym_QMARK] = ACTIONS(2740), + [anon_sym_STAR_EQ] = ACTIONS(2740), + [anon_sym_SLASH_EQ] = ACTIONS(2740), + [anon_sym_PERCENT_EQ] = ACTIONS(2740), + [anon_sym_PLUS_EQ] = ACTIONS(2740), + [anon_sym_DASH_EQ] = ACTIONS(2740), + [anon_sym_LT_LT_EQ] = ACTIONS(2740), + [anon_sym_GT_GT_EQ] = ACTIONS(2740), + [anon_sym_AMP_EQ] = ACTIONS(2740), + [anon_sym_CARET_EQ] = ACTIONS(2740), + [anon_sym_PIPE_EQ] = ACTIONS(2740), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2177] = { - [sym__expression] = STATE(1327), - [sym_conditional_expression] = STATE(1327), - [sym_assignment_expression] = STATE(1327), - [sym_pointer_expression] = STATE(1327), - [sym_logical_expression] = STATE(1327), - [sym_bitwise_expression] = STATE(1327), - [sym_equality_expression] = STATE(1327), - [sym_relational_expression] = STATE(1327), - [sym_shift_expression] = STATE(1327), - [sym_math_expression] = STATE(1327), - [sym_cast_expression] = STATE(1327), - [sym_sizeof_expression] = STATE(1327), - [sym_subscript_expression] = STATE(1327), - [sym_call_expression] = STATE(1327), - [sym_field_expression] = STATE(1327), - [sym_compound_literal_expression] = STATE(1327), - [sym_parenthesized_expression] = STATE(1327), - [sym_concatenated_string] = STATE(1327), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1327), - [sym_new_expression] = STATE(1327), - [sym_delete_expression] = STATE(1327), - [sym_lambda_expression] = STATE(1327), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2746), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(2746), - [sym_char_literal] = ACTIONS(2746), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(2748), - [sym_false] = ACTIONS(2748), - [sym_null] = ACTIONS(2748), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(2748), - }, - [2178] = { - [sym__expression] = STATE(2460), - [sym_conditional_expression] = STATE(2460), - [sym_assignment_expression] = STATE(2460), - [sym_pointer_expression] = STATE(2460), - [sym_logical_expression] = STATE(2460), - [sym_bitwise_expression] = STATE(2460), - [sym_equality_expression] = STATE(2460), - [sym_relational_expression] = STATE(2460), - [sym_shift_expression] = STATE(2460), - [sym_math_expression] = STATE(2460), - [sym_cast_expression] = STATE(2460), - [sym_sizeof_expression] = STATE(2460), - [sym_subscript_expression] = STATE(2460), - [sym_call_expression] = STATE(2460), - [sym_field_expression] = STATE(2460), - [sym_compound_literal_expression] = STATE(2460), - [sym_parenthesized_expression] = STATE(2460), - [sym_concatenated_string] = STATE(2460), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2460), - [sym_new_expression] = STATE(2460), - [sym_delete_expression] = STATE(2460), - [sym_lambda_expression] = STATE(2460), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5816), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5816), - [sym_char_literal] = ACTIONS(5816), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5818), - [sym_false] = ACTIONS(5818), - [sym_null] = ACTIONS(5818), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5818), - }, - [2179] = { - [sym__expression] = STATE(2461), - [sym_conditional_expression] = STATE(2461), - [sym_assignment_expression] = STATE(2461), - [sym_pointer_expression] = STATE(2461), - [sym_logical_expression] = STATE(2461), - [sym_bitwise_expression] = STATE(2461), - [sym_equality_expression] = STATE(2461), - [sym_relational_expression] = STATE(2461), - [sym_shift_expression] = STATE(2461), - [sym_math_expression] = STATE(2461), - [sym_cast_expression] = STATE(2461), - [sym_sizeof_expression] = STATE(2461), - [sym_subscript_expression] = STATE(2461), - [sym_call_expression] = STATE(2461), - [sym_field_expression] = STATE(2461), - [sym_compound_literal_expression] = STATE(2461), - [sym_parenthesized_expression] = STATE(2461), - [sym_concatenated_string] = STATE(2461), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2461), - [sym_new_expression] = STATE(2461), - [sym_delete_expression] = STATE(2461), - [sym_lambda_expression] = STATE(2461), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5820), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(5820), - [sym_char_literal] = ACTIONS(5820), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5822), - [sym_false] = ACTIONS(5822), - [sym_null] = ACTIONS(5822), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5822), - }, - [2180] = { - [sym__expression] = STATE(2462), - [sym_conditional_expression] = STATE(2462), - [sym_assignment_expression] = STATE(2462), - [sym_pointer_expression] = STATE(2462), - [sym_logical_expression] = STATE(2462), - [sym_bitwise_expression] = STATE(2462), - [sym_equality_expression] = STATE(2462), - [sym_relational_expression] = STATE(2462), - [sym_shift_expression] = STATE(2462), - [sym_math_expression] = STATE(2462), - [sym_cast_expression] = STATE(2462), - [sym_sizeof_expression] = STATE(2462), - [sym_subscript_expression] = STATE(2462), - [sym_call_expression] = STATE(2462), - [sym_field_expression] = STATE(2462), - [sym_compound_literal_expression] = STATE(2462), - [sym_parenthesized_expression] = STATE(2462), - [sym_concatenated_string] = STATE(2462), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2462), - [sym_new_expression] = STATE(2462), - [sym_delete_expression] = STATE(2462), - [sym_lambda_expression] = STATE(2462), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5824), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5824), - [sym_char_literal] = ACTIONS(5824), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5826), - [sym_false] = ACTIONS(5826), - [sym_null] = ACTIONS(5826), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5826), - }, - [2181] = { - [sym__expression] = STATE(2463), - [sym_conditional_expression] = STATE(2463), - [sym_assignment_expression] = STATE(2463), - [sym_pointer_expression] = STATE(2463), - [sym_logical_expression] = STATE(2463), - [sym_bitwise_expression] = STATE(2463), - [sym_equality_expression] = STATE(2463), - [sym_relational_expression] = STATE(2463), - [sym_shift_expression] = STATE(2463), - [sym_math_expression] = STATE(2463), - [sym_cast_expression] = STATE(2463), - [sym_sizeof_expression] = STATE(2463), - [sym_subscript_expression] = STATE(2463), - [sym_call_expression] = STATE(2463), - [sym_field_expression] = STATE(2463), - [sym_compound_literal_expression] = STATE(2463), - [sym_parenthesized_expression] = STATE(2463), - [sym_concatenated_string] = STATE(2463), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2463), - [sym_new_expression] = STATE(2463), - [sym_delete_expression] = STATE(2463), - [sym_lambda_expression] = STATE(2463), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5828), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5828), - [sym_char_literal] = ACTIONS(5828), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5830), - [sym_false] = ACTIONS(5830), - [sym_null] = ACTIONS(5830), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5830), - }, - [2182] = { - [sym__expression] = STATE(2464), - [sym_conditional_expression] = STATE(2464), - [sym_assignment_expression] = STATE(2464), - [sym_pointer_expression] = STATE(2464), - [sym_logical_expression] = STATE(2464), - [sym_bitwise_expression] = STATE(2464), - [sym_equality_expression] = STATE(2464), - [sym_relational_expression] = STATE(2464), - [sym_shift_expression] = STATE(2464), - [sym_math_expression] = STATE(2464), - [sym_cast_expression] = STATE(2464), - [sym_sizeof_expression] = STATE(2464), - [sym_subscript_expression] = STATE(2464), - [sym_call_expression] = STATE(2464), - [sym_field_expression] = STATE(2464), - [sym_compound_literal_expression] = STATE(2464), - [sym_parenthesized_expression] = STATE(2464), - [sym_concatenated_string] = STATE(2464), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2464), - [sym_new_expression] = STATE(2464), - [sym_delete_expression] = STATE(2464), - [sym_lambda_expression] = STATE(2464), + [2183] = { + [sym__expression] = STATE(1328), + [sym_conditional_expression] = STATE(1328), + [sym_assignment_expression] = STATE(1328), + [sym_pointer_expression] = STATE(1328), + [sym_logical_expression] = STATE(1328), + [sym_bitwise_expression] = STATE(1328), + [sym_equality_expression] = STATE(1328), + [sym_relational_expression] = STATE(1328), + [sym_shift_expression] = STATE(1328), + [sym_math_expression] = STATE(1328), + [sym_cast_expression] = STATE(1328), + [sym_sizeof_expression] = STATE(1328), + [sym_subscript_expression] = STATE(1328), + [sym_call_expression] = STATE(1328), + [sym_field_expression] = STATE(1328), + [sym_compound_literal_expression] = STATE(1328), + [sym_parenthesized_expression] = STATE(1328), + [sym_concatenated_string] = STATE(1328), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1328), + [sym_new_expression] = STATE(1328), + [sym_delete_expression] = STATE(1328), + [sym_lambda_expression] = STATE(1328), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5832), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5832), - [sym_char_literal] = ACTIONS(5832), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5834), - [sym_false] = ACTIONS(5834), - [sym_null] = ACTIONS(5834), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5834), - }, - [2183] = { - [sym__expression] = STATE(2465), - [sym_conditional_expression] = STATE(2465), - [sym_assignment_expression] = STATE(2465), - [sym_pointer_expression] = STATE(2465), - [sym_logical_expression] = STATE(2465), - [sym_bitwise_expression] = STATE(2465), - [sym_equality_expression] = STATE(2465), - [sym_relational_expression] = STATE(2465), - [sym_shift_expression] = STATE(2465), - [sym_math_expression] = STATE(2465), - [sym_cast_expression] = STATE(2465), - [sym_sizeof_expression] = STATE(2465), - [sym_subscript_expression] = STATE(2465), - [sym_call_expression] = STATE(2465), - [sym_field_expression] = STATE(2465), - [sym_compound_literal_expression] = STATE(2465), - [sym_parenthesized_expression] = STATE(2465), - [sym_concatenated_string] = STATE(2465), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2465), - [sym_new_expression] = STATE(2465), - [sym_delete_expression] = STATE(2465), - [sym_lambda_expression] = STATE(2465), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5836), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(5836), - [sym_char_literal] = ACTIONS(5836), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(5838), - [sym_false] = ACTIONS(5838), - [sym_null] = ACTIONS(5838), + [sym_raw_string_literal] = ACTIONS(2748), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(2748), + [sym_char_literal] = ACTIONS(2748), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(2750), + [sym_false] = ACTIONS(2750), + [sym_null] = ACTIONS(2750), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(5838), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(2750), }, [2184] = { - [sym__expression] = STATE(2466), - [sym_conditional_expression] = STATE(2466), - [sym_assignment_expression] = STATE(2466), - [sym_pointer_expression] = STATE(2466), - [sym_logical_expression] = STATE(2466), - [sym_bitwise_expression] = STATE(2466), - [sym_equality_expression] = STATE(2466), - [sym_relational_expression] = STATE(2466), - [sym_shift_expression] = STATE(2466), - [sym_math_expression] = STATE(2466), - [sym_cast_expression] = STATE(2466), - [sym_sizeof_expression] = STATE(2466), - [sym_subscript_expression] = STATE(2466), - [sym_call_expression] = STATE(2466), - [sym_field_expression] = STATE(2466), - [sym_compound_literal_expression] = STATE(2466), - [sym_parenthesized_expression] = STATE(2466), - [sym_concatenated_string] = STATE(2466), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2466), - [sym_new_expression] = STATE(2466), - [sym_delete_expression] = STATE(2466), - [sym_lambda_expression] = STATE(2466), + [sym__expression] = STATE(2470), + [sym_conditional_expression] = STATE(2470), + [sym_assignment_expression] = STATE(2470), + [sym_pointer_expression] = STATE(2470), + [sym_logical_expression] = STATE(2470), + [sym_bitwise_expression] = STATE(2470), + [sym_equality_expression] = STATE(2470), + [sym_relational_expression] = STATE(2470), + [sym_shift_expression] = STATE(2470), + [sym_math_expression] = STATE(2470), + [sym_cast_expression] = STATE(2470), + [sym_sizeof_expression] = STATE(2470), + [sym_subscript_expression] = STATE(2470), + [sym_call_expression] = STATE(2470), + [sym_field_expression] = STATE(2470), + [sym_compound_literal_expression] = STATE(2470), + [sym_parenthesized_expression] = STATE(2470), + [sym_concatenated_string] = STATE(2470), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2470), + [sym_new_expression] = STATE(2470), + [sym_delete_expression] = STATE(2470), + [sym_lambda_expression] = STATE(2470), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(5840), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(5840), [sym_char_literal] = ACTIONS(5840), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(5842), [sym_false] = ACTIONS(5842), [sym_null] = ACTIONS(5842), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(5842), }, [2185] = { - [sym__expression] = STATE(2467), - [sym_conditional_expression] = STATE(2467), - [sym_assignment_expression] = STATE(2467), - [sym_pointer_expression] = STATE(2467), - [sym_logical_expression] = STATE(2467), - [sym_bitwise_expression] = STATE(2467), - [sym_equality_expression] = STATE(2467), - [sym_relational_expression] = STATE(2467), - [sym_shift_expression] = STATE(2467), - [sym_math_expression] = STATE(2467), - [sym_cast_expression] = STATE(2467), - [sym_sizeof_expression] = STATE(2467), - [sym_subscript_expression] = STATE(2467), - [sym_call_expression] = STATE(2467), - [sym_field_expression] = STATE(2467), - [sym_compound_literal_expression] = STATE(2467), - [sym_parenthesized_expression] = STATE(2467), - [sym_concatenated_string] = STATE(2467), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2467), - [sym_new_expression] = STATE(2467), - [sym_delete_expression] = STATE(2467), - [sym_lambda_expression] = STATE(2467), + [sym__expression] = STATE(2471), + [sym_conditional_expression] = STATE(2471), + [sym_assignment_expression] = STATE(2471), + [sym_pointer_expression] = STATE(2471), + [sym_logical_expression] = STATE(2471), + [sym_bitwise_expression] = STATE(2471), + [sym_equality_expression] = STATE(2471), + [sym_relational_expression] = STATE(2471), + [sym_shift_expression] = STATE(2471), + [sym_math_expression] = STATE(2471), + [sym_cast_expression] = STATE(2471), + [sym_sizeof_expression] = STATE(2471), + [sym_subscript_expression] = STATE(2471), + [sym_call_expression] = STATE(2471), + [sym_field_expression] = STATE(2471), + [sym_compound_literal_expression] = STATE(2471), + [sym_parenthesized_expression] = STATE(2471), + [sym_concatenated_string] = STATE(2471), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2471), + [sym_new_expression] = STATE(2471), + [sym_delete_expression] = STATE(2471), + [sym_lambda_expression] = STATE(2471), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(5844), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), [sym_number_literal] = ACTIONS(5844), [sym_char_literal] = ACTIONS(5844), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(1648), [sym_true] = ACTIONS(5846), [sym_false] = ACTIONS(5846), [sym_null] = ACTIONS(5846), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), [sym_nullptr] = ACTIONS(5846), }, [2186] = { - [sym__expression] = STATE(2468), - [sym_conditional_expression] = STATE(2468), - [sym_assignment_expression] = STATE(2468), - [sym_pointer_expression] = STATE(2468), - [sym_logical_expression] = STATE(2468), - [sym_bitwise_expression] = STATE(2468), - [sym_equality_expression] = STATE(2468), - [sym_relational_expression] = STATE(2468), - [sym_shift_expression] = STATE(2468), - [sym_math_expression] = STATE(2468), - [sym_cast_expression] = STATE(2468), - [sym_sizeof_expression] = STATE(2468), - [sym_subscript_expression] = STATE(2468), - [sym_call_expression] = STATE(2468), - [sym_field_expression] = STATE(2468), - [sym_compound_literal_expression] = STATE(2468), - [sym_parenthesized_expression] = STATE(2468), - [sym_concatenated_string] = STATE(2468), + [sym__expression] = STATE(2472), + [sym_conditional_expression] = STATE(2472), + [sym_assignment_expression] = STATE(2472), + [sym_pointer_expression] = STATE(2472), + [sym_logical_expression] = STATE(2472), + [sym_bitwise_expression] = STATE(2472), + [sym_equality_expression] = STATE(2472), + [sym_relational_expression] = STATE(2472), + [sym_shift_expression] = STATE(2472), + [sym_math_expression] = STATE(2472), + [sym_cast_expression] = STATE(2472), + [sym_sizeof_expression] = STATE(2472), + [sym_subscript_expression] = STATE(2472), + [sym_call_expression] = STATE(2472), + [sym_field_expression] = STATE(2472), + [sym_compound_literal_expression] = STATE(2472), + [sym_parenthesized_expression] = STATE(2472), + [sym_concatenated_string] = STATE(2472), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2468), - [sym_new_expression] = STATE(2468), - [sym_delete_expression] = STATE(2468), - [sym_lambda_expression] = STATE(2468), + [sym_template_function] = STATE(2472), + [sym_new_expression] = STATE(2472), + [sym_delete_expression] = STATE(2472), + [sym_lambda_expression] = STATE(2472), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(5848), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(5848), [sym_char_literal] = ACTIONS(5848), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(5850), [sym_false] = ACTIONS(5850), [sym_null] = ACTIONS(5850), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(5850), }, [2187] = { - [sym__expression] = STATE(2469), - [sym_conditional_expression] = STATE(2469), - [sym_assignment_expression] = STATE(2469), - [sym_pointer_expression] = STATE(2469), - [sym_logical_expression] = STATE(2469), - [sym_bitwise_expression] = STATE(2469), - [sym_equality_expression] = STATE(2469), - [sym_relational_expression] = STATE(2469), - [sym_shift_expression] = STATE(2469), - [sym_math_expression] = STATE(2469), - [sym_cast_expression] = STATE(2469), - [sym_sizeof_expression] = STATE(2469), - [sym_subscript_expression] = STATE(2469), - [sym_call_expression] = STATE(2469), - [sym_field_expression] = STATE(2469), - [sym_compound_literal_expression] = STATE(2469), - [sym_parenthesized_expression] = STATE(2469), - [sym_concatenated_string] = STATE(2469), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2469), - [sym_new_expression] = STATE(2469), - [sym_delete_expression] = STATE(2469), - [sym_lambda_expression] = STATE(2469), + [sym__expression] = STATE(2473), + [sym_conditional_expression] = STATE(2473), + [sym_assignment_expression] = STATE(2473), + [sym_pointer_expression] = STATE(2473), + [sym_logical_expression] = STATE(2473), + [sym_bitwise_expression] = STATE(2473), + [sym_equality_expression] = STATE(2473), + [sym_relational_expression] = STATE(2473), + [sym_shift_expression] = STATE(2473), + [sym_math_expression] = STATE(2473), + [sym_cast_expression] = STATE(2473), + [sym_sizeof_expression] = STATE(2473), + [sym_subscript_expression] = STATE(2473), + [sym_call_expression] = STATE(2473), + [sym_field_expression] = STATE(2473), + [sym_compound_literal_expression] = STATE(2473), + [sym_parenthesized_expression] = STATE(2473), + [sym_concatenated_string] = STATE(2473), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2473), + [sym_new_expression] = STATE(2473), + [sym_delete_expression] = STATE(2473), + [sym_lambda_expression] = STATE(2473), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(5852), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(5852), [sym_char_literal] = ACTIONS(5852), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(5854), [sym_false] = ACTIONS(5854), [sym_null] = ACTIONS(5854), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(5854), }, [2188] = { - [sym__expression] = STATE(2470), - [sym_conditional_expression] = STATE(2470), - [sym_assignment_expression] = STATE(2470), - [sym_pointer_expression] = STATE(2470), - [sym_logical_expression] = STATE(2470), - [sym_bitwise_expression] = STATE(2470), - [sym_equality_expression] = STATE(2470), - [sym_relational_expression] = STATE(2470), - [sym_shift_expression] = STATE(2470), - [sym_math_expression] = STATE(2470), - [sym_cast_expression] = STATE(2470), - [sym_sizeof_expression] = STATE(2470), - [sym_subscript_expression] = STATE(2470), - [sym_call_expression] = STATE(2470), - [sym_field_expression] = STATE(2470), - [sym_compound_literal_expression] = STATE(2470), - [sym_parenthesized_expression] = STATE(2470), - [sym_concatenated_string] = STATE(2470), + [sym__expression] = STATE(2474), + [sym_conditional_expression] = STATE(2474), + [sym_assignment_expression] = STATE(2474), + [sym_pointer_expression] = STATE(2474), + [sym_logical_expression] = STATE(2474), + [sym_bitwise_expression] = STATE(2474), + [sym_equality_expression] = STATE(2474), + [sym_relational_expression] = STATE(2474), + [sym_shift_expression] = STATE(2474), + [sym_math_expression] = STATE(2474), + [sym_cast_expression] = STATE(2474), + [sym_sizeof_expression] = STATE(2474), + [sym_subscript_expression] = STATE(2474), + [sym_call_expression] = STATE(2474), + [sym_field_expression] = STATE(2474), + [sym_compound_literal_expression] = STATE(2474), + [sym_parenthesized_expression] = STATE(2474), + [sym_concatenated_string] = STATE(2474), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2470), - [sym_new_expression] = STATE(2470), - [sym_delete_expression] = STATE(2470), - [sym_lambda_expression] = STATE(2470), + [sym_template_function] = STATE(2474), + [sym_new_expression] = STATE(2474), + [sym_delete_expression] = STATE(2474), + [sym_lambda_expression] = STATE(2474), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [sym_raw_string_literal] = ACTIONS(5856), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), [sym_number_literal] = ACTIONS(5856), [sym_char_literal] = ACTIONS(5856), - [sym_string_literal] = ACTIONS(3815), + [sym_string_literal] = ACTIONS(3821), [sym_true] = ACTIONS(5858), [sym_false] = ACTIONS(5858), [sym_null] = ACTIONS(5858), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), [sym_nullptr] = ACTIONS(5858), }, [2189] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [sym__expression] = STATE(2475), + [sym_conditional_expression] = STATE(2475), + [sym_assignment_expression] = STATE(2475), + [sym_pointer_expression] = STATE(2475), + [sym_logical_expression] = STATE(2475), + [sym_bitwise_expression] = STATE(2475), + [sym_equality_expression] = STATE(2475), + [sym_relational_expression] = STATE(2475), + [sym_shift_expression] = STATE(2475), + [sym_math_expression] = STATE(2475), + [sym_cast_expression] = STATE(2475), + [sym_sizeof_expression] = STATE(2475), + [sym_subscript_expression] = STATE(2475), + [sym_call_expression] = STATE(2475), + [sym_field_expression] = STATE(2475), + [sym_compound_literal_expression] = STATE(2475), + [sym_parenthesized_expression] = STATE(2475), + [sym_concatenated_string] = STATE(2475), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2475), + [sym_new_expression] = STATE(2475), + [sym_delete_expression] = STATE(2475), + [sym_lambda_expression] = STATE(2475), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5860), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5860), + [sym_char_literal] = ACTIONS(5860), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5862), + [sym_false] = ACTIONS(5862), + [sym_null] = ACTIONS(5862), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5862), + }, + [2190] = { + [sym__expression] = STATE(2476), + [sym_conditional_expression] = STATE(2476), + [sym_assignment_expression] = STATE(2476), + [sym_pointer_expression] = STATE(2476), + [sym_logical_expression] = STATE(2476), + [sym_bitwise_expression] = STATE(2476), + [sym_equality_expression] = STATE(2476), + [sym_relational_expression] = STATE(2476), + [sym_shift_expression] = STATE(2476), + [sym_math_expression] = STATE(2476), + [sym_cast_expression] = STATE(2476), + [sym_sizeof_expression] = STATE(2476), + [sym_subscript_expression] = STATE(2476), + [sym_call_expression] = STATE(2476), + [sym_field_expression] = STATE(2476), + [sym_compound_literal_expression] = STATE(2476), + [sym_parenthesized_expression] = STATE(2476), + [sym_concatenated_string] = STATE(2476), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2476), + [sym_new_expression] = STATE(2476), + [sym_delete_expression] = STATE(2476), + [sym_lambda_expression] = STATE(2476), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5864), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5864), + [sym_char_literal] = ACTIONS(5864), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5866), + [sym_false] = ACTIONS(5866), + [sym_null] = ACTIONS(5866), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5866), + }, + [2191] = { + [sym__expression] = STATE(2477), + [sym_conditional_expression] = STATE(2477), + [sym_assignment_expression] = STATE(2477), + [sym_pointer_expression] = STATE(2477), + [sym_logical_expression] = STATE(2477), + [sym_bitwise_expression] = STATE(2477), + [sym_equality_expression] = STATE(2477), + [sym_relational_expression] = STATE(2477), + [sym_shift_expression] = STATE(2477), + [sym_math_expression] = STATE(2477), + [sym_cast_expression] = STATE(2477), + [sym_sizeof_expression] = STATE(2477), + [sym_subscript_expression] = STATE(2477), + [sym_call_expression] = STATE(2477), + [sym_field_expression] = STATE(2477), + [sym_compound_literal_expression] = STATE(2477), + [sym_parenthesized_expression] = STATE(2477), + [sym_concatenated_string] = STATE(2477), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2477), + [sym_new_expression] = STATE(2477), + [sym_delete_expression] = STATE(2477), + [sym_lambda_expression] = STATE(2477), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5868), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5868), + [sym_char_literal] = ACTIONS(5868), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5870), + [sym_false] = ACTIONS(5870), + [sym_null] = ACTIONS(5870), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5870), + }, + [2192] = { + [sym__expression] = STATE(2478), + [sym_conditional_expression] = STATE(2478), + [sym_assignment_expression] = STATE(2478), + [sym_pointer_expression] = STATE(2478), + [sym_logical_expression] = STATE(2478), + [sym_bitwise_expression] = STATE(2478), + [sym_equality_expression] = STATE(2478), + [sym_relational_expression] = STATE(2478), + [sym_shift_expression] = STATE(2478), + [sym_math_expression] = STATE(2478), + [sym_cast_expression] = STATE(2478), + [sym_sizeof_expression] = STATE(2478), + [sym_subscript_expression] = STATE(2478), + [sym_call_expression] = STATE(2478), + [sym_field_expression] = STATE(2478), + [sym_compound_literal_expression] = STATE(2478), + [sym_parenthesized_expression] = STATE(2478), + [sym_concatenated_string] = STATE(2478), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2478), + [sym_new_expression] = STATE(2478), + [sym_delete_expression] = STATE(2478), + [sym_lambda_expression] = STATE(2478), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5872), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5872), + [sym_char_literal] = ACTIONS(5872), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5874), + [sym_false] = ACTIONS(5874), + [sym_null] = ACTIONS(5874), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5874), + }, + [2193] = { + [sym__expression] = STATE(2479), + [sym_conditional_expression] = STATE(2479), + [sym_assignment_expression] = STATE(2479), + [sym_pointer_expression] = STATE(2479), + [sym_logical_expression] = STATE(2479), + [sym_bitwise_expression] = STATE(2479), + [sym_equality_expression] = STATE(2479), + [sym_relational_expression] = STATE(2479), + [sym_shift_expression] = STATE(2479), + [sym_math_expression] = STATE(2479), + [sym_cast_expression] = STATE(2479), + [sym_sizeof_expression] = STATE(2479), + [sym_subscript_expression] = STATE(2479), + [sym_call_expression] = STATE(2479), + [sym_field_expression] = STATE(2479), + [sym_compound_literal_expression] = STATE(2479), + [sym_parenthesized_expression] = STATE(2479), + [sym_concatenated_string] = STATE(2479), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2479), + [sym_new_expression] = STATE(2479), + [sym_delete_expression] = STATE(2479), + [sym_lambda_expression] = STATE(2479), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5876), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5876), + [sym_char_literal] = ACTIONS(5876), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5878), + [sym_false] = ACTIONS(5878), + [sym_null] = ACTIONS(5878), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5878), + }, + [2194] = { + [sym__expression] = STATE(2480), + [sym_conditional_expression] = STATE(2480), + [sym_assignment_expression] = STATE(2480), + [sym_pointer_expression] = STATE(2480), + [sym_logical_expression] = STATE(2480), + [sym_bitwise_expression] = STATE(2480), + [sym_equality_expression] = STATE(2480), + [sym_relational_expression] = STATE(2480), + [sym_shift_expression] = STATE(2480), + [sym_math_expression] = STATE(2480), + [sym_cast_expression] = STATE(2480), + [sym_sizeof_expression] = STATE(2480), + [sym_subscript_expression] = STATE(2480), + [sym_call_expression] = STATE(2480), + [sym_field_expression] = STATE(2480), + [sym_compound_literal_expression] = STATE(2480), + [sym_parenthesized_expression] = STATE(2480), + [sym_concatenated_string] = STATE(2480), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2480), + [sym_new_expression] = STATE(2480), + [sym_delete_expression] = STATE(2480), + [sym_lambda_expression] = STATE(2480), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5880), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(5880), + [sym_char_literal] = ACTIONS(5880), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(5882), + [sym_false] = ACTIONS(5882), + [sym_null] = ACTIONS(5882), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(5882), + }, + [2195] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2191), - [anon_sym_unsigned] = ACTIONS(5053), - [anon_sym_long] = ACTIONS(5053), - [anon_sym_short] = ACTIONS(5053), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(2197), + [anon_sym_unsigned] = ACTIONS(5067), + [anon_sym_long] = ACTIONS(5067), + [anon_sym_short] = ACTIONS(5067), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(5057), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(5071), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2190] = { - [sym__abstract_declarator] = STATE(2473), - [sym_abstract_pointer_declarator] = STATE(2473), - [sym_abstract_function_declarator] = STATE(2473), - [sym_abstract_array_declarator] = STATE(2473), - [sym_parameter_list] = STATE(2474), - [sym_abstract_reference_declarator] = STATE(2473), + [2196] = { + [sym__abstract_declarator] = STATE(2483), + [sym_abstract_pointer_declarator] = STATE(2483), + [sym_abstract_function_declarator] = STATE(2483), + [sym_abstract_array_declarator] = STATE(2483), + [sym_parameter_list] = STATE(2484), + [sym_abstract_reference_declarator] = STATE(2483), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(5884), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(5862), - [anon_sym_AMP_AMP] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(2839), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5888), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [2191] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [2197] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_LBRACE] = ACTIONS(238), @@ -86881,96 +87099,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(5866), - [anon_sym_long] = ACTIONS(5866), - [anon_sym_short] = ACTIONS(5866), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(5890), + [anon_sym_long] = ACTIONS(5890), + [anon_sym_short] = ACTIONS(5890), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_GT] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [2192] = { - [sym_type_qualifier] = STATE(2192), - [sym_trailing_return_type] = STATE(2192), - [aux_sym_function_declarator_repeat1] = STATE(2192), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_EQ] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_GT] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(5868), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5871), + [2198] = { + [sym_type_qualifier] = STATE(2198), + [sym_trailing_return_type] = STATE(2198), + [aux_sym_function_declarator_repeat1] = STATE(2198), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_GT] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(5892), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5895), }, - [2193] = { - [sym_parameter_list] = STATE(2195), + [2199] = { + [sym_parameter_list] = STATE(2201), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2194] = { - [sym_parameter_list] = STATE(2195), + [2200] = { + [sym_parameter_list] = STATE(2201), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2195] = { - [sym_type_qualifier] = STATE(2476), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2476), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2201] = { + [sym_type_qualifier] = STATE(2486), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2486), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2196] = { - [sym_type_qualifier] = STATE(2199), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2199), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2202] = { + [sym_type_qualifier] = STATE(2205), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2205), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -86980,15 +87198,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1194), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5068), + [sym_noexcept] = ACTIONS(5082), }, - [2197] = { - [sym_type_qualifier] = STATE(2199), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2199), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2203] = { + [sym_type_qualifier] = STATE(2205), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2205), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -86996,162 +87214,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(3852), + [anon_sym_DASH_GT] = ACTIONS(3858), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5068), + [sym_noexcept] = ACTIONS(5082), }, - [2198] = { - [sym__abstract_declarator] = STATE(2477), - [sym_abstract_pointer_declarator] = STATE(2477), - [sym_abstract_function_declarator] = STATE(2477), - [sym_abstract_array_declarator] = STATE(2477), - [sym_parameter_list] = STATE(1161), - [sym_abstract_reference_declarator] = STATE(2477), + [2204] = { + [sym__abstract_declarator] = STATE(2487), + [sym_abstract_pointer_declarator] = STATE(2487), + [sym_abstract_function_declarator] = STATE(2487), + [sym_abstract_array_declarator] = STATE(2487), + [sym_parameter_list] = STATE(1162), + [sym_abstract_reference_declarator] = STATE(2487), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2359), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(2359), - [anon_sym_AMP_AMP] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_AMP_AMP] = ACTIONS(2363), [sym_comment] = ACTIONS(49), }, - [2199] = { - [sym_type_qualifier] = STATE(2199), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2199), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5874), + [2205] = { + [sym_type_qualifier] = STATE(2205), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2205), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5898), }, - [2200] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2206] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1267), - [anon_sym_COMMA] = ACTIONS(5196), - [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5210), + [anon_sym_SEMI] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_STAR] = ACTIONS(5877), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5877), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5879), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5901), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5901), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5903), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(1281), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(1283), [anon_sym_DASH] = ACTIONS(1283), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2201] = { - [sym__expression] = STATE(2478), - [sym_conditional_expression] = STATE(2478), - [sym_assignment_expression] = STATE(2478), - [sym_pointer_expression] = STATE(2478), - [sym_logical_expression] = STATE(2478), - [sym_bitwise_expression] = STATE(2478), - [sym_equality_expression] = STATE(2478), - [sym_relational_expression] = STATE(2478), - [sym_shift_expression] = STATE(2478), - [sym_math_expression] = STATE(2478), - [sym_cast_expression] = STATE(2478), - [sym_sizeof_expression] = STATE(2478), - [sym_subscript_expression] = STATE(2478), - [sym_call_expression] = STATE(2478), - [sym_field_expression] = STATE(2478), - [sym_compound_literal_expression] = STATE(2478), - [sym_parenthesized_expression] = STATE(2478), - [sym_concatenated_string] = STATE(2478), + [2207] = { + [sym__expression] = STATE(2488), + [sym_conditional_expression] = STATE(2488), + [sym_assignment_expression] = STATE(2488), + [sym_pointer_expression] = STATE(2488), + [sym_logical_expression] = STATE(2488), + [sym_bitwise_expression] = STATE(2488), + [sym_equality_expression] = STATE(2488), + [sym_relational_expression] = STATE(2488), + [sym_shift_expression] = STATE(2488), + [sym_math_expression] = STATE(2488), + [sym_cast_expression] = STATE(2488), + [sym_sizeof_expression] = STATE(2488), + [sym_subscript_expression] = STATE(2488), + [sym_call_expression] = STATE(2488), + [sym_field_expression] = STATE(2488), + [sym_compound_literal_expression] = STATE(2488), + [sym_parenthesized_expression] = STATE(2488), + [sym_concatenated_string] = STATE(2488), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2478), - [sym_new_expression] = STATE(2478), - [sym_delete_expression] = STATE(2478), - [sym_lambda_expression] = STATE(2478), + [sym_template_function] = STATE(2488), + [sym_new_expression] = STATE(2488), + [sym_delete_expression] = STATE(2488), + [sym_lambda_expression] = STATE(2488), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5881), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [sym_raw_string_literal] = ACTIONS(5905), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1279), [anon_sym_TILDE] = ACTIONS(1281), [anon_sym_PLUS] = ACTIONS(1283), @@ -87159,91 +87377,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(5881), - [sym_char_literal] = ACTIONS(5881), + [sym_number_literal] = ACTIONS(5905), + [sym_char_literal] = ACTIONS(5905), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(5883), - [sym_false] = ACTIONS(5883), - [sym_null] = ACTIONS(5883), + [sym_true] = ACTIONS(5907), + [sym_false] = ACTIONS(5907), + [sym_null] = ACTIONS(5907), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(5883), + [sym_nullptr] = ACTIONS(5907), }, - [2202] = { + [2208] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2203] = { - [sym__expression] = STATE(2479), - [sym_conditional_expression] = STATE(2479), - [sym_assignment_expression] = STATE(2479), - [sym_pointer_expression] = STATE(2479), - [sym_logical_expression] = STATE(2479), - [sym_bitwise_expression] = STATE(2479), - [sym_equality_expression] = STATE(2479), - [sym_relational_expression] = STATE(2479), - [sym_shift_expression] = STATE(2479), - [sym_math_expression] = STATE(2479), - [sym_cast_expression] = STATE(2479), - [sym_sizeof_expression] = STATE(2479), - [sym_subscript_expression] = STATE(2479), - [sym_call_expression] = STATE(2479), - [sym_field_expression] = STATE(2479), - [sym_compound_literal_expression] = STATE(2479), - [sym_parenthesized_expression] = STATE(2479), - [sym_concatenated_string] = STATE(2479), + [2209] = { + [sym__expression] = STATE(2489), + [sym_conditional_expression] = STATE(2489), + [sym_assignment_expression] = STATE(2489), + [sym_pointer_expression] = STATE(2489), + [sym_logical_expression] = STATE(2489), + [sym_bitwise_expression] = STATE(2489), + [sym_equality_expression] = STATE(2489), + [sym_relational_expression] = STATE(2489), + [sym_shift_expression] = STATE(2489), + [sym_math_expression] = STATE(2489), + [sym_cast_expression] = STATE(2489), + [sym_sizeof_expression] = STATE(2489), + [sym_subscript_expression] = STATE(2489), + [sym_call_expression] = STATE(2489), + [sym_field_expression] = STATE(2489), + [sym_compound_literal_expression] = STATE(2489), + [sym_parenthesized_expression] = STATE(2489), + [sym_concatenated_string] = STATE(2489), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2479), - [sym_new_expression] = STATE(2479), - [sym_delete_expression] = STATE(2479), - [sym_lambda_expression] = STATE(2479), + [sym_template_function] = STATE(2489), + [sym_new_expression] = STATE(2489), + [sym_delete_expression] = STATE(2489), + [sym_lambda_expression] = STATE(2489), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5885), + [sym_raw_string_literal] = ACTIONS(5909), [anon_sym_LPAREN] = ACTIONS(1267), [anon_sym_STAR] = ACTIONS(1275), [anon_sym_LBRACK] = ACTIONS(570), @@ -87255,99 +87473,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1285), [anon_sym_PLUS_PLUS] = ACTIONS(1285), [anon_sym_sizeof] = ACTIONS(1287), - [sym_number_literal] = ACTIONS(5885), - [sym_char_literal] = ACTIONS(5885), + [sym_number_literal] = ACTIONS(5909), + [sym_char_literal] = ACTIONS(5909), [sym_string_literal] = ACTIONS(1291), - [sym_true] = ACTIONS(5887), - [sym_false] = ACTIONS(5887), - [sym_null] = ACTIONS(5887), + [sym_true] = ACTIONS(5911), + [sym_false] = ACTIONS(5911), + [sym_null] = ACTIONS(5911), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2400), + [anon_sym_COLON_COLON] = ACTIONS(2402), [anon_sym_delete] = ACTIONS(1297), - [sym_nullptr] = ACTIONS(5887), + [sym_nullptr] = ACTIONS(5911), }, - [2204] = { - [anon_sym_LPAREN] = ACTIONS(5889), - [anon_sym_COMMA] = ACTIONS(5889), - [anon_sym_RPAREN] = ACTIONS(5889), - [anon_sym_SEMI] = ACTIONS(5889), - [anon_sym_LBRACE] = ACTIONS(5889), - [anon_sym_RBRACE] = ACTIONS(5889), - [anon_sym_STAR] = ACTIONS(5891), - [anon_sym_LBRACK] = ACTIONS(5889), - [anon_sym_RBRACK] = ACTIONS(5889), - [anon_sym_EQ] = ACTIONS(5891), - [anon_sym_COLON] = ACTIONS(5889), - [anon_sym_QMARK] = ACTIONS(5889), - [anon_sym_STAR_EQ] = ACTIONS(5889), - [anon_sym_SLASH_EQ] = ACTIONS(5889), - [anon_sym_PERCENT_EQ] = ACTIONS(5889), - [anon_sym_PLUS_EQ] = ACTIONS(5889), - [anon_sym_DASH_EQ] = ACTIONS(5889), - [anon_sym_LT_LT_EQ] = ACTIONS(5889), - [anon_sym_GT_GT_EQ] = ACTIONS(5889), - [anon_sym_AMP_EQ] = ACTIONS(5889), - [anon_sym_CARET_EQ] = ACTIONS(5889), - [anon_sym_PIPE_EQ] = ACTIONS(5889), - [anon_sym_AMP] = ACTIONS(5891), - [anon_sym_PIPE_PIPE] = ACTIONS(5889), - [anon_sym_AMP_AMP] = ACTIONS(5889), - [anon_sym_PIPE] = ACTIONS(5891), - [anon_sym_CARET] = ACTIONS(5891), - [anon_sym_EQ_EQ] = ACTIONS(5889), - [anon_sym_BANG_EQ] = ACTIONS(5889), - [anon_sym_LT] = ACTIONS(5891), - [anon_sym_GT] = ACTIONS(5891), - [anon_sym_LT_EQ] = ACTIONS(5889), - [anon_sym_GT_EQ] = ACTIONS(5889), - [anon_sym_LT_LT] = ACTIONS(5891), - [anon_sym_GT_GT] = ACTIONS(5891), - [anon_sym_PLUS] = ACTIONS(5891), - [anon_sym_DASH] = ACTIONS(5891), - [anon_sym_SLASH] = ACTIONS(5891), - [anon_sym_PERCENT] = ACTIONS(5891), - [anon_sym_DASH_DASH] = ACTIONS(5889), - [anon_sym_PLUS_PLUS] = ACTIONS(5889), - [anon_sym_DOT] = ACTIONS(5889), - [anon_sym_DASH_GT] = ACTIONS(5889), + [2210] = { + [anon_sym_LPAREN] = ACTIONS(5913), + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_RPAREN] = ACTIONS(5913), + [anon_sym_SEMI] = ACTIONS(5913), + [anon_sym_LBRACE] = ACTIONS(5913), + [anon_sym_RBRACE] = ACTIONS(5913), + [anon_sym_STAR] = ACTIONS(5915), + [anon_sym_LBRACK] = ACTIONS(5913), + [anon_sym_RBRACK] = ACTIONS(5913), + [anon_sym_EQ] = ACTIONS(5915), + [anon_sym_COLON] = ACTIONS(5913), + [anon_sym_QMARK] = ACTIONS(5913), + [anon_sym_STAR_EQ] = ACTIONS(5913), + [anon_sym_SLASH_EQ] = ACTIONS(5913), + [anon_sym_PERCENT_EQ] = ACTIONS(5913), + [anon_sym_PLUS_EQ] = ACTIONS(5913), + [anon_sym_DASH_EQ] = ACTIONS(5913), + [anon_sym_LT_LT_EQ] = ACTIONS(5913), + [anon_sym_GT_GT_EQ] = ACTIONS(5913), + [anon_sym_AMP_EQ] = ACTIONS(5913), + [anon_sym_CARET_EQ] = ACTIONS(5913), + [anon_sym_PIPE_EQ] = ACTIONS(5913), + [anon_sym_AMP] = ACTIONS(5915), + [anon_sym_PIPE_PIPE] = ACTIONS(5913), + [anon_sym_AMP_AMP] = ACTIONS(5913), + [anon_sym_PIPE] = ACTIONS(5915), + [anon_sym_CARET] = ACTIONS(5915), + [anon_sym_EQ_EQ] = ACTIONS(5913), + [anon_sym_BANG_EQ] = ACTIONS(5913), + [anon_sym_LT] = ACTIONS(5915), + [anon_sym_GT] = ACTIONS(5915), + [anon_sym_LT_EQ] = ACTIONS(5913), + [anon_sym_GT_EQ] = ACTIONS(5913), + [anon_sym_LT_LT] = ACTIONS(5915), + [anon_sym_GT_GT] = ACTIONS(5915), + [anon_sym_PLUS] = ACTIONS(5915), + [anon_sym_DASH] = ACTIONS(5915), + [anon_sym_SLASH] = ACTIONS(5915), + [anon_sym_PERCENT] = ACTIONS(5915), + [anon_sym_DASH_DASH] = ACTIONS(5913), + [anon_sym_PLUS_PLUS] = ACTIONS(5913), + [anon_sym_DOT] = ACTIONS(5913), + [anon_sym_DASH_GT] = ACTIONS(5913), [sym_comment] = ACTIONS(49), }, - [2205] = { - [sym__expression] = STATE(1777), - [sym_conditional_expression] = STATE(1777), - [sym_assignment_expression] = STATE(1777), - [sym_pointer_expression] = STATE(1777), - [sym_logical_expression] = STATE(1777), - [sym_bitwise_expression] = STATE(1777), - [sym_equality_expression] = STATE(1777), - [sym_relational_expression] = STATE(1777), - [sym_shift_expression] = STATE(1777), - [sym_math_expression] = STATE(1777), - [sym_cast_expression] = STATE(1777), - [sym_sizeof_expression] = STATE(1777), - [sym_subscript_expression] = STATE(1777), - [sym_call_expression] = STATE(1777), - [sym_field_expression] = STATE(1777), - [sym_compound_literal_expression] = STATE(1777), - [sym_parenthesized_expression] = STATE(1777), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), + [2211] = { + [sym__expression] = STATE(1780), + [sym_conditional_expression] = STATE(1780), + [sym_assignment_expression] = STATE(1780), + [sym_pointer_expression] = STATE(1780), + [sym_logical_expression] = STATE(1780), + [sym_bitwise_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_relational_expression] = STATE(1780), + [sym_shift_expression] = STATE(1780), + [sym_math_expression] = STATE(1780), + [sym_cast_expression] = STATE(1780), + [sym_sizeof_expression] = STATE(1780), + [sym_subscript_expression] = STATE(1780), + [sym_call_expression] = STATE(1780), + [sym_field_expression] = STATE(1780), + [sym_compound_literal_expression] = STATE(1780), + [sym_parenthesized_expression] = STATE(1780), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1777), + [sym_concatenated_string] = STATE(1780), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1777), - [sym_new_expression] = STATE(1777), - [sym_delete_expression] = STATE(1777), - [sym_lambda_expression] = STATE(1777), + [sym_template_function] = STATE(1780), + [sym_new_expression] = STATE(1780), + [sym_delete_expression] = STATE(1780), + [sym_lambda_expression] = STATE(1780), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3956), + [sym_raw_string_literal] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1325), @@ -87361,94 +87579,94 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3956), - [sym_char_literal] = ACTIONS(3956), + [sym_number_literal] = ACTIONS(3962), + [sym_char_literal] = ACTIONS(3962), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_null] = ACTIONS(3958), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_null] = ACTIONS(3964), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3958), + [sym_nullptr] = ACTIONS(3964), }, - [2206] = { - [anon_sym_LBRACK] = ACTIONS(5079), - [anon_sym_EQ] = ACTIONS(5079), - [anon_sym_DOT] = ACTIONS(5079), + [2212] = { + [anon_sym_LBRACK] = ACTIONS(5093), + [anon_sym_EQ] = ACTIONS(5093), + [anon_sym_DOT] = ACTIONS(5093), [sym_comment] = ACTIONS(49), }, - [2207] = { - [sym_parameter_list] = STATE(2209), + [2213] = { + [sym_parameter_list] = STATE(2215), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2208] = { - [sym_parameter_list] = STATE(2209), + [2214] = { + [sym_parameter_list] = STATE(2215), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3756), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2209] = { - [sym_type_qualifier] = STATE(2480), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2480), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2215] = { + [sym_type_qualifier] = STATE(2490), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2490), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2210] = { - [sym_type_qualifier] = STATE(2481), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2481), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), + [2216] = { + [sym_type_qualifier] = STATE(2491), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2491), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -87458,127 +87676,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1309), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5893), + [sym_noexcept] = ACTIONS(5917), }, - [2211] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2217] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1321), - [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(5196), - [anon_sym_STAR] = ACTIONS(5895), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5895), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5897), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5919), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5921), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(1329), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(1331), [anon_sym_DASH] = ACTIONS(1331), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2212] = { - [sym__expression] = STATE(2482), - [sym_conditional_expression] = STATE(2482), - [sym_assignment_expression] = STATE(2482), - [sym_pointer_expression] = STATE(2482), - [sym_logical_expression] = STATE(2482), - [sym_bitwise_expression] = STATE(2482), - [sym_equality_expression] = STATE(2482), - [sym_relational_expression] = STATE(2482), - [sym_shift_expression] = STATE(2482), - [sym_math_expression] = STATE(2482), - [sym_cast_expression] = STATE(2482), - [sym_sizeof_expression] = STATE(2482), - [sym_subscript_expression] = STATE(2482), - [sym_call_expression] = STATE(2482), - [sym_field_expression] = STATE(2482), - [sym_compound_literal_expression] = STATE(2482), - [sym_parenthesized_expression] = STATE(2482), - [sym_concatenated_string] = STATE(2482), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2482), - [sym_new_expression] = STATE(2482), - [sym_delete_expression] = STATE(2482), - [sym_lambda_expression] = STATE(2482), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5899), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [2218] = { + [sym__expression] = STATE(2492), + [sym_conditional_expression] = STATE(2492), + [sym_assignment_expression] = STATE(2492), + [sym_pointer_expression] = STATE(2492), + [sym_logical_expression] = STATE(2492), + [sym_bitwise_expression] = STATE(2492), + [sym_equality_expression] = STATE(2492), + [sym_relational_expression] = STATE(2492), + [sym_shift_expression] = STATE(2492), + [sym_math_expression] = STATE(2492), + [sym_cast_expression] = STATE(2492), + [sym_sizeof_expression] = STATE(2492), + [sym_subscript_expression] = STATE(2492), + [sym_call_expression] = STATE(2492), + [sym_field_expression] = STATE(2492), + [sym_compound_literal_expression] = STATE(2492), + [sym_parenthesized_expression] = STATE(2492), + [sym_concatenated_string] = STATE(2492), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2492), + [sym_new_expression] = STATE(2492), + [sym_delete_expression] = STATE(2492), + [sym_lambda_expression] = STATE(2492), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5923), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1327), [anon_sym_TILDE] = ACTIONS(1329), [anon_sym_PLUS] = ACTIONS(1331), @@ -87586,90 +87804,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(5899), - [sym_char_literal] = ACTIONS(5899), + [sym_number_literal] = ACTIONS(5923), + [sym_char_literal] = ACTIONS(5923), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(5901), - [sym_false] = ACTIONS(5901), - [sym_null] = ACTIONS(5901), + [sym_true] = ACTIONS(5925), + [sym_false] = ACTIONS(5925), + [sym_null] = ACTIONS(5925), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(5901), + [sym_nullptr] = ACTIONS(5925), }, - [2213] = { + [2219] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2214] = { - [sym__expression] = STATE(2483), - [sym_conditional_expression] = STATE(2483), - [sym_assignment_expression] = STATE(2483), - [sym_pointer_expression] = STATE(2483), - [sym_logical_expression] = STATE(2483), - [sym_bitwise_expression] = STATE(2483), - [sym_equality_expression] = STATE(2483), - [sym_relational_expression] = STATE(2483), - [sym_shift_expression] = STATE(2483), - [sym_math_expression] = STATE(2483), - [sym_cast_expression] = STATE(2483), - [sym_sizeof_expression] = STATE(2483), - [sym_subscript_expression] = STATE(2483), - [sym_call_expression] = STATE(2483), - [sym_field_expression] = STATE(2483), - [sym_compound_literal_expression] = STATE(2483), - [sym_parenthesized_expression] = STATE(2483), - [sym_concatenated_string] = STATE(2483), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2483), - [sym_new_expression] = STATE(2483), - [sym_delete_expression] = STATE(2483), - [sym_lambda_expression] = STATE(2483), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5903), + [2220] = { + [sym__expression] = STATE(2493), + [sym_conditional_expression] = STATE(2493), + [sym_assignment_expression] = STATE(2493), + [sym_pointer_expression] = STATE(2493), + [sym_logical_expression] = STATE(2493), + [sym_bitwise_expression] = STATE(2493), + [sym_equality_expression] = STATE(2493), + [sym_relational_expression] = STATE(2493), + [sym_shift_expression] = STATE(2493), + [sym_math_expression] = STATE(2493), + [sym_cast_expression] = STATE(2493), + [sym_sizeof_expression] = STATE(2493), + [sym_subscript_expression] = STATE(2493), + [sym_call_expression] = STATE(2493), + [sym_field_expression] = STATE(2493), + [sym_compound_literal_expression] = STATE(2493), + [sym_parenthesized_expression] = STATE(2493), + [sym_concatenated_string] = STATE(2493), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2493), + [sym_new_expression] = STATE(2493), + [sym_delete_expression] = STATE(2493), + [sym_lambda_expression] = STATE(2493), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5927), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(570), @@ -87681,137 +87899,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1333), [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), - [sym_number_literal] = ACTIONS(5903), - [sym_char_literal] = ACTIONS(5903), + [sym_number_literal] = ACTIONS(5927), + [sym_char_literal] = ACTIONS(5927), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(5905), - [sym_false] = ACTIONS(5905), - [sym_null] = ACTIONS(5905), + [sym_true] = ACTIONS(5929), + [sym_false] = ACTIONS(5929), + [sym_null] = ACTIONS(5929), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(5905), + [sym_nullptr] = ACTIONS(5929), }, - [2215] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2221] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(5196), + [anon_sym_SEMI] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5907), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5907), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5909), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5931), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5931), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5933), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(1353), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(1355), [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2216] = { - [sym__expression] = STATE(2484), - [sym_conditional_expression] = STATE(2484), - [sym_assignment_expression] = STATE(2484), - [sym_pointer_expression] = STATE(2484), - [sym_logical_expression] = STATE(2484), - [sym_bitwise_expression] = STATE(2484), - [sym_equality_expression] = STATE(2484), - [sym_relational_expression] = STATE(2484), - [sym_shift_expression] = STATE(2484), - [sym_math_expression] = STATE(2484), - [sym_cast_expression] = STATE(2484), - [sym_sizeof_expression] = STATE(2484), - [sym_subscript_expression] = STATE(2484), - [sym_call_expression] = STATE(2484), - [sym_field_expression] = STATE(2484), - [sym_compound_literal_expression] = STATE(2484), - [sym_parenthesized_expression] = STATE(2484), - [sym_concatenated_string] = STATE(2484), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2484), - [sym_new_expression] = STATE(2484), - [sym_delete_expression] = STATE(2484), - [sym_lambda_expression] = STATE(2484), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5911), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [2222] = { + [sym__expression] = STATE(2494), + [sym_conditional_expression] = STATE(2494), + [sym_assignment_expression] = STATE(2494), + [sym_pointer_expression] = STATE(2494), + [sym_logical_expression] = STATE(2494), + [sym_bitwise_expression] = STATE(2494), + [sym_equality_expression] = STATE(2494), + [sym_relational_expression] = STATE(2494), + [sym_shift_expression] = STATE(2494), + [sym_math_expression] = STATE(2494), + [sym_cast_expression] = STATE(2494), + [sym_sizeof_expression] = STATE(2494), + [sym_subscript_expression] = STATE(2494), + [sym_call_expression] = STATE(2494), + [sym_field_expression] = STATE(2494), + [sym_compound_literal_expression] = STATE(2494), + [sym_parenthesized_expression] = STATE(2494), + [sym_concatenated_string] = STATE(2494), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2494), + [sym_new_expression] = STATE(2494), + [sym_delete_expression] = STATE(2494), + [sym_lambda_expression] = STATE(2494), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5935), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1351), [anon_sym_TILDE] = ACTIONS(1353), [anon_sym_PLUS] = ACTIONS(1355), @@ -87819,89 +88037,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5911), - [sym_char_literal] = ACTIONS(5911), + [sym_number_literal] = ACTIONS(5935), + [sym_char_literal] = ACTIONS(5935), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5913), - [sym_false] = ACTIONS(5913), - [sym_null] = ACTIONS(5913), + [sym_true] = ACTIONS(5937), + [sym_false] = ACTIONS(5937), + [sym_null] = ACTIONS(5937), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5913), + [sym_nullptr] = ACTIONS(5937), }, - [2217] = { + [2223] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2218] = { - [sym__expression] = STATE(2485), - [sym_conditional_expression] = STATE(2485), - [sym_assignment_expression] = STATE(2485), - [sym_pointer_expression] = STATE(2485), - [sym_logical_expression] = STATE(2485), - [sym_bitwise_expression] = STATE(2485), - [sym_equality_expression] = STATE(2485), - [sym_relational_expression] = STATE(2485), - [sym_shift_expression] = STATE(2485), - [sym_math_expression] = STATE(2485), - [sym_cast_expression] = STATE(2485), - [sym_sizeof_expression] = STATE(2485), - [sym_subscript_expression] = STATE(2485), - [sym_call_expression] = STATE(2485), - [sym_field_expression] = STATE(2485), - [sym_compound_literal_expression] = STATE(2485), - [sym_parenthesized_expression] = STATE(2485), - [sym_concatenated_string] = STATE(2485), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2485), - [sym_new_expression] = STATE(2485), - [sym_delete_expression] = STATE(2485), - [sym_lambda_expression] = STATE(2485), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5915), + [2224] = { + [sym__expression] = STATE(2495), + [sym_conditional_expression] = STATE(2495), + [sym_assignment_expression] = STATE(2495), + [sym_pointer_expression] = STATE(2495), + [sym_logical_expression] = STATE(2495), + [sym_bitwise_expression] = STATE(2495), + [sym_equality_expression] = STATE(2495), + [sym_relational_expression] = STATE(2495), + [sym_shift_expression] = STATE(2495), + [sym_math_expression] = STATE(2495), + [sym_cast_expression] = STATE(2495), + [sym_sizeof_expression] = STATE(2495), + [sym_subscript_expression] = STATE(2495), + [sym_call_expression] = STATE(2495), + [sym_field_expression] = STATE(2495), + [sym_compound_literal_expression] = STATE(2495), + [sym_parenthesized_expression] = STATE(2495), + [sym_concatenated_string] = STATE(2495), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2495), + [sym_new_expression] = STATE(2495), + [sym_delete_expression] = STATE(2495), + [sym_lambda_expression] = STATE(2495), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5939), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -87913,75 +88131,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(5915), - [sym_char_literal] = ACTIONS(5915), + [sym_number_literal] = ACTIONS(5939), + [sym_char_literal] = ACTIONS(5939), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(5917), - [sym_false] = ACTIONS(5917), - [sym_null] = ACTIONS(5917), + [sym_true] = ACTIONS(5941), + [sym_false] = ACTIONS(5941), + [sym_null] = ACTIONS(5941), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(5917), + [sym_nullptr] = ACTIONS(5941), }, - [2219] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [2225] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2221), - [anon_sym_unsigned] = ACTIONS(5141), - [anon_sym_long] = ACTIONS(5141), - [anon_sym_short] = ACTIONS(5141), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(2227), + [anon_sym_unsigned] = ACTIONS(5155), + [anon_sym_long] = ACTIONS(5155), + [anon_sym_short] = ACTIONS(5155), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2470), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2470), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(5145), + [anon_sym_class] = ACTIONS(2472), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(5159), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2220] = { - [sym__abstract_declarator] = STATE(2488), - [sym_abstract_pointer_declarator] = STATE(2488), - [sym_abstract_function_declarator] = STATE(2488), - [sym_abstract_array_declarator] = STATE(2488), - [sym_parameter_list] = STATE(2489), - [sym_abstract_reference_declarator] = STATE(2488), + [2226] = { + [sym__abstract_declarator] = STATE(2498), + [sym_abstract_pointer_declarator] = STATE(2498), + [sym_abstract_function_declarator] = STATE(2498), + [sym_abstract_array_declarator] = STATE(2498), + [sym_parameter_list] = STATE(2499), + [sym_abstract_reference_declarator] = STATE(2498), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_RPAREN] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_RPAREN] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(5943), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(5921), - [anon_sym_AMP_AMP] = ACTIONS(5923), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(5945), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [2221] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2490), + [2227] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2500), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_RPAREN] = ACTIONS(238), @@ -87996,213 +88214,213 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(5925), - [anon_sym_long] = ACTIONS(5925), - [anon_sym_short] = ACTIONS(5925), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(5949), + [anon_sym_long] = ACTIONS(5949), + [anon_sym_short] = ACTIONS(5949), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [2222] = { - [sym_type_qualifier] = STATE(2222), - [sym_trailing_return_type] = STATE(2222), - [aux_sym_function_declarator_repeat1] = STATE(2222), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_EQ] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_DASH_GT] = ACTIONS(5927), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5930), + [2228] = { + [sym_type_qualifier] = STATE(2228), + [sym_trailing_return_type] = STATE(2228), + [aux_sym_function_declarator_repeat1] = STATE(2228), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_RPAREN] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_DASH_GT] = ACTIONS(5951), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5954), }, - [2223] = { - [sym__abstract_declarator] = STATE(1256), - [sym_abstract_pointer_declarator] = STATE(1256), - [sym_abstract_function_declarator] = STATE(1256), - [sym_abstract_array_declarator] = STATE(1256), + [2229] = { + [sym__abstract_declarator] = STATE(1257), + [sym_abstract_pointer_declarator] = STATE(1257), + [sym_abstract_function_declarator] = STATE(1257), + [sym_abstract_array_declarator] = STATE(1257), [sym_parameter_list] = STATE(713), - [sym_abstract_reference_declarator] = STATE(1256), + [sym_abstract_reference_declarator] = STATE(1257), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(5163), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5167), [sym_comment] = ACTIONS(49), }, - [2224] = { - [sym__abstract_declarator] = STATE(1258), - [sym_abstract_pointer_declarator] = STATE(1258), - [sym_abstract_function_declarator] = STATE(1258), - [sym_abstract_array_declarator] = STATE(1258), + [2230] = { + [sym__abstract_declarator] = STATE(1259), + [sym_abstract_pointer_declarator] = STATE(1259), + [sym_abstract_function_declarator] = STATE(1259), + [sym_abstract_array_declarator] = STATE(1259), [sym_parameter_list] = STATE(713), - [sym_abstract_reference_declarator] = STATE(1258), + [sym_abstract_reference_declarator] = STATE(1259), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(5149), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(5163), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5151), - [anon_sym_AMP_AMP] = ACTIONS(5153), + [anon_sym_AMP] = ACTIONS(5165), + [anon_sym_AMP_AMP] = ACTIONS(5167), [sym_comment] = ACTIONS(49), }, - [2225] = { - [sym_parameter_list] = STATE(1261), + [2231] = { + [sym_parameter_list] = STATE(1262), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_RPAREN] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2226] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2226), + [2232] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2232), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_RPAREN] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(5933), - [anon_sym_long] = ACTIONS(5933), - [anon_sym_short] = ACTIONS(5933), + [anon_sym_unsigned] = ACTIONS(5957), + [anon_sym_long] = ACTIONS(5957), + [anon_sym_short] = ACTIONS(5957), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [2227] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), + [2233] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), [anon_sym_LPAREN] = ACTIONS(1419), - [anon_sym_COMMA] = ACTIONS(5196), + [anon_sym_COMMA] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(5936), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(5196), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(5936), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(5938), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), + [anon_sym_STAR] = ACTIONS(5960), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_RBRACK] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(5960), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(5962), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), [anon_sym_TILDE] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), [anon_sym_PLUS] = ACTIONS(1433), [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(4141), + [sym_nullptr] = ACTIONS(4147), }, - [2228] = { - [sym__expression] = STATE(2491), - [sym_conditional_expression] = STATE(2491), - [sym_assignment_expression] = STATE(2491), - [sym_pointer_expression] = STATE(2491), - [sym_logical_expression] = STATE(2491), - [sym_bitwise_expression] = STATE(2491), - [sym_equality_expression] = STATE(2491), - [sym_relational_expression] = STATE(2491), - [sym_shift_expression] = STATE(2491), - [sym_math_expression] = STATE(2491), - [sym_cast_expression] = STATE(2491), - [sym_sizeof_expression] = STATE(2491), - [sym_subscript_expression] = STATE(2491), - [sym_call_expression] = STATE(2491), - [sym_field_expression] = STATE(2491), - [sym_compound_literal_expression] = STATE(2491), - [sym_parenthesized_expression] = STATE(2491), - [sym_concatenated_string] = STATE(2491), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2491), - [sym_new_expression] = STATE(2491), - [sym_delete_expression] = STATE(2491), - [sym_lambda_expression] = STATE(2491), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5940), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), + [2234] = { + [sym__expression] = STATE(2501), + [sym_conditional_expression] = STATE(2501), + [sym_assignment_expression] = STATE(2501), + [sym_pointer_expression] = STATE(2501), + [sym_logical_expression] = STATE(2501), + [sym_bitwise_expression] = STATE(2501), + [sym_equality_expression] = STATE(2501), + [sym_relational_expression] = STATE(2501), + [sym_shift_expression] = STATE(2501), + [sym_math_expression] = STATE(2501), + [sym_cast_expression] = STATE(2501), + [sym_sizeof_expression] = STATE(2501), + [sym_subscript_expression] = STATE(2501), + [sym_call_expression] = STATE(2501), + [sym_field_expression] = STATE(2501), + [sym_compound_literal_expression] = STATE(2501), + [sym_parenthesized_expression] = STATE(2501), + [sym_concatenated_string] = STATE(2501), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2501), + [sym_new_expression] = STATE(2501), + [sym_delete_expression] = STATE(2501), + [sym_lambda_expression] = STATE(2501), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5964), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), [anon_sym_BANG] = ACTIONS(1429), [anon_sym_TILDE] = ACTIONS(1431), [anon_sym_PLUS] = ACTIONS(1433), @@ -88210,90 +88428,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(5940), - [sym_char_literal] = ACTIONS(5940), + [sym_number_literal] = ACTIONS(5964), + [sym_char_literal] = ACTIONS(5964), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(5942), - [sym_false] = ACTIONS(5942), - [sym_null] = ACTIONS(5942), + [sym_true] = ACTIONS(5966), + [sym_false] = ACTIONS(5966), + [sym_null] = ACTIONS(5966), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(5942), + [sym_nullptr] = ACTIONS(5966), }, - [2229] = { + [2235] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2230] = { - [sym__expression] = STATE(2492), - [sym_conditional_expression] = STATE(2492), - [sym_assignment_expression] = STATE(2492), - [sym_pointer_expression] = STATE(2492), - [sym_logical_expression] = STATE(2492), - [sym_bitwise_expression] = STATE(2492), - [sym_equality_expression] = STATE(2492), - [sym_relational_expression] = STATE(2492), - [sym_shift_expression] = STATE(2492), - [sym_math_expression] = STATE(2492), - [sym_cast_expression] = STATE(2492), - [sym_sizeof_expression] = STATE(2492), - [sym_subscript_expression] = STATE(2492), - [sym_call_expression] = STATE(2492), - [sym_field_expression] = STATE(2492), - [sym_compound_literal_expression] = STATE(2492), - [sym_parenthesized_expression] = STATE(2492), - [sym_concatenated_string] = STATE(2492), + [2236] = { + [sym__expression] = STATE(2502), + [sym_conditional_expression] = STATE(2502), + [sym_assignment_expression] = STATE(2502), + [sym_pointer_expression] = STATE(2502), + [sym_logical_expression] = STATE(2502), + [sym_bitwise_expression] = STATE(2502), + [sym_equality_expression] = STATE(2502), + [sym_relational_expression] = STATE(2502), + [sym_shift_expression] = STATE(2502), + [sym_math_expression] = STATE(2502), + [sym_cast_expression] = STATE(2502), + [sym_sizeof_expression] = STATE(2502), + [sym_subscript_expression] = STATE(2502), + [sym_call_expression] = STATE(2502), + [sym_field_expression] = STATE(2502), + [sym_compound_literal_expression] = STATE(2502), + [sym_parenthesized_expression] = STATE(2502), + [sym_concatenated_string] = STATE(2502), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2492), - [sym_new_expression] = STATE(2492), - [sym_delete_expression] = STATE(2492), - [sym_lambda_expression] = STATE(2492), + [sym_template_function] = STATE(2502), + [sym_new_expression] = STATE(2502), + [sym_delete_expression] = STATE(2502), + [sym_lambda_expression] = STATE(2502), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5944), + [sym_raw_string_literal] = ACTIONS(5968), [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), @@ -88305,245 +88523,245 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1435), [anon_sym_PLUS_PLUS] = ACTIONS(1435), [anon_sym_sizeof] = ACTIONS(1437), - [sym_number_literal] = ACTIONS(5944), - [sym_char_literal] = ACTIONS(5944), + [sym_number_literal] = ACTIONS(5968), + [sym_char_literal] = ACTIONS(5968), [sym_string_literal] = ACTIONS(1439), - [sym_true] = ACTIONS(5946), - [sym_false] = ACTIONS(5946), - [sym_null] = ACTIONS(5946), + [sym_true] = ACTIONS(5970), + [sym_false] = ACTIONS(5970), + [sym_null] = ACTIONS(5970), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1443), [anon_sym_delete] = ACTIONS(1445), - [sym_nullptr] = ACTIONS(5946), + [sym_nullptr] = ACTIONS(5970), }, - [2231] = { - [sym_raw_string_literal] = ACTIONS(3533), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_extern] = ACTIONS(3535), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_static] = ACTIONS(3535), - [anon_sym_register] = ACTIONS(3535), - [anon_sym_inline] = ACTIONS(3535), - [anon_sym_const] = ACTIONS(3535), - [anon_sym_restrict] = ACTIONS(3535), - [anon_sym_volatile] = ACTIONS(3535), - [anon_sym__Atomic] = ACTIONS(3535), - [anon_sym_mutable] = ACTIONS(3535), - [anon_sym_explicit] = ACTIONS(3535), - [anon_sym_constexpr] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3533), - [anon_sym_BANG] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_DASH_DASH] = ACTIONS(3533), - [anon_sym_PLUS_PLUS] = ACTIONS(3533), - [anon_sym_sizeof] = ACTIONS(3535), - [sym_number_literal] = ACTIONS(3533), - [sym_char_literal] = ACTIONS(3533), - [sym_string_literal] = ACTIONS(3533), - [sym_true] = ACTIONS(3535), - [sym_false] = ACTIONS(3535), - [sym_null] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3535), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_delete] = ACTIONS(3535), - [sym_nullptr] = ACTIONS(3535), + [2237] = { + [sym_raw_string_literal] = ACTIONS(3539), + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_extern] = ACTIONS(3541), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_RBRACK] = ACTIONS(3539), + [anon_sym_static] = ACTIONS(3541), + [anon_sym_register] = ACTIONS(3541), + [anon_sym_inline] = ACTIONS(3541), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3541), + [anon_sym_volatile] = ACTIONS(3541), + [anon_sym__Atomic] = ACTIONS(3541), + [anon_sym_mutable] = ACTIONS(3541), + [anon_sym_explicit] = ACTIONS(3541), + [anon_sym_constexpr] = ACTIONS(3541), + [anon_sym_AMP] = ACTIONS(3539), + [anon_sym_BANG] = ACTIONS(3539), + [anon_sym_TILDE] = ACTIONS(3539), + [anon_sym_PLUS] = ACTIONS(3541), + [anon_sym_DASH] = ACTIONS(3541), + [anon_sym_DASH_DASH] = ACTIONS(3539), + [anon_sym_PLUS_PLUS] = ACTIONS(3539), + [anon_sym_sizeof] = ACTIONS(3541), + [sym_number_literal] = ACTIONS(3539), + [sym_char_literal] = ACTIONS(3539), + [sym_string_literal] = ACTIONS(3539), + [sym_true] = ACTIONS(3541), + [sym_false] = ACTIONS(3541), + [sym_null] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3541), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(3541), + [anon_sym_COLON_COLON] = ACTIONS(3539), + [anon_sym_delete] = ACTIONS(3541), + [sym_nullptr] = ACTIONS(3541), }, - [2232] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(5948), + [2238] = { + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(5972), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [2233] = { - [sym_raw_string_literal] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_extern] = ACTIONS(3772), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_RBRACK] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3772), - [anon_sym_static] = ACTIONS(3772), - [anon_sym_register] = ACTIONS(3772), - [anon_sym_inline] = ACTIONS(3772), - [anon_sym_const] = ACTIONS(3772), - [anon_sym_restrict] = ACTIONS(3772), - [anon_sym_volatile] = ACTIONS(3772), - [anon_sym__Atomic] = ACTIONS(3772), - [anon_sym_mutable] = ACTIONS(3772), - [anon_sym_explicit] = ACTIONS(3772), - [anon_sym_constexpr] = ACTIONS(3772), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_STAR_EQ] = ACTIONS(3770), - [anon_sym_SLASH_EQ] = ACTIONS(3770), - [anon_sym_PERCENT_EQ] = ACTIONS(3770), - [anon_sym_PLUS_EQ] = ACTIONS(3770), - [anon_sym_DASH_EQ] = ACTIONS(3770), - [anon_sym_LT_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_GT_EQ] = ACTIONS(3770), - [anon_sym_AMP_EQ] = ACTIONS(3770), - [anon_sym_CARET_EQ] = ACTIONS(3770), - [anon_sym_PIPE_EQ] = ACTIONS(3770), - [anon_sym_AMP] = ACTIONS(3772), - [anon_sym_PIPE_PIPE] = ACTIONS(3770), - [anon_sym_AMP_AMP] = ACTIONS(3770), - [anon_sym_BANG] = ACTIONS(3772), - [anon_sym_PIPE] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(3772), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_EQ_EQ] = ACTIONS(3770), - [anon_sym_BANG_EQ] = ACTIONS(3770), - [anon_sym_LT] = ACTIONS(3772), - [anon_sym_GT] = ACTIONS(3772), - [anon_sym_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_EQ] = ACTIONS(3770), - [anon_sym_LT_LT] = ACTIONS(3772), - [anon_sym_GT_GT] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_SLASH] = ACTIONS(3772), - [anon_sym_PERCENT] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(3770), - [anon_sym_PLUS_PLUS] = ACTIONS(3770), - [anon_sym_sizeof] = ACTIONS(3772), - [anon_sym_DOT] = ACTIONS(3770), - [anon_sym_DASH_GT] = ACTIONS(3770), - [sym_number_literal] = ACTIONS(3770), - [sym_char_literal] = ACTIONS(3770), - [sym_string_literal] = ACTIONS(3770), - [sym_true] = ACTIONS(3772), - [sym_false] = ACTIONS(3772), - [sym_null] = ACTIONS(3772), - [sym_identifier] = ACTIONS(3772), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(3772), - [anon_sym_COLON_COLON] = ACTIONS(3770), - [anon_sym_delete] = ACTIONS(3772), - [sym_nullptr] = ACTIONS(3772), + [2239] = { + [sym_raw_string_literal] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3776), + [anon_sym_STAR_EQ] = ACTIONS(3776), + [anon_sym_SLASH_EQ] = ACTIONS(3776), + [anon_sym_PERCENT_EQ] = ACTIONS(3776), + [anon_sym_PLUS_EQ] = ACTIONS(3776), + [anon_sym_DASH_EQ] = ACTIONS(3776), + [anon_sym_LT_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_GT_EQ] = ACTIONS(3776), + [anon_sym_AMP_EQ] = ACTIONS(3776), + [anon_sym_CARET_EQ] = ACTIONS(3776), + [anon_sym_PIPE_EQ] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3778), + [anon_sym_PIPE] = ACTIONS(3778), + [anon_sym_CARET] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LT_LT] = ACTIONS(3778), + [anon_sym_GT_GT] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_SLASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3778), + [anon_sym_DOT] = ACTIONS(3776), + [anon_sym_DASH_GT] = ACTIONS(3776), + [sym_number_literal] = ACTIONS(3776), + [sym_char_literal] = ACTIONS(3776), + [sym_string_literal] = ACTIONS(3776), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [sym_null] = ACTIONS(3778), + [sym_identifier] = ACTIONS(3778), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_delete] = ACTIONS(3778), + [sym_nullptr] = ACTIONS(3778), }, - [2234] = { - [sym_new_declarator] = STATE(2494), - [anon_sym_LPAREN] = ACTIONS(5950), - [anon_sym_LBRACE] = ACTIONS(5950), - [anon_sym_LBRACK] = ACTIONS(2721), + [2240] = { + [sym_new_declarator] = STATE(2504), + [anon_sym_LPAREN] = ACTIONS(5974), + [anon_sym_LBRACE] = ACTIONS(5974), + [anon_sym_LBRACK] = ACTIONS(2723), [sym_comment] = ACTIONS(49), }, - [2235] = { - [anon_sym_LPAREN] = ACTIONS(5952), - [anon_sym_COMMA] = ACTIONS(5952), - [anon_sym_RPAREN] = ACTIONS(5952), - [anon_sym_SEMI] = ACTIONS(5952), - [anon_sym_RBRACE] = ACTIONS(5952), - [anon_sym_STAR] = ACTIONS(5954), - [anon_sym_LBRACK] = ACTIONS(5952), - [anon_sym_RBRACK] = ACTIONS(5952), - [anon_sym_EQ] = ACTIONS(5954), - [anon_sym_COLON] = ACTIONS(5952), - [anon_sym_QMARK] = ACTIONS(5952), - [anon_sym_STAR_EQ] = ACTIONS(5952), - [anon_sym_SLASH_EQ] = ACTIONS(5952), - [anon_sym_PERCENT_EQ] = ACTIONS(5952), - [anon_sym_PLUS_EQ] = ACTIONS(5952), - [anon_sym_DASH_EQ] = ACTIONS(5952), - [anon_sym_LT_LT_EQ] = ACTIONS(5952), - [anon_sym_GT_GT_EQ] = ACTIONS(5952), - [anon_sym_AMP_EQ] = ACTIONS(5952), - [anon_sym_CARET_EQ] = ACTIONS(5952), - [anon_sym_PIPE_EQ] = ACTIONS(5952), - [anon_sym_AMP] = ACTIONS(5954), - [anon_sym_PIPE_PIPE] = ACTIONS(5952), - [anon_sym_AMP_AMP] = ACTIONS(5952), - [anon_sym_PIPE] = ACTIONS(5954), - [anon_sym_CARET] = ACTIONS(5954), - [anon_sym_EQ_EQ] = ACTIONS(5952), - [anon_sym_BANG_EQ] = ACTIONS(5952), - [anon_sym_LT] = ACTIONS(5954), - [anon_sym_GT] = ACTIONS(5954), - [anon_sym_LT_EQ] = ACTIONS(5952), - [anon_sym_GT_EQ] = ACTIONS(5952), - [anon_sym_LT_LT] = ACTIONS(5954), - [anon_sym_GT_GT] = ACTIONS(5954), - [anon_sym_PLUS] = ACTIONS(5954), - [anon_sym_DASH] = ACTIONS(5954), - [anon_sym_SLASH] = ACTIONS(5954), - [anon_sym_PERCENT] = ACTIONS(5954), - [anon_sym_DASH_DASH] = ACTIONS(5952), - [anon_sym_PLUS_PLUS] = ACTIONS(5952), - [anon_sym_DOT] = ACTIONS(5952), - [anon_sym_DASH_GT] = ACTIONS(5952), + [2241] = { + [anon_sym_LPAREN] = ACTIONS(5976), + [anon_sym_COMMA] = ACTIONS(5976), + [anon_sym_RPAREN] = ACTIONS(5976), + [anon_sym_SEMI] = ACTIONS(5976), + [anon_sym_RBRACE] = ACTIONS(5976), + [anon_sym_STAR] = ACTIONS(5978), + [anon_sym_LBRACK] = ACTIONS(5976), + [anon_sym_RBRACK] = ACTIONS(5976), + [anon_sym_EQ] = ACTIONS(5978), + [anon_sym_COLON] = ACTIONS(5976), + [anon_sym_QMARK] = ACTIONS(5976), + [anon_sym_STAR_EQ] = ACTIONS(5976), + [anon_sym_SLASH_EQ] = ACTIONS(5976), + [anon_sym_PERCENT_EQ] = ACTIONS(5976), + [anon_sym_PLUS_EQ] = ACTIONS(5976), + [anon_sym_DASH_EQ] = ACTIONS(5976), + [anon_sym_LT_LT_EQ] = ACTIONS(5976), + [anon_sym_GT_GT_EQ] = ACTIONS(5976), + [anon_sym_AMP_EQ] = ACTIONS(5976), + [anon_sym_CARET_EQ] = ACTIONS(5976), + [anon_sym_PIPE_EQ] = ACTIONS(5976), + [anon_sym_AMP] = ACTIONS(5978), + [anon_sym_PIPE_PIPE] = ACTIONS(5976), + [anon_sym_AMP_AMP] = ACTIONS(5976), + [anon_sym_PIPE] = ACTIONS(5978), + [anon_sym_CARET] = ACTIONS(5978), + [anon_sym_EQ_EQ] = ACTIONS(5976), + [anon_sym_BANG_EQ] = ACTIONS(5976), + [anon_sym_LT] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(5978), + [anon_sym_LT_EQ] = ACTIONS(5976), + [anon_sym_GT_EQ] = ACTIONS(5976), + [anon_sym_LT_LT] = ACTIONS(5978), + [anon_sym_GT_GT] = ACTIONS(5978), + [anon_sym_PLUS] = ACTIONS(5978), + [anon_sym_DASH] = ACTIONS(5978), + [anon_sym_SLASH] = ACTIONS(5978), + [anon_sym_PERCENT] = ACTIONS(5978), + [anon_sym_DASH_DASH] = ACTIONS(5976), + [anon_sym_PLUS_PLUS] = ACTIONS(5976), + [anon_sym_DOT] = ACTIONS(5976), + [anon_sym_DASH_GT] = ACTIONS(5976), [sym_comment] = ACTIONS(49), }, - [2236] = { - [anon_sym_LPAREN] = ACTIONS(5956), - [anon_sym_COMMA] = ACTIONS(5956), - [anon_sym_RPAREN] = ACTIONS(5956), - [anon_sym_SEMI] = ACTIONS(5956), - [anon_sym_RBRACE] = ACTIONS(5956), - [anon_sym_STAR] = ACTIONS(5958), - [anon_sym_LBRACK] = ACTIONS(5956), - [anon_sym_RBRACK] = ACTIONS(5956), - [anon_sym_EQ] = ACTIONS(5958), - [anon_sym_COLON] = ACTIONS(5956), - [anon_sym_QMARK] = ACTIONS(5956), - [anon_sym_STAR_EQ] = ACTIONS(5956), - [anon_sym_SLASH_EQ] = ACTIONS(5956), - [anon_sym_PERCENT_EQ] = ACTIONS(5956), - [anon_sym_PLUS_EQ] = ACTIONS(5956), - [anon_sym_DASH_EQ] = ACTIONS(5956), - [anon_sym_LT_LT_EQ] = ACTIONS(5956), - [anon_sym_GT_GT_EQ] = ACTIONS(5956), - [anon_sym_AMP_EQ] = ACTIONS(5956), - [anon_sym_CARET_EQ] = ACTIONS(5956), - [anon_sym_PIPE_EQ] = ACTIONS(5956), - [anon_sym_AMP] = ACTIONS(5958), - [anon_sym_PIPE_PIPE] = ACTIONS(5956), - [anon_sym_AMP_AMP] = ACTIONS(5956), - [anon_sym_PIPE] = ACTIONS(5958), - [anon_sym_CARET] = ACTIONS(5958), - [anon_sym_EQ_EQ] = ACTIONS(5956), - [anon_sym_BANG_EQ] = ACTIONS(5956), - [anon_sym_LT] = ACTIONS(5958), - [anon_sym_GT] = ACTIONS(5958), - [anon_sym_LT_EQ] = ACTIONS(5956), - [anon_sym_GT_EQ] = ACTIONS(5956), - [anon_sym_LT_LT] = ACTIONS(5958), - [anon_sym_GT_GT] = ACTIONS(5958), - [anon_sym_PLUS] = ACTIONS(5958), - [anon_sym_DASH] = ACTIONS(5958), - [anon_sym_SLASH] = ACTIONS(5958), - [anon_sym_PERCENT] = ACTIONS(5958), - [anon_sym_DASH_DASH] = ACTIONS(5956), - [anon_sym_PLUS_PLUS] = ACTIONS(5956), - [anon_sym_DOT] = ACTIONS(5956), - [anon_sym_DASH_GT] = ACTIONS(5956), + [2242] = { + [anon_sym_LPAREN] = ACTIONS(5980), + [anon_sym_COMMA] = ACTIONS(5980), + [anon_sym_RPAREN] = ACTIONS(5980), + [anon_sym_SEMI] = ACTIONS(5980), + [anon_sym_RBRACE] = ACTIONS(5980), + [anon_sym_STAR] = ACTIONS(5982), + [anon_sym_LBRACK] = ACTIONS(5980), + [anon_sym_RBRACK] = ACTIONS(5980), + [anon_sym_EQ] = ACTIONS(5982), + [anon_sym_COLON] = ACTIONS(5980), + [anon_sym_QMARK] = ACTIONS(5980), + [anon_sym_STAR_EQ] = ACTIONS(5980), + [anon_sym_SLASH_EQ] = ACTIONS(5980), + [anon_sym_PERCENT_EQ] = ACTIONS(5980), + [anon_sym_PLUS_EQ] = ACTIONS(5980), + [anon_sym_DASH_EQ] = ACTIONS(5980), + [anon_sym_LT_LT_EQ] = ACTIONS(5980), + [anon_sym_GT_GT_EQ] = ACTIONS(5980), + [anon_sym_AMP_EQ] = ACTIONS(5980), + [anon_sym_CARET_EQ] = ACTIONS(5980), + [anon_sym_PIPE_EQ] = ACTIONS(5980), + [anon_sym_AMP] = ACTIONS(5982), + [anon_sym_PIPE_PIPE] = ACTIONS(5980), + [anon_sym_AMP_AMP] = ACTIONS(5980), + [anon_sym_PIPE] = ACTIONS(5982), + [anon_sym_CARET] = ACTIONS(5982), + [anon_sym_EQ_EQ] = ACTIONS(5980), + [anon_sym_BANG_EQ] = ACTIONS(5980), + [anon_sym_LT] = ACTIONS(5982), + [anon_sym_GT] = ACTIONS(5982), + [anon_sym_LT_EQ] = ACTIONS(5980), + [anon_sym_GT_EQ] = ACTIONS(5980), + [anon_sym_LT_LT] = ACTIONS(5982), + [anon_sym_GT_GT] = ACTIONS(5982), + [anon_sym_PLUS] = ACTIONS(5982), + [anon_sym_DASH] = ACTIONS(5982), + [anon_sym_SLASH] = ACTIONS(5982), + [anon_sym_PERCENT] = ACTIONS(5982), + [anon_sym_DASH_DASH] = ACTIONS(5980), + [anon_sym_PLUS_PLUS] = ACTIONS(5980), + [anon_sym_DOT] = ACTIONS(5980), + [anon_sym_DASH_GT] = ACTIONS(5980), [sym_comment] = ACTIONS(49), }, - [2237] = { + [2243] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5960), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), [anon_sym_AMP] = ACTIONS(1532), [anon_sym_PIPE_PIPE] = ACTIONS(1534), [anon_sym_AMP_AMP] = ACTIONS(1536), @@ -88567,12 +88785,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2238] = { + [2244] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_STAR] = ACTIONS(1522), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5964), + [anon_sym_RBRACK] = ACTIONS(5988), [anon_sym_EQ] = ACTIONS(1526), [anon_sym_QMARK] = ACTIONS(1528), [anon_sym_STAR_EQ] = ACTIONS(1530), @@ -88608,12 +88826,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2239] = { - [sym_type_qualifier] = STATE(2243), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2243), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2245] = { + [sym_type_qualifier] = STATE(2249), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2249), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -88621,11 +88839,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4314), + [anon_sym_DASH_GT] = ACTIONS(4320), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5242), + [sym_noexcept] = ACTIONS(5256), }, - [2240] = { + [2246] = { [sym__type_specifier] = STATE(93), [sym_sized_type_specifier] = STATE(93), [sym_enum_specifier] = STATE(93), @@ -88637,10 +88855,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(34), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_sized_type_specifier_repeat1] = STATE(2242), - [anon_sym_unsigned] = ACTIONS(5236), - [anon_sym_long] = ACTIONS(5236), - [anon_sym_short] = ACTIONS(5236), + [aux_sym_sized_type_specifier_repeat1] = STATE(2248), + [anon_sym_unsigned] = ACTIONS(5250), + [anon_sym_long] = ACTIONS(5250), + [anon_sym_short] = ACTIONS(5250), [sym_primitive_type] = ACTIONS(150), [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(428), @@ -88649,16 +88867,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(436), [sym_auto] = ACTIONS(150), - [anon_sym_typename] = ACTIONS(5240), + [anon_sym_typename] = ACTIONS(5254), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2241] = { - [sym__abstract_declarator] = STATE(1344), - [sym_abstract_pointer_declarator] = STATE(1344), - [sym_abstract_function_declarator] = STATE(1344), - [sym_abstract_array_declarator] = STATE(1344), - [sym_parameter_list] = STATE(1345), - [sym_abstract_reference_declarator] = STATE(1344), + [2247] = { + [sym__abstract_declarator] = STATE(1345), + [sym_abstract_pointer_declarator] = STATE(1345), + [sym_abstract_function_declarator] = STATE(1345), + [sym_abstract_array_declarator] = STATE(1345), + [sym_parameter_list] = STATE(1346), + [sym_abstract_reference_declarator] = STATE(1345), [anon_sym_LPAREN] = ACTIONS(1115), [anon_sym_STAR] = ACTIONS(1558), [anon_sym_LBRACK] = ACTIONS(1121), @@ -88666,37 +88884,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(1562), [sym_comment] = ACTIONS(49), }, - [2242] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2495), + [2248] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2505), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_STAR] = ACTIONS(238), [anon_sym_LBRACK] = ACTIONS(238), - [anon_sym_unsigned] = ACTIONS(5966), - [anon_sym_long] = ACTIONS(5966), - [anon_sym_short] = ACTIONS(5966), + [anon_sym_unsigned] = ACTIONS(5990), + [anon_sym_long] = ACTIONS(5990), + [anon_sym_short] = ACTIONS(5990), [sym_primitive_type] = ACTIONS(244), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [sym_identifier] = ACTIONS(1135), [sym_comment] = ACTIONS(49), }, - [2243] = { - [sym_type_qualifier] = STATE(2243), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2243), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5968), + [2249] = { + [sym_type_qualifier] = STATE(2249), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2249), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(5992), }, - [2244] = { + [2250] = { [sym_enumerator_list] = STATE(230), [anon_sym_LPAREN] = ACTIONS(350), [anon_sym_LBRACE] = ACTIONS(350), @@ -88706,7 +88924,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(350), [sym_comment] = ACTIONS(49), }, - [2245] = { + [2251] = { [sym_field_declaration_list] = STATE(265), [sym_base_class_clause] = STATE(266), [anon_sym_LPAREN] = ACTIONS(406), @@ -88718,7 +88936,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(406), [sym_comment] = ACTIONS(49), }, - [2246] = { + [2252] = { [sym_field_declaration_list] = STATE(268), [sym_base_class_clause] = STATE(269), [anon_sym_LPAREN] = ACTIONS(416), @@ -88730,7 +88948,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(416), [sym_comment] = ACTIONS(49), }, - [2247] = { + [2253] = { [sym_field_declaration_list] = STATE(283), [sym_base_class_clause] = STATE(284), [anon_sym_LPAREN] = ACTIONS(451), @@ -88742,329 +88960,329 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP] = ACTIONS(451), [sym_comment] = ACTIONS(49), }, - [2248] = { - [sym__abstract_declarator] = STATE(2496), - [sym_abstract_pointer_declarator] = STATE(2496), - [sym_abstract_function_declarator] = STATE(2496), - [sym_abstract_array_declarator] = STATE(2496), + [2254] = { + [sym__abstract_declarator] = STATE(2506), + [sym_abstract_pointer_declarator] = STATE(2506), + [sym_abstract_function_declarator] = STATE(2506), + [sym_abstract_array_declarator] = STATE(2506), [sym_parameter_list] = STATE(809), - [sym_abstract_reference_declarator] = STATE(2496), + [sym_abstract_reference_declarator] = STATE(2506), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(5260), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_AMP_AMP] = ACTIONS(5264), [sym_comment] = ACTIONS(49), }, - [2249] = { - [sym__abstract_declarator] = STATE(2497), - [sym_abstract_pointer_declarator] = STATE(2497), - [sym_abstract_function_declarator] = STATE(2497), - [sym_abstract_array_declarator] = STATE(2497), + [2255] = { + [sym__abstract_declarator] = STATE(2507), + [sym_abstract_pointer_declarator] = STATE(2507), + [sym_abstract_function_declarator] = STATE(2507), + [sym_abstract_array_declarator] = STATE(2507), [sym_parameter_list] = STATE(809), - [sym_abstract_reference_declarator] = STATE(2497), + [sym_abstract_reference_declarator] = STATE(2507), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(5246), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(5260), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(5248), - [anon_sym_AMP_AMP] = ACTIONS(5250), + [anon_sym_AMP] = ACTIONS(5262), + [anon_sym_AMP_AMP] = ACTIONS(5264), [sym_comment] = ACTIONS(49), }, - [2250] = { - [sym_parameter_list] = STATE(1346), + [2256] = { + [sym_parameter_list] = STATE(1347), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2251] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2251), + [2257] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2257), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_LBRACE] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(5971), - [anon_sym_long] = ACTIONS(5971), - [anon_sym_short] = ACTIONS(5971), + [anon_sym_unsigned] = ACTIONS(5995), + [anon_sym_long] = ACTIONS(5995), + [anon_sym_short] = ACTIONS(5995), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [2252] = { - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), - [anon_sym_RPAREN] = ACTIONS(3770), - [anon_sym_SEMI] = ACTIONS(3770), - [anon_sym_extern] = ACTIONS(3772), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_RBRACK] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3772), - [anon_sym_static] = ACTIONS(3772), - [anon_sym_register] = ACTIONS(3772), - [anon_sym_inline] = ACTIONS(3772), - [anon_sym_const] = ACTIONS(3772), - [anon_sym_restrict] = ACTIONS(3772), - [anon_sym_volatile] = ACTIONS(3772), - [anon_sym__Atomic] = ACTIONS(3772), - [anon_sym_mutable] = ACTIONS(3772), - [anon_sym_explicit] = ACTIONS(3772), - [anon_sym_constexpr] = ACTIONS(3772), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_STAR_EQ] = ACTIONS(3770), - [anon_sym_SLASH_EQ] = ACTIONS(3770), - [anon_sym_PERCENT_EQ] = ACTIONS(3770), - [anon_sym_PLUS_EQ] = ACTIONS(3770), - [anon_sym_DASH_EQ] = ACTIONS(3770), - [anon_sym_LT_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_GT_EQ] = ACTIONS(3770), - [anon_sym_AMP_EQ] = ACTIONS(3770), - [anon_sym_CARET_EQ] = ACTIONS(3770), - [anon_sym_PIPE_EQ] = ACTIONS(3770), - [anon_sym_AMP] = ACTIONS(3772), - [anon_sym_PIPE_PIPE] = ACTIONS(3770), - [anon_sym_AMP_AMP] = ACTIONS(3770), - [anon_sym_PIPE] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(3772), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_EQ_EQ] = ACTIONS(3770), - [anon_sym_BANG_EQ] = ACTIONS(3770), - [anon_sym_LT] = ACTIONS(3772), - [anon_sym_GT] = ACTIONS(3772), - [anon_sym_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_EQ] = ACTIONS(3770), - [anon_sym_LT_LT] = ACTIONS(3772), - [anon_sym_GT_GT] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_SLASH] = ACTIONS(3772), - [anon_sym_PERCENT] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(3770), - [anon_sym_PLUS_PLUS] = ACTIONS(3770), - [anon_sym_DOT] = ACTIONS(3770), - [anon_sym_DASH_GT] = ACTIONS(3770), - [sym_identifier] = ACTIONS(3772), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(3770), - [sym_operator_name] = ACTIONS(3770), + [2258] = { + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_RBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_QMARK] = ACTIONS(3776), + [anon_sym_STAR_EQ] = ACTIONS(3776), + [anon_sym_SLASH_EQ] = ACTIONS(3776), + [anon_sym_PERCENT_EQ] = ACTIONS(3776), + [anon_sym_PLUS_EQ] = ACTIONS(3776), + [anon_sym_DASH_EQ] = ACTIONS(3776), + [anon_sym_LT_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_GT_EQ] = ACTIONS(3776), + [anon_sym_AMP_EQ] = ACTIONS(3776), + [anon_sym_CARET_EQ] = ACTIONS(3776), + [anon_sym_PIPE_EQ] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3778), + [anon_sym_CARET] = ACTIONS(3778), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LT_LT] = ACTIONS(3778), + [anon_sym_GT_GT] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_SLASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_DOT] = ACTIONS(3776), + [anon_sym_DASH_GT] = ACTIONS(3776), + [sym_identifier] = ACTIONS(3778), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [sym_operator_name] = ACTIONS(3776), }, - [2253] = { - [sym_raw_string_literal] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_extern] = ACTIONS(3772), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_RBRACK] = ACTIONS(3770), - [anon_sym_static] = ACTIONS(3772), - [anon_sym_register] = ACTIONS(3772), - [anon_sym_inline] = ACTIONS(3772), - [anon_sym_const] = ACTIONS(3772), - [anon_sym_restrict] = ACTIONS(3772), - [anon_sym_volatile] = ACTIONS(3772), - [anon_sym__Atomic] = ACTIONS(3772), - [anon_sym_mutable] = ACTIONS(3772), - [anon_sym_explicit] = ACTIONS(3772), - [anon_sym_constexpr] = ACTIONS(3772), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_AMP] = ACTIONS(3770), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(3770), - [anon_sym_PLUS_PLUS] = ACTIONS(3770), - [anon_sym_sizeof] = ACTIONS(3772), - [sym_number_literal] = ACTIONS(3770), - [sym_char_literal] = ACTIONS(3770), - [sym_string_literal] = ACTIONS(3770), - [sym_true] = ACTIONS(3772), - [sym_false] = ACTIONS(3772), - [sym_null] = ACTIONS(3772), - [sym_identifier] = ACTIONS(3772), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(3772), - [anon_sym_COLON_COLON] = ACTIONS(3770), - [anon_sym_delete] = ACTIONS(3772), - [sym_nullptr] = ACTIONS(3772), + [2259] = { + [sym_raw_string_literal] = ACTIONS(3776), + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_extern] = ACTIONS(3778), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_RBRACK] = ACTIONS(3776), + [anon_sym_static] = ACTIONS(3778), + [anon_sym_register] = ACTIONS(3778), + [anon_sym_inline] = ACTIONS(3778), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3778), + [anon_sym_volatile] = ACTIONS(3778), + [anon_sym__Atomic] = ACTIONS(3778), + [anon_sym_mutable] = ACTIONS(3778), + [anon_sym_explicit] = ACTIONS(3778), + [anon_sym_constexpr] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_AMP] = ACTIONS(3776), + [anon_sym_BANG] = ACTIONS(3776), + [anon_sym_TILDE] = ACTIONS(3776), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_sizeof] = ACTIONS(3778), + [sym_number_literal] = ACTIONS(3776), + [sym_char_literal] = ACTIONS(3776), + [sym_string_literal] = ACTIONS(3776), + [sym_true] = ACTIONS(3778), + [sym_false] = ACTIONS(3778), + [sym_null] = ACTIONS(3778), + [sym_identifier] = ACTIONS(3778), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(3778), + [anon_sym_COLON_COLON] = ACTIONS(3776), + [anon_sym_delete] = ACTIONS(3778), + [sym_nullptr] = ACTIONS(3778), }, - [2254] = { - [anon_sym_LPAREN] = ACTIONS(2008), - [anon_sym_COMMA] = ACTIONS(2008), - [anon_sym_RPAREN] = ACTIONS(2008), - [anon_sym_SEMI] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2008), - [anon_sym_STAR] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2008), - [anon_sym_EQ] = ACTIONS(2008), - [anon_sym_const] = ACTIONS(2010), - [anon_sym_restrict] = ACTIONS(2008), - [anon_sym_volatile] = ACTIONS(2008), - [anon_sym__Atomic] = ACTIONS(2008), - [anon_sym_mutable] = ACTIONS(2008), - [anon_sym_explicit] = ACTIONS(2008), - [anon_sym_constexpr] = ACTIONS(2008), - [anon_sym_COLON] = ACTIONS(2008), - [anon_sym_AMP] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(2008), - [anon_sym_GT] = ACTIONS(2008), - [anon_sym_DASH_GT] = ACTIONS(2008), + [2260] = { + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_COMMA] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_EQ] = ACTIONS(2010), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_restrict] = ACTIONS(2010), + [anon_sym_volatile] = ACTIONS(2010), + [anon_sym__Atomic] = ACTIONS(2010), + [anon_sym_mutable] = ACTIONS(2010), + [anon_sym_explicit] = ACTIONS(2010), + [anon_sym_constexpr] = ACTIONS(2010), + [anon_sym_COLON] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2012), + [anon_sym_AMP_AMP] = ACTIONS(2010), + [anon_sym_GT] = ACTIONS(2010), + [anon_sym_DASH_GT] = ACTIONS(2010), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2008), + [sym_noexcept] = ACTIONS(2010), }, - [2255] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(5974), + [2261] = { + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(5998), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [2256] = { - [aux_sym_enumerator_list_repeat1] = STATE(1031), - [anon_sym_COMMA] = ACTIONS(5976), - [anon_sym_RBRACE] = ACTIONS(5974), + [2262] = { + [aux_sym_enumerator_list_repeat1] = STATE(1032), + [anon_sym_COMMA] = ACTIONS(6000), + [anon_sym_RBRACE] = ACTIONS(5998), [sym_comment] = ACTIONS(49), }, - [2257] = { - [anon_sym_LPAREN] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_RPAREN] = ACTIONS(2112), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_STAR] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2112), - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2114), - [anon_sym_restrict] = ACTIONS(2112), - [anon_sym_volatile] = ACTIONS(2112), - [anon_sym__Atomic] = ACTIONS(2112), - [anon_sym_mutable] = ACTIONS(2112), - [anon_sym_explicit] = ACTIONS(2112), - [anon_sym_constexpr] = ACTIONS(2112), - [anon_sym_COLON] = ACTIONS(2112), - [anon_sym_AMP] = ACTIONS(2114), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_DASH_GT] = ACTIONS(2112), + [2263] = { + [anon_sym_LPAREN] = ACTIONS(2114), + [anon_sym_COMMA] = ACTIONS(2114), + [anon_sym_RPAREN] = ACTIONS(2114), + [anon_sym_SEMI] = ACTIONS(2114), + [anon_sym_LBRACE] = ACTIONS(2114), + [anon_sym_STAR] = ACTIONS(2114), + [anon_sym_LBRACK] = ACTIONS(2114), + [anon_sym_EQ] = ACTIONS(2114), + [anon_sym_const] = ACTIONS(2116), + [anon_sym_restrict] = ACTIONS(2114), + [anon_sym_volatile] = ACTIONS(2114), + [anon_sym__Atomic] = ACTIONS(2114), + [anon_sym_mutable] = ACTIONS(2114), + [anon_sym_explicit] = ACTIONS(2114), + [anon_sym_constexpr] = ACTIONS(2114), + [anon_sym_COLON] = ACTIONS(2114), + [anon_sym_AMP] = ACTIONS(2116), + [anon_sym_AMP_AMP] = ACTIONS(2114), + [anon_sym_GT] = ACTIONS(2114), + [anon_sym_DASH_GT] = ACTIONS(2114), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2112), + [sym_noexcept] = ACTIONS(2114), }, - [2258] = { - [anon_sym_LPAREN] = ACTIONS(2200), - [anon_sym_COMMA] = ACTIONS(2200), - [anon_sym_RPAREN] = ACTIONS(2200), - [anon_sym_SEMI] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2200), - [anon_sym_STAR] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2200), - [anon_sym_EQ] = ACTIONS(2200), - [anon_sym_const] = ACTIONS(2202), - [anon_sym_restrict] = ACTIONS(2200), - [anon_sym_volatile] = ACTIONS(2200), - [anon_sym__Atomic] = ACTIONS(2200), - [anon_sym_mutable] = ACTIONS(2200), - [anon_sym_explicit] = ACTIONS(2200), - [anon_sym_constexpr] = ACTIONS(2200), - [anon_sym_COLON] = ACTIONS(2200), - [anon_sym_AMP] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2200), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_DASH_GT] = ACTIONS(2200), + [2264] = { + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_SEMI] = ACTIONS(2202), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_STAR] = ACTIONS(2202), + [anon_sym_LBRACK] = ACTIONS(2202), + [anon_sym_EQ] = ACTIONS(2202), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_restrict] = ACTIONS(2202), + [anon_sym_volatile] = ACTIONS(2202), + [anon_sym__Atomic] = ACTIONS(2202), + [anon_sym_mutable] = ACTIONS(2202), + [anon_sym_explicit] = ACTIONS(2202), + [anon_sym_constexpr] = ACTIONS(2202), + [anon_sym_COLON] = ACTIONS(2202), + [anon_sym_AMP] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2202), + [anon_sym_GT] = ACTIONS(2202), + [anon_sym_DASH_GT] = ACTIONS(2202), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2200), + [sym_noexcept] = ACTIONS(2202), }, - [2259] = { - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_RPAREN] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_EQ] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2206), - [anon_sym_restrict] = ACTIONS(2204), - [anon_sym_volatile] = ACTIONS(2204), - [anon_sym__Atomic] = ACTIONS(2204), - [anon_sym_mutable] = ACTIONS(2204), - [anon_sym_explicit] = ACTIONS(2204), - [anon_sym_constexpr] = ACTIONS(2204), - [anon_sym_COLON] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2206), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DASH_GT] = ACTIONS(2204), + [2265] = { + [anon_sym_LPAREN] = ACTIONS(2206), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RPAREN] = ACTIONS(2206), + [anon_sym_SEMI] = ACTIONS(2206), + [anon_sym_LBRACE] = ACTIONS(2206), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_LBRACK] = ACTIONS(2206), + [anon_sym_EQ] = ACTIONS(2206), + [anon_sym_const] = ACTIONS(2208), + [anon_sym_restrict] = ACTIONS(2206), + [anon_sym_volatile] = ACTIONS(2206), + [anon_sym__Atomic] = ACTIONS(2206), + [anon_sym_mutable] = ACTIONS(2206), + [anon_sym_explicit] = ACTIONS(2206), + [anon_sym_constexpr] = ACTIONS(2206), + [anon_sym_COLON] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2208), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_DASH_GT] = ACTIONS(2206), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2204), + [sym_noexcept] = ACTIONS(2206), }, - [2260] = { - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2288), - [anon_sym_RPAREN] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2290), - [anon_sym_restrict] = ACTIONS(2288), - [anon_sym_volatile] = ACTIONS(2288), - [anon_sym__Atomic] = ACTIONS(2288), - [anon_sym_mutable] = ACTIONS(2288), - [anon_sym_explicit] = ACTIONS(2288), - [anon_sym_constexpr] = ACTIONS(2288), - [anon_sym_COLON] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_AMP_AMP] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2288), - [anon_sym_DASH_GT] = ACTIONS(2288), + [2266] = { + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_RPAREN] = ACTIONS(2290), + [anon_sym_SEMI] = ACTIONS(2290), + [anon_sym_LBRACE] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_LBRACK] = ACTIONS(2290), + [anon_sym_EQ] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_restrict] = ACTIONS(2290), + [anon_sym_volatile] = ACTIONS(2290), + [anon_sym__Atomic] = ACTIONS(2290), + [anon_sym_mutable] = ACTIONS(2290), + [anon_sym_explicit] = ACTIONS(2290), + [anon_sym_constexpr] = ACTIONS(2290), + [anon_sym_COLON] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2290), + [anon_sym_DASH_GT] = ACTIONS(2290), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2288), - [anon_sym_COLON_COLON] = ACTIONS(2288), + [sym_noexcept] = ACTIONS(2290), + [anon_sym_COLON_COLON] = ACTIONS(2290), }, - [2261] = { - [aux_sym_template_argument_list_repeat1] = STATE(1132), + [2267] = { + [aux_sym_template_argument_list_repeat1] = STATE(1133), [anon_sym_COMMA] = ACTIONS(1127), - [anon_sym_GT] = ACTIONS(5978), + [anon_sym_GT] = ACTIONS(6002), [sym_comment] = ACTIONS(49), }, - [2262] = { - [anon_sym_LPAREN] = ACTIONS(2297), - [anon_sym_COMMA] = ACTIONS(2297), - [anon_sym_RPAREN] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2297), - [anon_sym_STAR] = ACTIONS(2297), - [anon_sym_LBRACK] = ACTIONS(2297), - [anon_sym_EQ] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2299), - [anon_sym_restrict] = ACTIONS(2297), - [anon_sym_volatile] = ACTIONS(2297), - [anon_sym__Atomic] = ACTIONS(2297), - [anon_sym_mutable] = ACTIONS(2297), - [anon_sym_explicit] = ACTIONS(2297), - [anon_sym_constexpr] = ACTIONS(2297), - [anon_sym_COLON] = ACTIONS(2297), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_AMP_AMP] = ACTIONS(2297), - [anon_sym_GT] = ACTIONS(2297), - [anon_sym_DASH_GT] = ACTIONS(2297), + [2268] = { + [anon_sym_LPAREN] = ACTIONS(2299), + [anon_sym_COMMA] = ACTIONS(2299), + [anon_sym_RPAREN] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2299), + [anon_sym_LBRACE] = ACTIONS(2299), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_LBRACK] = ACTIONS(2299), + [anon_sym_EQ] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2301), + [anon_sym_restrict] = ACTIONS(2299), + [anon_sym_volatile] = ACTIONS(2299), + [anon_sym__Atomic] = ACTIONS(2299), + [anon_sym_mutable] = ACTIONS(2299), + [anon_sym_explicit] = ACTIONS(2299), + [anon_sym_constexpr] = ACTIONS(2299), + [anon_sym_COLON] = ACTIONS(2299), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_AMP_AMP] = ACTIONS(2299), + [anon_sym_GT] = ACTIONS(2299), + [anon_sym_DASH_GT] = ACTIONS(2299), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2297), + [sym_noexcept] = ACTIONS(2299), }, - [2263] = { - [sym_type_qualifier] = STATE(2264), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2264), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2269] = { + [sym_type_qualifier] = STATE(2270), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2270), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -89072,170 +89290,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4984), + [anon_sym_COLON] = ACTIONS(4998), [anon_sym_DASH_GT] = ACTIONS(616), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5273), + [sym_noexcept] = ACTIONS(5287), }, - [2264] = { - [sym_type_qualifier] = STATE(2264), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2264), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5980), + [2270] = { + [sym_type_qualifier] = STATE(2270), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2270), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6004), }, - [2265] = { - [sym_raw_string_literal] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_goto] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_sizeof] = ACTIONS(3338), - [sym_number_literal] = ACTIONS(3336), - [sym_char_literal] = ACTIONS(3336), - [sym_string_literal] = ACTIONS(3336), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3338), - [sym_nullptr] = ACTIONS(3338), + [2271] = { + [sym_raw_string_literal] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_goto] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_sizeof] = ACTIONS(3344), + [sym_number_literal] = ACTIONS(3342), + [sym_char_literal] = ACTIONS(3342), + [sym_string_literal] = ACTIONS(3342), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3344), + [sym_nullptr] = ACTIONS(3344), }, - [2266] = { - [sym_raw_string_literal] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_sizeof] = ACTIONS(3348), - [sym_number_literal] = ACTIONS(3346), - [sym_char_literal] = ACTIONS(3346), - [sym_string_literal] = ACTIONS(3346), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3348), - [sym_nullptr] = ACTIONS(3348), + [2272] = { + [sym_raw_string_literal] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_sizeof] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3352), + [sym_char_literal] = ACTIONS(3352), + [sym_string_literal] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3354), + [sym_nullptr] = ACTIONS(3354), }, - [2267] = { - [sym_preproc_arg] = ACTIONS(5983), + [2273] = { + [sym_preproc_arg] = ACTIONS(6007), [sym_comment] = ACTIONS(83), }, - [2268] = { + [2274] = { [sym_raw_string_literal] = ACTIONS(825), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(827), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(827), @@ -89305,102 +89523,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(827), [sym_nullptr] = ACTIONS(827), }, - [2269] = { - [anon_sym_LF] = ACTIONS(5985), - [sym_preproc_arg] = ACTIONS(5987), + [2275] = { + [anon_sym_LF] = ACTIONS(6009), + [sym_preproc_arg] = ACTIONS(6011), [sym_comment] = ACTIONS(83), }, - [2270] = { - [sym_raw_string_literal] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4381), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4381), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_TILDE] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4381), - [sym_char_literal] = ACTIONS(4381), - [sym_string_literal] = ACTIONS(4381), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_null] = ACTIONS(4383), - [sym_identifier] = ACTIONS(4383), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4383), - [sym_auto] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4381), - [anon_sym_delete] = ACTIONS(4383), - [sym_nullptr] = ACTIONS(4383), + [2276] = { + [sym_raw_string_literal] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4387), + [sym_char_literal] = ACTIONS(4387), + [sym_string_literal] = ACTIONS(4387), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_null] = ACTIONS(4389), + [sym_identifier] = ACTIONS(4389), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4389), + [sym_auto] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4389), + [sym_nullptr] = ACTIONS(4389), }, - [2271] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5989), + [2277] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6013), [sym_comment] = ACTIONS(49), }, - [2272] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5991), + [2278] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6015), [sym_comment] = ACTIONS(49), }, - [2273] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2507), - [sym_preproc_elif_in_compound_statement] = STATE(2508), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2279] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2517), + [sym_preproc_elif_in_compound_statement] = STATE(2518), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -89408,70 +89626,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5993), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6017), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -89491,17 +89709,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -89510,13 +89728,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -89524,99 +89742,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2274] = { - [sym_raw_string_literal] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4489), - [sym_preproc_directive] = ACTIONS(4489), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_typedef] = ACTIONS(4489), - [anon_sym_extern] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_static] = ACTIONS(4489), - [anon_sym_register] = ACTIONS(4489), - [anon_sym_inline] = ACTIONS(4489), - [anon_sym_const] = ACTIONS(4489), - [anon_sym_restrict] = ACTIONS(4489), - [anon_sym_volatile] = ACTIONS(4489), - [anon_sym__Atomic] = ACTIONS(4489), - [anon_sym_mutable] = ACTIONS(4489), - [anon_sym_explicit] = ACTIONS(4489), - [anon_sym_constexpr] = ACTIONS(4489), - [anon_sym_unsigned] = ACTIONS(4489), - [anon_sym_long] = ACTIONS(4489), - [anon_sym_short] = ACTIONS(4489), - [sym_primitive_type] = ACTIONS(4489), - [anon_sym_enum] = ACTIONS(4489), - [anon_sym_struct] = ACTIONS(4489), - [anon_sym_union] = ACTIONS(4489), - [anon_sym_if] = ACTIONS(4489), - [anon_sym_switch] = ACTIONS(4489), - [anon_sym_case] = ACTIONS(4489), - [anon_sym_default] = ACTIONS(4489), - [anon_sym_while] = ACTIONS(4489), - [anon_sym_do] = ACTIONS(4489), - [anon_sym_for] = ACTIONS(4489), - [anon_sym_return] = ACTIONS(4489), - [anon_sym_break] = ACTIONS(4489), - [anon_sym_continue] = ACTIONS(4489), - [anon_sym_goto] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_TILDE] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4487), - [anon_sym_sizeof] = ACTIONS(4489), - [sym_number_literal] = ACTIONS(4487), - [sym_char_literal] = ACTIONS(4487), - [sym_string_literal] = ACTIONS(4487), - [sym_true] = ACTIONS(4489), - [sym_false] = ACTIONS(4489), - [sym_null] = ACTIONS(4489), - [sym_identifier] = ACTIONS(4489), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4489), - [sym_auto] = ACTIONS(4489), - [anon_sym_typename] = ACTIONS(4489), - [anon_sym_new] = ACTIONS(4489), - [anon_sym_COLON_COLON] = ACTIONS(4487), - [anon_sym_delete] = ACTIONS(4489), - [sym_nullptr] = ACTIONS(4489), + [2280] = { + [sym_raw_string_literal] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4497), + [sym_preproc_directive] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_typedef] = ACTIONS(4497), + [anon_sym_extern] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_static] = ACTIONS(4497), + [anon_sym_register] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_restrict] = ACTIONS(4497), + [anon_sym_volatile] = ACTIONS(4497), + [anon_sym__Atomic] = ACTIONS(4497), + [anon_sym_mutable] = ACTIONS(4497), + [anon_sym_explicit] = ACTIONS(4497), + [anon_sym_constexpr] = ACTIONS(4497), + [anon_sym_unsigned] = ACTIONS(4497), + [anon_sym_long] = ACTIONS(4497), + [anon_sym_short] = ACTIONS(4497), + [sym_primitive_type] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_union] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_switch] = ACTIONS(4497), + [anon_sym_case] = ACTIONS(4497), + [anon_sym_default] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_do] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_goto] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_sizeof] = ACTIONS(4497), + [sym_number_literal] = ACTIONS(4495), + [sym_char_literal] = ACTIONS(4495), + [sym_string_literal] = ACTIONS(4495), + [sym_true] = ACTIONS(4497), + [sym_false] = ACTIONS(4497), + [sym_null] = ACTIONS(4497), + [sym_identifier] = ACTIONS(4497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4497), + [sym_auto] = ACTIONS(4497), + [anon_sym_typename] = ACTIONS(4497), + [anon_sym_new] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_delete] = ACTIONS(4497), + [sym_nullptr] = ACTIONS(4497), }, - [2275] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5995), + [2281] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6019), [sym_comment] = ACTIONS(49), }, - [2276] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5997), + [2282] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6021), [sym_comment] = ACTIONS(49), }, - [2277] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2512), - [sym_preproc_elif_in_compound_statement] = STATE(2513), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2283] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2522), + [sym_preproc_elif_in_compound_statement] = STATE(2523), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -89624,70 +89842,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5999), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6023), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -89707,17 +89925,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -89726,13 +89944,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -89740,99 +89958,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2278] = { - [sym_raw_string_literal] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4499), - [anon_sym_LPAREN] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4499), - [sym_preproc_directive] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_typedef] = ACTIONS(4499), - [anon_sym_extern] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_STAR] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_static] = ACTIONS(4499), - [anon_sym_register] = ACTIONS(4499), - [anon_sym_inline] = ACTIONS(4499), - [anon_sym_const] = ACTIONS(4499), - [anon_sym_restrict] = ACTIONS(4499), - [anon_sym_volatile] = ACTIONS(4499), - [anon_sym__Atomic] = ACTIONS(4499), - [anon_sym_mutable] = ACTIONS(4499), - [anon_sym_explicit] = ACTIONS(4499), - [anon_sym_constexpr] = ACTIONS(4499), - [anon_sym_unsigned] = ACTIONS(4499), - [anon_sym_long] = ACTIONS(4499), - [anon_sym_short] = ACTIONS(4499), - [sym_primitive_type] = ACTIONS(4499), - [anon_sym_enum] = ACTIONS(4499), - [anon_sym_struct] = ACTIONS(4499), - [anon_sym_union] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_switch] = ACTIONS(4499), - [anon_sym_case] = ACTIONS(4499), - [anon_sym_default] = ACTIONS(4499), - [anon_sym_while] = ACTIONS(4499), - [anon_sym_do] = ACTIONS(4499), - [anon_sym_for] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_goto] = ACTIONS(4499), - [anon_sym_AMP] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4497), - [anon_sym_TILDE] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_sizeof] = ACTIONS(4499), - [sym_number_literal] = ACTIONS(4497), - [sym_char_literal] = ACTIONS(4497), - [sym_string_literal] = ACTIONS(4497), - [sym_true] = ACTIONS(4499), - [sym_false] = ACTIONS(4499), - [sym_null] = ACTIONS(4499), - [sym_identifier] = ACTIONS(4499), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4499), - [sym_auto] = ACTIONS(4499), - [anon_sym_typename] = ACTIONS(4499), - [anon_sym_new] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_delete] = ACTIONS(4499), - [sym_nullptr] = ACTIONS(4499), + [2284] = { + [sym_raw_string_literal] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4507), + [sym_preproc_directive] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_typedef] = ACTIONS(4507), + [anon_sym_extern] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_register] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_const] = ACTIONS(4507), + [anon_sym_restrict] = ACTIONS(4507), + [anon_sym_volatile] = ACTIONS(4507), + [anon_sym__Atomic] = ACTIONS(4507), + [anon_sym_mutable] = ACTIONS(4507), + [anon_sym_explicit] = ACTIONS(4507), + [anon_sym_constexpr] = ACTIONS(4507), + [anon_sym_unsigned] = ACTIONS(4507), + [anon_sym_long] = ACTIONS(4507), + [anon_sym_short] = ACTIONS(4507), + [sym_primitive_type] = ACTIONS(4507), + [anon_sym_enum] = ACTIONS(4507), + [anon_sym_struct] = ACTIONS(4507), + [anon_sym_union] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_switch] = ACTIONS(4507), + [anon_sym_case] = ACTIONS(4507), + [anon_sym_default] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_do] = ACTIONS(4507), + [anon_sym_for] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_goto] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_TILDE] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4505), + [sym_char_literal] = ACTIONS(4505), + [sym_string_literal] = ACTIONS(4505), + [sym_true] = ACTIONS(4507), + [sym_false] = ACTIONS(4507), + [sym_null] = ACTIONS(4507), + [sym_identifier] = ACTIONS(4507), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4507), + [sym_auto] = ACTIONS(4507), + [anon_sym_typename] = ACTIONS(4507), + [anon_sym_new] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_delete] = ACTIONS(4507), + [sym_nullptr] = ACTIONS(4507), }, - [2279] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6001), + [2285] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6025), [sym_comment] = ACTIONS(49), }, - [2280] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6003), + [2286] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6027), [sym_comment] = ACTIONS(49), }, - [2281] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2517), - [sym_preproc_elif_in_compound_statement] = STATE(2518), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2287] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2527), + [sym_preproc_elif_in_compound_statement] = STATE(2528), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -89840,70 +90058,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6029), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -89923,17 +90141,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -89942,13 +90160,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -89956,9 +90174,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2282] = { + [2288] = { [sym_raw_string_literal] = ACTIONS(249), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(251), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(251), @@ -90026,26 +90244,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(251), [sym_nullptr] = ACTIONS(251), }, - [2283] = { - [sym_preproc_params] = STATE(2521), - [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(6007), - [anon_sym_LF] = ACTIONS(6009), + [2289] = { + [sym_preproc_params] = STATE(2531), + [aux_sym_SLASH_LBRACK_BSLASHt_RBRACK_PLUS_SLASH] = ACTIONS(6031), + [anon_sym_LF] = ACTIONS(6033), [anon_sym_LPAREN] = ACTIONS(257), [sym_comment] = ACTIONS(83), }, - [2284] = { - [sym_preproc_include] = STATE(2525), - [sym_preproc_def] = STATE(2525), - [sym_preproc_function_def] = STATE(2525), - [sym_preproc_call] = STATE(2525), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2523), - [sym_preproc_elif_in_compound_statement] = STATE(2524), - [sym_declaration] = STATE(2525), - [sym_type_definition] = STATE(2525), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2525), + [2290] = { + [sym_preproc_include] = STATE(2535), + [sym_preproc_def] = STATE(2535), + [sym_preproc_function_def] = STATE(2535), + [sym_preproc_call] = STATE(2535), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2533), + [sym_preproc_elif_in_compound_statement] = STATE(2534), + [sym_declaration] = STATE(2535), + [sym_type_definition] = STATE(2535), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2535), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -90053,70 +90271,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2525), - [sym_expression_statement] = STATE(2525), - [sym_if_statement] = STATE(2525), - [sym_switch_statement] = STATE(2525), - [sym_case_statement] = STATE(2525), - [sym_while_statement] = STATE(2525), - [sym_do_statement] = STATE(2525), - [sym_for_statement] = STATE(2525), - [sym_return_statement] = STATE(2525), - [sym_break_statement] = STATE(2525), - [sym_continue_statement] = STATE(2525), - [sym_goto_statement] = STATE(2525), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2525), + [sym_labeled_statement] = STATE(2535), + [sym_expression_statement] = STATE(2535), + [sym_if_statement] = STATE(2535), + [sym_switch_statement] = STATE(2535), + [sym_case_statement] = STATE(2535), + [sym_while_statement] = STATE(2535), + [sym_do_statement] = STATE(2535), + [sym_for_statement] = STATE(2535), + [sym_return_statement] = STATE(2535), + [sym_break_statement] = STATE(2535), + [sym_continue_statement] = STATE(2535), + [sym_goto_statement] = STATE(2535), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2535), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2525), + [sym_structured_binding_declaration] = STATE(2535), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2525), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2535), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2525), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2535), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6011), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6035), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -90136,17 +90354,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -90155,13 +90373,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -90169,21 +90387,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2285] = { - [sym_preproc_include] = STATE(2529), - [sym_preproc_def] = STATE(2529), - [sym_preproc_function_def] = STATE(2529), - [sym_preproc_call] = STATE(2529), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2527), - [sym_preproc_elif_in_compound_statement] = STATE(2528), - [sym_declaration] = STATE(2529), - [sym_type_definition] = STATE(2529), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2529), + [2291] = { + [sym_preproc_include] = STATE(2539), + [sym_preproc_def] = STATE(2539), + [sym_preproc_function_def] = STATE(2539), + [sym_preproc_call] = STATE(2539), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2537), + [sym_preproc_elif_in_compound_statement] = STATE(2538), + [sym_declaration] = STATE(2539), + [sym_type_definition] = STATE(2539), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2539), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -90191,70 +90409,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2529), - [sym_expression_statement] = STATE(2529), - [sym_if_statement] = STATE(2529), - [sym_switch_statement] = STATE(2529), - [sym_case_statement] = STATE(2529), - [sym_while_statement] = STATE(2529), - [sym_do_statement] = STATE(2529), - [sym_for_statement] = STATE(2529), - [sym_return_statement] = STATE(2529), - [sym_break_statement] = STATE(2529), - [sym_continue_statement] = STATE(2529), - [sym_goto_statement] = STATE(2529), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2529), + [sym_labeled_statement] = STATE(2539), + [sym_expression_statement] = STATE(2539), + [sym_if_statement] = STATE(2539), + [sym_switch_statement] = STATE(2539), + [sym_case_statement] = STATE(2539), + [sym_while_statement] = STATE(2539), + [sym_do_statement] = STATE(2539), + [sym_for_statement] = STATE(2539), + [sym_return_statement] = STATE(2539), + [sym_break_statement] = STATE(2539), + [sym_continue_statement] = STATE(2539), + [sym_goto_statement] = STATE(2539), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2539), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2529), + [sym_structured_binding_declaration] = STATE(2539), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2529), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2539), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2529), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2539), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6013), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6037), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -90274,17 +90492,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -90293,13 +90511,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -90307,21 +90525,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2286] = { - [sym_preproc_include] = STATE(2533), - [sym_preproc_def] = STATE(2533), - [sym_preproc_function_def] = STATE(2533), - [sym_preproc_call] = STATE(2533), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2531), - [sym_preproc_elif_in_compound_statement] = STATE(2532), - [sym_declaration] = STATE(2533), - [sym_type_definition] = STATE(2533), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(2533), + [2292] = { + [sym_preproc_include] = STATE(2543), + [sym_preproc_def] = STATE(2543), + [sym_preproc_function_def] = STATE(2543), + [sym_preproc_call] = STATE(2543), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2541), + [sym_preproc_elif_in_compound_statement] = STATE(2542), + [sym_declaration] = STATE(2543), + [sym_type_definition] = STATE(2543), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(2543), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -90329,70 +90547,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2533), - [sym_expression_statement] = STATE(2533), - [sym_if_statement] = STATE(2533), - [sym_switch_statement] = STATE(2533), - [sym_case_statement] = STATE(2533), - [sym_while_statement] = STATE(2533), - [sym_do_statement] = STATE(2533), - [sym_for_statement] = STATE(2533), - [sym_return_statement] = STATE(2533), - [sym_break_statement] = STATE(2533), - [sym_continue_statement] = STATE(2533), - [sym_goto_statement] = STATE(2533), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(2533), + [sym_labeled_statement] = STATE(2543), + [sym_expression_statement] = STATE(2543), + [sym_if_statement] = STATE(2543), + [sym_switch_statement] = STATE(2543), + [sym_case_statement] = STATE(2543), + [sym_while_statement] = STATE(2543), + [sym_do_statement] = STATE(2543), + [sym_for_statement] = STATE(2543), + [sym_return_statement] = STATE(2543), + [sym_break_statement] = STATE(2543), + [sym_continue_statement] = STATE(2543), + [sym_goto_statement] = STATE(2543), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(2543), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2533), + [sym_structured_binding_declaration] = STATE(2543), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2533), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2543), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2533), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2543), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6015), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6039), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -90412,17 +90630,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -90431,13 +90649,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -90445,13 +90663,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2287] = { - [sym_preproc_arg] = ACTIONS(6017), + [2293] = { + [sym_preproc_arg] = ACTIONS(6041), [sym_comment] = ACTIONS(83), }, - [2288] = { + [2294] = { [sym_raw_string_literal] = ACTIONS(307), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(309), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(309), @@ -90519,8 +90737,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(309), [sym_nullptr] = ACTIONS(309), }, - [2289] = { - [sym__type_declarator] = STATE(2535), + [2295] = { + [sym__type_declarator] = STATE(2545), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -90529,16 +90747,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2290] = { + [2296] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(2536), - [sym_sized_type_specifier] = STATE(2536), - [sym_enum_specifier] = STATE(2536), - [sym_struct_specifier] = STATE(2536), - [sym_union_specifier] = STATE(2536), - [sym_macro_type_specifier] = STATE(2536), - [sym_class_specifier] = STATE(2536), - [sym_dependent_type] = STATE(2536), + [sym__type_specifier] = STATE(2546), + [sym_sized_type_specifier] = STATE(2546), + [sym_enum_specifier] = STATE(2546), + [sym_struct_specifier] = STATE(2546), + [sym_union_specifier] = STATE(2546), + [sym_macro_type_specifier] = STATE(2546), + [sym_class_specifier] = STATE(2546), + [sym_dependent_type] = STATE(2546), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -90554,18 +90772,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(6019), + [sym_primitive_type] = ACTIONS(6043), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(6019), + [sym_auto] = ACTIONS(6043), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2291] = { + [2297] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), @@ -90633,17 +90851,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [2292] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [2298] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -90651,18 +90869,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -90682,14 +90900,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -90697,7 +90915,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -90712,7 +90930,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6021), + [anon_sym_RBRACE] = ACTIONS(6045), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -90767,158 +90985,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2293] = { - [sym__expression] = STATE(2538), - [sym_conditional_expression] = STATE(2538), - [sym_assignment_expression] = STATE(2538), - [sym_pointer_expression] = STATE(2538), - [sym_logical_expression] = STATE(2538), - [sym_bitwise_expression] = STATE(2538), - [sym_equality_expression] = STATE(2538), - [sym_relational_expression] = STATE(2538), - [sym_shift_expression] = STATE(2538), - [sym_math_expression] = STATE(2538), - [sym_cast_expression] = STATE(2538), - [sym_sizeof_expression] = STATE(2538), - [sym_subscript_expression] = STATE(2538), - [sym_call_expression] = STATE(2538), - [sym_field_expression] = STATE(2538), - [sym_compound_literal_expression] = STATE(2538), - [sym_parenthesized_expression] = STATE(2538), - [sym_concatenated_string] = STATE(2538), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2538), - [sym_new_expression] = STATE(2538), - [sym_delete_expression] = STATE(2538), - [sym_lambda_expression] = STATE(2538), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6023), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6023), - [sym_char_literal] = ACTIONS(6023), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6025), - [sym_false] = ACTIONS(6025), - [sym_null] = ACTIONS(6025), + [2299] = { + [sym__expression] = STATE(2548), + [sym_conditional_expression] = STATE(2548), + [sym_assignment_expression] = STATE(2548), + [sym_pointer_expression] = STATE(2548), + [sym_logical_expression] = STATE(2548), + [sym_bitwise_expression] = STATE(2548), + [sym_equality_expression] = STATE(2548), + [sym_relational_expression] = STATE(2548), + [sym_shift_expression] = STATE(2548), + [sym_math_expression] = STATE(2548), + [sym_cast_expression] = STATE(2548), + [sym_sizeof_expression] = STATE(2548), + [sym_subscript_expression] = STATE(2548), + [sym_call_expression] = STATE(2548), + [sym_field_expression] = STATE(2548), + [sym_compound_literal_expression] = STATE(2548), + [sym_parenthesized_expression] = STATE(2548), + [sym_concatenated_string] = STATE(2548), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2548), + [sym_new_expression] = STATE(2548), + [sym_delete_expression] = STATE(2548), + [sym_lambda_expression] = STATE(2548), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6047), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6047), + [sym_char_literal] = ACTIONS(6047), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6049), + [sym_false] = ACTIONS(6049), + [sym_null] = ACTIONS(6049), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6025), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6049), }, - [2294] = { - [sym__expression] = STATE(2539), - [sym_conditional_expression] = STATE(2539), - [sym_assignment_expression] = STATE(2539), - [sym_pointer_expression] = STATE(2539), - [sym_logical_expression] = STATE(2539), - [sym_bitwise_expression] = STATE(2539), - [sym_equality_expression] = STATE(2539), - [sym_relational_expression] = STATE(2539), - [sym_shift_expression] = STATE(2539), - [sym_math_expression] = STATE(2539), - [sym_cast_expression] = STATE(2539), - [sym_sizeof_expression] = STATE(2539), - [sym_subscript_expression] = STATE(2539), - [sym_call_expression] = STATE(2539), - [sym_field_expression] = STATE(2539), - [sym_compound_literal_expression] = STATE(2539), - [sym_parenthesized_expression] = STATE(2539), - [sym_concatenated_string] = STATE(2539), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2539), - [sym_new_expression] = STATE(2539), - [sym_delete_expression] = STATE(2539), - [sym_lambda_expression] = STATE(2539), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6027), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6027), - [sym_char_literal] = ACTIONS(6027), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6029), - [sym_false] = ACTIONS(6029), - [sym_null] = ACTIONS(6029), + [2300] = { + [anon_sym_LPAREN] = ACTIONS(6051), + [sym_comment] = ACTIONS(49), + }, + [2301] = { + [sym__expression] = STATE(2550), + [sym_conditional_expression] = STATE(2550), + [sym_assignment_expression] = STATE(2550), + [sym_pointer_expression] = STATE(2550), + [sym_logical_expression] = STATE(2550), + [sym_bitwise_expression] = STATE(2550), + [sym_equality_expression] = STATE(2550), + [sym_relational_expression] = STATE(2550), + [sym_shift_expression] = STATE(2550), + [sym_math_expression] = STATE(2550), + [sym_cast_expression] = STATE(2550), + [sym_sizeof_expression] = STATE(2550), + [sym_subscript_expression] = STATE(2550), + [sym_call_expression] = STATE(2550), + [sym_field_expression] = STATE(2550), + [sym_compound_literal_expression] = STATE(2550), + [sym_parenthesized_expression] = STATE(2550), + [sym_concatenated_string] = STATE(2550), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2550), + [sym_new_expression] = STATE(2550), + [sym_delete_expression] = STATE(2550), + [sym_lambda_expression] = STATE(2550), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6053), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6053), + [sym_char_literal] = ACTIONS(6053), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6055), + [sym_false] = ACTIONS(6055), + [sym_null] = ACTIONS(6055), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6029), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6055), }, - [2295] = { + [2302] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6031), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(6057), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2296] = { - [sym_declaration] = STATE(2542), - [sym_type_definition] = STATE(2542), - [sym__declaration_specifiers] = STATE(2543), - [sym_compound_statement] = STATE(2542), + [2303] = { + [sym_declaration] = STATE(2553), + [sym_type_definition] = STATE(2553), + [sym__declaration_specifiers] = STATE(2554), + [sym_compound_statement] = STATE(2553), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -90926,58 +91148,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2542), - [sym_expression_statement] = STATE(2542), - [sym_if_statement] = STATE(2542), - [sym_switch_statement] = STATE(2542), - [sym_case_statement] = STATE(2542), - [sym_while_statement] = STATE(2542), - [sym_do_statement] = STATE(2542), - [sym_for_statement] = STATE(2542), - [sym_return_statement] = STATE(2542), - [sym_break_statement] = STATE(2542), - [sym_continue_statement] = STATE(2542), - [sym_goto_statement] = STATE(2542), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), + [sym_labeled_statement] = STATE(2553), + [sym_expression_statement] = STATE(2553), + [sym_if_statement] = STATE(2553), + [sym_switch_statement] = STATE(2553), + [sym_case_statement] = STATE(2553), + [sym_while_statement] = STATE(2553), + [sym_do_statement] = STATE(2553), + [sym_for_statement] = STATE(2553), + [sym_return_statement] = STATE(2553), + [sym_break_statement] = STATE(2553), + [sym_continue_statement] = STATE(2553), + [sym_goto_statement] = STATE(2553), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2542), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2553), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(4389), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_typedef] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_typedef] = ACTIONS(4413), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -90997,17 +91219,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -91016,82 +91238,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6033), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6059), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2297] = { - [sym__expression] = STATE(2544), - [sym_conditional_expression] = STATE(2544), - [sym_assignment_expression] = STATE(2544), - [sym_pointer_expression] = STATE(2544), - [sym_logical_expression] = STATE(2544), - [sym_bitwise_expression] = STATE(2544), - [sym_equality_expression] = STATE(2544), - [sym_relational_expression] = STATE(2544), - [sym_shift_expression] = STATE(2544), - [sym_math_expression] = STATE(2544), - [sym_cast_expression] = STATE(2544), - [sym_sizeof_expression] = STATE(2544), - [sym_subscript_expression] = STATE(2544), - [sym_call_expression] = STATE(2544), - [sym_field_expression] = STATE(2544), - [sym_compound_literal_expression] = STATE(2544), - [sym_parenthesized_expression] = STATE(2544), - [sym_concatenated_string] = STATE(2544), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2544), - [sym_new_expression] = STATE(2544), - [sym_delete_expression] = STATE(2544), - [sym_lambda_expression] = STATE(2544), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6035), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6035), - [sym_char_literal] = ACTIONS(6035), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6037), - [sym_false] = ACTIONS(6037), - [sym_null] = ACTIONS(6037), + [2304] = { + [sym__expression] = STATE(2555), + [sym_conditional_expression] = STATE(2555), + [sym_assignment_expression] = STATE(2555), + [sym_pointer_expression] = STATE(2555), + [sym_logical_expression] = STATE(2555), + [sym_bitwise_expression] = STATE(2555), + [sym_equality_expression] = STATE(2555), + [sym_relational_expression] = STATE(2555), + [sym_shift_expression] = STATE(2555), + [sym_math_expression] = STATE(2555), + [sym_cast_expression] = STATE(2555), + [sym_sizeof_expression] = STATE(2555), + [sym_subscript_expression] = STATE(2555), + [sym_call_expression] = STATE(2555), + [sym_field_expression] = STATE(2555), + [sym_compound_literal_expression] = STATE(2555), + [sym_parenthesized_expression] = STATE(2555), + [sym_concatenated_string] = STATE(2555), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2555), + [sym_new_expression] = STATE(2555), + [sym_delete_expression] = STATE(2555), + [sym_lambda_expression] = STATE(2555), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6061), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6061), + [sym_char_literal] = ACTIONS(6061), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6063), + [sym_false] = ACTIONS(6063), + [sym_null] = ACTIONS(6063), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6037), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6063), }, - [2298] = { - [anon_sym_while] = ACTIONS(6039), + [2305] = { + [anon_sym_while] = ACTIONS(6065), [sym_comment] = ACTIONS(49), }, - [2299] = { - [sym_declaration] = STATE(2546), - [sym__declaration_specifiers] = STATE(1497), + [2306] = { + [sym_declaration] = STATE(2557), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -91099,42 +91321,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2547), - [sym_conditional_expression] = STATE(2547), - [sym_assignment_expression] = STATE(2547), - [sym_pointer_expression] = STATE(2547), - [sym_logical_expression] = STATE(2547), - [sym_bitwise_expression] = STATE(2547), - [sym_equality_expression] = STATE(2547), - [sym_relational_expression] = STATE(2547), - [sym_shift_expression] = STATE(2547), - [sym_math_expression] = STATE(2547), - [sym_cast_expression] = STATE(2547), - [sym_sizeof_expression] = STATE(2547), - [sym_subscript_expression] = STATE(2547), - [sym_call_expression] = STATE(2547), - [sym_field_expression] = STATE(2547), - [sym_compound_literal_expression] = STATE(2547), - [sym_parenthesized_expression] = STATE(2547), - [sym_concatenated_string] = STATE(2547), + [sym__expression] = STATE(2558), + [sym_conditional_expression] = STATE(2558), + [sym_assignment_expression] = STATE(2558), + [sym_pointer_expression] = STATE(2558), + [sym_logical_expression] = STATE(2558), + [sym_bitwise_expression] = STATE(2558), + [sym_equality_expression] = STATE(2558), + [sym_relational_expression] = STATE(2558), + [sym_shift_expression] = STATE(2558), + [sym_math_expression] = STATE(2558), + [sym_cast_expression] = STATE(2558), + [sym_sizeof_expression] = STATE(2558), + [sym_subscript_expression] = STATE(2558), + [sym_call_expression] = STATE(2558), + [sym_field_expression] = STATE(2558), + [sym_compound_literal_expression] = STATE(2558), + [sym_parenthesized_expression] = STATE(2558), + [sym_concatenated_string] = STATE(2558), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2547), - [sym_for_range_declaration] = STATE(2548), - [sym_new_expression] = STATE(2547), - [sym_delete_expression] = STATE(2547), - [sym_lambda_expression] = STATE(2547), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2558), + [sym_for_range_declaration] = STATE(2559), + [sym_new_expression] = STATE(2558), + [sym_delete_expression] = STATE(2558), + [sym_lambda_expression] = STATE(2558), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6041), + [sym_raw_string_literal] = ACTIONS(6067), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6043), + [anon_sym_SEMI] = ACTIONS(6069), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -91163,136 +91385,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6041), - [sym_char_literal] = ACTIONS(6041), + [sym_number_literal] = ACTIONS(6067), + [sym_char_literal] = ACTIONS(6067), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6045), - [sym_false] = ACTIONS(6045), - [sym_null] = ACTIONS(6045), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(6071), + [sym_false] = ACTIONS(6071), + [sym_null] = ACTIONS(6071), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6045), + [sym_nullptr] = ACTIONS(6071), }, - [2300] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), - }, - [2301] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6047), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [2302] = { - [anon_sym_SEMI] = ACTIONS(6047), - [sym_comment] = ACTIONS(49), - }, - [2303] = { + [2307] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -91360,138 +91469,251 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [2304] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), + [2308] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(6073), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), }, - [2305] = { - [anon_sym_SEMI] = ACTIONS(6049), + [2309] = { + [anon_sym_SEMI] = ACTIONS(6073), [sym_comment] = ACTIONS(49), }, - [2306] = { - [sym_compound_statement] = STATE(2552), - [sym_labeled_statement] = STATE(2552), - [sym_expression_statement] = STATE(2552), - [sym_if_statement] = STATE(2552), - [sym_switch_statement] = STATE(2552), - [sym_case_statement] = STATE(2552), - [sym_while_statement] = STATE(2552), - [sym_do_statement] = STATE(2552), - [sym_for_statement] = STATE(2552), - [sym_return_statement] = STATE(2552), - [sym_break_statement] = STATE(2552), - [sym_continue_statement] = STATE(2552), - [sym_goto_statement] = STATE(2552), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2552), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2310] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), + }, + [2311] = { + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), + }, + [2312] = { + [anon_sym_SEMI] = ACTIONS(6075), + [sym_comment] = ACTIONS(49), + }, + [2313] = { + [sym_compound_statement] = STATE(2563), + [sym_labeled_statement] = STATE(2563), + [sym_expression_statement] = STATE(2563), + [sym_if_statement] = STATE(2563), + [sym_switch_statement] = STATE(2563), + [sym_case_statement] = STATE(2563), + [sym_while_statement] = STATE(2563), + [sym_do_statement] = STATE(2563), + [sym_for_statement] = STATE(2563), + [sym_return_statement] = STATE(2563), + [sym_break_statement] = STATE(2563), + [sym_continue_statement] = STATE(2563), + [sym_goto_statement] = STATE(2563), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2563), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -91500,20 +91722,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2307] = { + [2314] = { [sym_raw_string_literal] = ACTIONS(522), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(524), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(524), @@ -91581,120 +91803,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(524), [sym_nullptr] = ACTIONS(524), }, - [2308] = { + [2315] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(2554), + [aux_sym_declaration_repeat1] = STATE(2565), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6053), + [anon_sym_SEMI] = ACTIONS(6079), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [2309] = { - [aux_sym_declaration_repeat1] = STATE(2554), + [2316] = { + [aux_sym_declaration_repeat1] = STATE(2565), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6053), + [anon_sym_SEMI] = ACTIONS(6079), [sym_comment] = ACTIONS(49), }, - [2310] = { - [sym_argument_list] = STATE(2556), - [sym_initializer_list] = STATE(2556), + [2317] = { + [sym_argument_list] = STATE(2567), + [sym_initializer_list] = STATE(2567), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(6055), + [anon_sym_EQ] = ACTIONS(6081), [sym_comment] = ACTIONS(49), }, - [2311] = { - [sym_argument_list] = STATE(2558), - [sym_initializer_list] = STATE(2558), + [2318] = { + [sym_argument_list] = STATE(2569), + [sym_initializer_list] = STATE(2569), [anon_sym_LPAREN] = ACTIONS(546), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_EQ] = ACTIONS(6057), + [anon_sym_EQ] = ACTIONS(6083), [sym_comment] = ACTIONS(49), }, - [2312] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), + [2319] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), }, - [2313] = { - [sym_preproc_include] = STATE(2313), - [sym_preproc_def] = STATE(2313), - [sym_preproc_function_def] = STATE(2313), - [sym_preproc_call] = STATE(2313), - [sym_preproc_if_in_compound_statement] = STATE(1941), - [sym_preproc_ifdef_in_compound_statement] = STATE(1942), - [sym_declaration] = STATE(2313), - [sym_type_definition] = STATE(2313), - [sym__declaration_specifiers] = STATE(1943), - [sym_compound_statement] = STATE(2313), + [2320] = { + [sym_preproc_include] = STATE(2320), + [sym_preproc_def] = STATE(2320), + [sym_preproc_function_def] = STATE(2320), + [sym_preproc_call] = STATE(2320), + [sym_preproc_if_in_compound_statement] = STATE(1944), + [sym_preproc_ifdef_in_compound_statement] = STATE(1945), + [sym_declaration] = STATE(2320), + [sym_type_definition] = STATE(2320), + [sym__declaration_specifiers] = STATE(1946), + [sym_compound_statement] = STATE(2320), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -91702,143 +91924,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2313), - [sym_expression_statement] = STATE(2313), - [sym_if_statement] = STATE(2313), - [sym_switch_statement] = STATE(2313), - [sym_case_statement] = STATE(2313), - [sym_while_statement] = STATE(2313), - [sym_do_statement] = STATE(2313), - [sym_for_statement] = STATE(2313), - [sym_return_statement] = STATE(2313), - [sym_break_statement] = STATE(2313), - [sym_continue_statement] = STATE(2313), - [sym_goto_statement] = STATE(2313), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym__empty_declaration] = STATE(2313), + [sym_labeled_statement] = STATE(2320), + [sym_expression_statement] = STATE(2320), + [sym_if_statement] = STATE(2320), + [sym_switch_statement] = STATE(2320), + [sym_case_statement] = STATE(2320), + [sym_while_statement] = STATE(2320), + [sym_do_statement] = STATE(2320), + [sym_for_statement] = STATE(2320), + [sym_return_statement] = STATE(2320), + [sym_break_statement] = STATE(2320), + [sym_continue_statement] = STATE(2320), + [sym_goto_statement] = STATE(2320), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym__empty_declaration] = STATE(2320), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2313), + [sym_structured_binding_declaration] = STATE(2320), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2313), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2320), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2313), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2320), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(6059), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6062), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6065), - [anon_sym_LPAREN] = ACTIONS(3189), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6068), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5415), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6071), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6074), - [sym_preproc_directive] = ACTIONS(6077), - [anon_sym_SEMI] = ACTIONS(6080), - [anon_sym_typedef] = ACTIONS(6083), - [anon_sym_extern] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(6086), - [anon_sym_STAR] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_register] = ACTIONS(3210), - [anon_sym_inline] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_restrict] = ACTIONS(3224), - [anon_sym_volatile] = ACTIONS(3224), - [anon_sym__Atomic] = ACTIONS(3224), - [anon_sym_mutable] = ACTIONS(3224), - [anon_sym_explicit] = ACTIONS(3224), - [anon_sym_constexpr] = ACTIONS(3224), - [anon_sym_unsigned] = ACTIONS(3227), - [anon_sym_long] = ACTIONS(3227), - [anon_sym_short] = ACTIONS(3227), - [sym_primitive_type] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3236), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(6089), - [anon_sym_switch] = ACTIONS(6092), - [anon_sym_case] = ACTIONS(6095), - [anon_sym_default] = ACTIONS(6098), - [anon_sym_while] = ACTIONS(6101), - [anon_sym_do] = ACTIONS(6104), - [anon_sym_for] = ACTIONS(6107), - [anon_sym_return] = ACTIONS(6110), - [anon_sym_break] = ACTIONS(6113), - [anon_sym_continue] = ACTIONS(6116), - [anon_sym_goto] = ACTIONS(6119), - [anon_sym_AMP] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_sizeof] = ACTIONS(3287), - [sym_number_literal] = ACTIONS(6059), - [sym_char_literal] = ACTIONS(6059), - [sym_string_literal] = ACTIONS(3290), - [sym_true] = ACTIONS(6122), - [sym_false] = ACTIONS(6122), - [sym_null] = ACTIONS(6122), - [sym_identifier] = ACTIONS(6125), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3299), - [sym_auto] = ACTIONS(3230), - [anon_sym_typename] = ACTIONS(3302), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3311), - [sym_nullptr] = ACTIONS(6122), + [sym_raw_string_literal] = ACTIONS(6085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6088), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6091), + [anon_sym_LPAREN] = ACTIONS(3195), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6094), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5433), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6097), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6100), + [sym_preproc_directive] = ACTIONS(6103), + [anon_sym_SEMI] = ACTIONS(6106), + [anon_sym_typedef] = ACTIONS(6109), + [anon_sym_extern] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(6112), + [anon_sym_STAR] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_register] = ACTIONS(3216), + [anon_sym_inline] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_restrict] = ACTIONS(3230), + [anon_sym_volatile] = ACTIONS(3230), + [anon_sym__Atomic] = ACTIONS(3230), + [anon_sym_mutable] = ACTIONS(3230), + [anon_sym_explicit] = ACTIONS(3230), + [anon_sym_constexpr] = ACTIONS(3230), + [anon_sym_unsigned] = ACTIONS(3233), + [anon_sym_long] = ACTIONS(3233), + [anon_sym_short] = ACTIONS(3233), + [sym_primitive_type] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3242), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(6115), + [anon_sym_switch] = ACTIONS(6118), + [anon_sym_case] = ACTIONS(6121), + [anon_sym_default] = ACTIONS(6124), + [anon_sym_while] = ACTIONS(6127), + [anon_sym_do] = ACTIONS(6130), + [anon_sym_for] = ACTIONS(6133), + [anon_sym_return] = ACTIONS(6136), + [anon_sym_break] = ACTIONS(6139), + [anon_sym_continue] = ACTIONS(6142), + [anon_sym_goto] = ACTIONS(6145), + [anon_sym_AMP] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_sizeof] = ACTIONS(3293), + [sym_number_literal] = ACTIONS(6085), + [sym_char_literal] = ACTIONS(6085), + [sym_string_literal] = ACTIONS(3296), + [sym_true] = ACTIONS(6148), + [sym_false] = ACTIONS(6148), + [sym_null] = ACTIONS(6148), + [sym_identifier] = ACTIONS(6151), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3305), + [sym_auto] = ACTIONS(3236), + [anon_sym_typename] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_COLON_COLON] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3317), + [sym_nullptr] = ACTIONS(6148), }, - [2314] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6128), + [2321] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6154), [sym_comment] = ACTIONS(49), }, - [2315] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6130), + [2322] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6156), [sym_comment] = ACTIONS(49), }, - [2316] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2559), - [sym_preproc_elif_in_compound_statement] = STATE(2560), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2323] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2570), + [sym_preproc_elif_in_compound_statement] = STATE(2571), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -91846,70 +92068,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6132), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6158), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -91929,17 +92151,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -91948,13 +92170,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -91962,21 +92184,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2317] = { - [anon_sym_LF] = ACTIONS(6134), + [2324] = { + [anon_sym_LF] = ACTIONS(6160), [sym_comment] = ACTIONS(83), }, - [2318] = { + [2325] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6136), + [anon_sym_SEMI] = ACTIONS(6162), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2319] = { - [sym__type_declarator] = STATE(2563), + [2326] = { + [sym__type_declarator] = STATE(2574), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -91985,163 +92207,216 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2320] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), + [2327] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), }, - [2321] = { + [2328] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6138), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6164), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2322] = { + [2329] = { + [sym__expression] = STATE(2576), + [sym_conditional_expression] = STATE(2576), + [sym_assignment_expression] = STATE(2576), + [sym_pointer_expression] = STATE(2576), + [sym_logical_expression] = STATE(2576), + [sym_bitwise_expression] = STATE(2576), + [sym_equality_expression] = STATE(2576), + [sym_relational_expression] = STATE(2576), + [sym_shift_expression] = STATE(2576), + [sym_math_expression] = STATE(2576), + [sym_cast_expression] = STATE(2576), + [sym_sizeof_expression] = STATE(2576), + [sym_subscript_expression] = STATE(2576), + [sym_call_expression] = STATE(2576), + [sym_field_expression] = STATE(2576), + [sym_compound_literal_expression] = STATE(2576), + [sym_parenthesized_expression] = STATE(2576), + [sym_concatenated_string] = STATE(2576), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2576), + [sym_new_expression] = STATE(2576), + [sym_delete_expression] = STATE(2576), + [sym_lambda_expression] = STATE(2576), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6166), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6166), + [sym_char_literal] = ACTIONS(6166), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6168), + [sym_false] = ACTIONS(6168), + [sym_null] = ACTIONS(6168), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6168), + }, + [2330] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6140), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6170), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2323] = { - [sym_declaration] = STATE(2566), - [sym_type_definition] = STATE(2566), - [sym__declaration_specifiers] = STATE(2326), - [sym_compound_statement] = STATE(2566), + [2331] = { + [sym_declaration] = STATE(2578), + [sym_type_definition] = STATE(2578), + [sym__declaration_specifiers] = STATE(2334), + [sym_compound_statement] = STATE(2578), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -92149,58 +92424,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2566), - [sym_expression_statement] = STATE(2566), - [sym_if_statement] = STATE(2566), - [sym_switch_statement] = STATE(2566), - [sym_case_statement] = STATE(2566), - [sym_while_statement] = STATE(2566), - [sym_do_statement] = STATE(2566), - [sym_for_statement] = STATE(2566), - [sym_return_statement] = STATE(2566), - [sym_break_statement] = STATE(2566), - [sym_continue_statement] = STATE(2566), - [sym_goto_statement] = STATE(2566), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), + [sym_labeled_statement] = STATE(2578), + [sym_expression_statement] = STATE(2578), + [sym_if_statement] = STATE(2578), + [sym_switch_statement] = STATE(2578), + [sym_case_statement] = STATE(2578), + [sym_while_statement] = STATE(2578), + [sym_do_statement] = STATE(2578), + [sym_for_statement] = STATE(2578), + [sym_return_statement] = STATE(2578), + [sym_break_statement] = STATE(2578), + [sym_continue_statement] = STATE(2578), + [sym_goto_statement] = STATE(2578), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2566), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2578), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(2877), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -92220,17 +92495,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -92239,25 +92514,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5361), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5379), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2324] = { + [2332] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -92276,7 +92551,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4481), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -92312,89 +92587,89 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2325] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [2333] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [2326] = { - [sym__declarator] = STATE(1971), - [sym_pointer_declarator] = STATE(1971), - [sym_function_declarator] = STATE(1971), - [sym_array_declarator] = STATE(1971), - [sym_init_declarator] = STATE(1972), - [sym_reference_declarator] = STATE(1971), + [2334] = { + [sym__declarator] = STATE(1975), + [sym_pointer_declarator] = STATE(1975), + [sym_function_declarator] = STATE(1975), + [sym_array_declarator] = STATE(1975), + [sym_init_declarator] = STATE(1976), + [sym_reference_declarator] = STATE(1975), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(1971), - [sym_destructor_name] = STATE(1971), + [sym_template_function] = STATE(1975), + [sym_destructor_name] = STATE(1975), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -92406,84 +92681,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(4481), + [sym_operator_name] = ACTIONS(4489), }, - [2327] = { + [2335] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6142), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6172), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2328] = { - [anon_sym_LPAREN] = ACTIONS(6144), + [2336] = { + [anon_sym_LPAREN] = ACTIONS(6174), [sym_comment] = ACTIONS(49), }, - [2329] = { - [sym__expression] = STATE(2570), - [sym_conditional_expression] = STATE(2570), - [sym_assignment_expression] = STATE(2570), - [sym_pointer_expression] = STATE(2570), - [sym_logical_expression] = STATE(2570), - [sym_bitwise_expression] = STATE(2570), - [sym_equality_expression] = STATE(2570), - [sym_relational_expression] = STATE(2570), - [sym_shift_expression] = STATE(2570), - [sym_math_expression] = STATE(2570), - [sym_cast_expression] = STATE(2570), - [sym_sizeof_expression] = STATE(2570), - [sym_subscript_expression] = STATE(2570), - [sym_call_expression] = STATE(2570), - [sym_field_expression] = STATE(2570), - [sym_compound_literal_expression] = STATE(2570), - [sym_parenthesized_expression] = STATE(2570), - [sym_concatenated_string] = STATE(2570), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2570), - [sym_new_expression] = STATE(2570), - [sym_delete_expression] = STATE(2570), - [sym_lambda_expression] = STATE(2570), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6146), + [2337] = { + [sym__expression] = STATE(2582), + [sym_conditional_expression] = STATE(2582), + [sym_assignment_expression] = STATE(2582), + [sym_pointer_expression] = STATE(2582), + [sym_logical_expression] = STATE(2582), + [sym_bitwise_expression] = STATE(2582), + [sym_equality_expression] = STATE(2582), + [sym_relational_expression] = STATE(2582), + [sym_shift_expression] = STATE(2582), + [sym_math_expression] = STATE(2582), + [sym_cast_expression] = STATE(2582), + [sym_sizeof_expression] = STATE(2582), + [sym_subscript_expression] = STATE(2582), + [sym_call_expression] = STATE(2582), + [sym_field_expression] = STATE(2582), + [sym_compound_literal_expression] = STATE(2582), + [sym_parenthesized_expression] = STATE(2582), + [sym_concatenated_string] = STATE(2582), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2582), + [sym_new_expression] = STATE(2582), + [sym_delete_expression] = STATE(2582), + [sym_lambda_expression] = STATE(2582), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6176), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6148), + [anon_sym_SEMI] = ACTIONS(6178), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -92494,207 +92769,207 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6146), - [sym_char_literal] = ACTIONS(6146), + [sym_number_literal] = ACTIONS(6176), + [sym_char_literal] = ACTIONS(6176), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6150), - [sym_false] = ACTIONS(6150), - [sym_null] = ACTIONS(6150), + [sym_true] = ACTIONS(6180), + [sym_false] = ACTIONS(6180), + [sym_null] = ACTIONS(6180), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6150), + [sym_nullptr] = ACTIONS(6180), }, - [2330] = { + [2338] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6152), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6182), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2331] = { - [anon_sym_COLON] = ACTIONS(6154), + [2339] = { + [anon_sym_COLON] = ACTIONS(6184), [sym_comment] = ACTIONS(49), }, - [2332] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [2340] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [2333] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [2341] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [2334] = { + [2342] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -92702,7 +92977,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4481), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -92736,79 +93011,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2335] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [2343] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [2336] = { + [2344] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -92878,42 +93153,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [2337] = { + [2345] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6156), + [anon_sym_SEMI] = ACTIONS(6186), [sym_comment] = ACTIONS(49), }, - [2338] = { - [sym__expression] = STATE(2574), - [sym_conditional_expression] = STATE(2574), - [sym_assignment_expression] = STATE(2574), - [sym_pointer_expression] = STATE(2574), - [sym_logical_expression] = STATE(2574), - [sym_bitwise_expression] = STATE(2574), - [sym_equality_expression] = STATE(2574), - [sym_relational_expression] = STATE(2574), - [sym_shift_expression] = STATE(2574), - [sym_math_expression] = STATE(2574), - [sym_cast_expression] = STATE(2574), - [sym_sizeof_expression] = STATE(2574), - [sym_subscript_expression] = STATE(2574), - [sym_call_expression] = STATE(2574), - [sym_field_expression] = STATE(2574), - [sym_compound_literal_expression] = STATE(2574), - [sym_parenthesized_expression] = STATE(2574), - [sym_initializer_list] = STATE(2575), - [sym_concatenated_string] = STATE(2574), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2574), - [sym_new_expression] = STATE(2574), - [sym_delete_expression] = STATE(2574), - [sym_lambda_expression] = STATE(2574), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6158), + [2346] = { + [sym__expression] = STATE(2586), + [sym_conditional_expression] = STATE(2586), + [sym_assignment_expression] = STATE(2586), + [sym_pointer_expression] = STATE(2586), + [sym_logical_expression] = STATE(2586), + [sym_bitwise_expression] = STATE(2586), + [sym_equality_expression] = STATE(2586), + [sym_relational_expression] = STATE(2586), + [sym_shift_expression] = STATE(2586), + [sym_math_expression] = STATE(2586), + [sym_cast_expression] = STATE(2586), + [sym_sizeof_expression] = STATE(2586), + [sym_subscript_expression] = STATE(2586), + [sym_call_expression] = STATE(2586), + [sym_field_expression] = STATE(2586), + [sym_compound_literal_expression] = STATE(2586), + [sym_parenthesized_expression] = STATE(2586), + [sym_initializer_list] = STATE(2587), + [sym_concatenated_string] = STATE(2586), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2586), + [sym_new_expression] = STATE(2586), + [sym_delete_expression] = STATE(2586), + [sym_lambda_expression] = STATE(2586), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6188), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -92926,53 +93201,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6158), - [sym_char_literal] = ACTIONS(6158), + [sym_number_literal] = ACTIONS(6188), + [sym_char_literal] = ACTIONS(6188), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6160), - [sym_false] = ACTIONS(6160), - [sym_null] = ACTIONS(6160), + [sym_true] = ACTIONS(6190), + [sym_false] = ACTIONS(6190), + [sym_null] = ACTIONS(6190), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6160), + [sym_nullptr] = ACTIONS(6190), }, - [2339] = { - [anon_sym_SEMI] = ACTIONS(6162), + [2347] = { + [anon_sym_SEMI] = ACTIONS(6192), [sym_comment] = ACTIONS(49), }, - [2340] = { - [sym__expression] = STATE(2577), - [sym_conditional_expression] = STATE(2577), - [sym_assignment_expression] = STATE(2577), - [sym_pointer_expression] = STATE(2577), - [sym_logical_expression] = STATE(2577), - [sym_bitwise_expression] = STATE(2577), - [sym_equality_expression] = STATE(2577), - [sym_relational_expression] = STATE(2577), - [sym_shift_expression] = STATE(2577), - [sym_math_expression] = STATE(2577), - [sym_cast_expression] = STATE(2577), - [sym_sizeof_expression] = STATE(2577), - [sym_subscript_expression] = STATE(2577), - [sym_call_expression] = STATE(2577), - [sym_field_expression] = STATE(2577), - [sym_compound_literal_expression] = STATE(2577), - [sym_parenthesized_expression] = STATE(2577), - [sym_initializer_list] = STATE(2578), - [sym_concatenated_string] = STATE(2577), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2577), - [sym_new_expression] = STATE(2577), - [sym_delete_expression] = STATE(2577), - [sym_lambda_expression] = STATE(2577), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6164), + [2348] = { + [sym__expression] = STATE(2589), + [sym_conditional_expression] = STATE(2589), + [sym_assignment_expression] = STATE(2589), + [sym_pointer_expression] = STATE(2589), + [sym_logical_expression] = STATE(2589), + [sym_bitwise_expression] = STATE(2589), + [sym_equality_expression] = STATE(2589), + [sym_relational_expression] = STATE(2589), + [sym_shift_expression] = STATE(2589), + [sym_math_expression] = STATE(2589), + [sym_cast_expression] = STATE(2589), + [sym_sizeof_expression] = STATE(2589), + [sym_subscript_expression] = STATE(2589), + [sym_call_expression] = STATE(2589), + [sym_field_expression] = STATE(2589), + [sym_compound_literal_expression] = STATE(2589), + [sym_parenthesized_expression] = STATE(2589), + [sym_initializer_list] = STATE(2590), + [sym_concatenated_string] = STATE(2589), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2589), + [sym_new_expression] = STATE(2589), + [sym_delete_expression] = STATE(2589), + [sym_lambda_expression] = STATE(2589), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6194), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -92985,601 +93260,601 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6164), - [sym_char_literal] = ACTIONS(6164), + [sym_number_literal] = ACTIONS(6194), + [sym_char_literal] = ACTIONS(6194), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6166), - [sym_false] = ACTIONS(6166), - [sym_null] = ACTIONS(6166), + [sym_true] = ACTIONS(6196), + [sym_false] = ACTIONS(6196), + [sym_null] = ACTIONS(6196), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6166), + [sym_nullptr] = ACTIONS(6196), }, - [2341] = { - [anon_sym_SEMI] = ACTIONS(6168), + [2349] = { + [anon_sym_SEMI] = ACTIONS(6198), [sym_comment] = ACTIONS(49), }, - [2342] = { - [sym_raw_string_literal] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6172), - [anon_sym_LPAREN] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6172), - [sym_preproc_directive] = ACTIONS(6172), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_typedef] = ACTIONS(6172), - [anon_sym_extern] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(6170), - [anon_sym_RBRACE] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_static] = ACTIONS(6172), - [anon_sym_register] = ACTIONS(6172), - [anon_sym_inline] = ACTIONS(6172), - [anon_sym_const] = ACTIONS(6172), - [anon_sym_restrict] = ACTIONS(6172), - [anon_sym_volatile] = ACTIONS(6172), - [anon_sym__Atomic] = ACTIONS(6172), - [anon_sym_mutable] = ACTIONS(6172), - [anon_sym_explicit] = ACTIONS(6172), - [anon_sym_constexpr] = ACTIONS(6172), - [anon_sym_unsigned] = ACTIONS(6172), - [anon_sym_long] = ACTIONS(6172), - [anon_sym_short] = ACTIONS(6172), - [sym_primitive_type] = ACTIONS(6172), - [anon_sym_enum] = ACTIONS(6172), - [anon_sym_struct] = ACTIONS(6172), - [anon_sym_union] = ACTIONS(6172), - [anon_sym_if] = ACTIONS(6172), - [anon_sym_switch] = ACTIONS(6172), - [anon_sym_case] = ACTIONS(6172), - [anon_sym_default] = ACTIONS(6172), - [anon_sym_while] = ACTIONS(6172), - [anon_sym_do] = ACTIONS(6172), - [anon_sym_for] = ACTIONS(6172), - [anon_sym_return] = ACTIONS(6172), - [anon_sym_break] = ACTIONS(6172), - [anon_sym_continue] = ACTIONS(6172), - [anon_sym_goto] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6170), - [anon_sym_BANG] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_sizeof] = ACTIONS(6172), - [sym_number_literal] = ACTIONS(6170), - [sym_char_literal] = ACTIONS(6170), - [sym_string_literal] = ACTIONS(6170), - [sym_true] = ACTIONS(6172), - [sym_false] = ACTIONS(6172), - [sym_null] = ACTIONS(6172), - [sym_identifier] = ACTIONS(6172), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6172), - [sym_auto] = ACTIONS(6172), - [anon_sym_typename] = ACTIONS(6172), - [anon_sym_new] = ACTIONS(6172), - [anon_sym_COLON_COLON] = ACTIONS(6170), - [anon_sym_delete] = ACTIONS(6172), - [sym_nullptr] = ACTIONS(6172), + [2350] = { + [sym_raw_string_literal] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6202), + [anon_sym_LPAREN] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6202), + [sym_preproc_directive] = ACTIONS(6202), + [anon_sym_SEMI] = ACTIONS(6200), + [anon_sym_typedef] = ACTIONS(6202), + [anon_sym_extern] = ACTIONS(6202), + [anon_sym_LBRACE] = ACTIONS(6200), + [anon_sym_RBRACE] = ACTIONS(6200), + [anon_sym_STAR] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(6200), + [anon_sym_static] = ACTIONS(6202), + [anon_sym_register] = ACTIONS(6202), + [anon_sym_inline] = ACTIONS(6202), + [anon_sym_const] = ACTIONS(6202), + [anon_sym_restrict] = ACTIONS(6202), + [anon_sym_volatile] = ACTIONS(6202), + [anon_sym__Atomic] = ACTIONS(6202), + [anon_sym_mutable] = ACTIONS(6202), + [anon_sym_explicit] = ACTIONS(6202), + [anon_sym_constexpr] = ACTIONS(6202), + [anon_sym_unsigned] = ACTIONS(6202), + [anon_sym_long] = ACTIONS(6202), + [anon_sym_short] = ACTIONS(6202), + [sym_primitive_type] = ACTIONS(6202), + [anon_sym_enum] = ACTIONS(6202), + [anon_sym_struct] = ACTIONS(6202), + [anon_sym_union] = ACTIONS(6202), + [anon_sym_if] = ACTIONS(6202), + [anon_sym_switch] = ACTIONS(6202), + [anon_sym_case] = ACTIONS(6202), + [anon_sym_default] = ACTIONS(6202), + [anon_sym_while] = ACTIONS(6202), + [anon_sym_do] = ACTIONS(6202), + [anon_sym_for] = ACTIONS(6202), + [anon_sym_return] = ACTIONS(6202), + [anon_sym_break] = ACTIONS(6202), + [anon_sym_continue] = ACTIONS(6202), + [anon_sym_goto] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6200), + [anon_sym_BANG] = ACTIONS(6200), + [anon_sym_TILDE] = ACTIONS(6200), + [anon_sym_PLUS] = ACTIONS(6202), + [anon_sym_DASH] = ACTIONS(6202), + [anon_sym_DASH_DASH] = ACTIONS(6200), + [anon_sym_PLUS_PLUS] = ACTIONS(6200), + [anon_sym_sizeof] = ACTIONS(6202), + [sym_number_literal] = ACTIONS(6200), + [sym_char_literal] = ACTIONS(6200), + [sym_string_literal] = ACTIONS(6200), + [sym_true] = ACTIONS(6202), + [sym_false] = ACTIONS(6202), + [sym_null] = ACTIONS(6202), + [sym_identifier] = ACTIONS(6202), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6202), + [sym_auto] = ACTIONS(6202), + [anon_sym_typename] = ACTIONS(6202), + [anon_sym_new] = ACTIONS(6202), + [anon_sym_COLON_COLON] = ACTIONS(6200), + [anon_sym_delete] = ACTIONS(6202), + [sym_nullptr] = ACTIONS(6202), }, - [2343] = { - [sym_raw_string_literal] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6176), - [anon_sym_LPAREN] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6176), - [sym_preproc_directive] = ACTIONS(6176), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_typedef] = ACTIONS(6176), - [anon_sym_extern] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(6174), - [anon_sym_RBRACE] = ACTIONS(6174), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_static] = ACTIONS(6176), - [anon_sym_register] = ACTIONS(6176), - [anon_sym_inline] = ACTIONS(6176), - [anon_sym_const] = ACTIONS(6176), - [anon_sym_restrict] = ACTIONS(6176), - [anon_sym_volatile] = ACTIONS(6176), - [anon_sym__Atomic] = ACTIONS(6176), - [anon_sym_mutable] = ACTIONS(6176), - [anon_sym_explicit] = ACTIONS(6176), - [anon_sym_constexpr] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [sym_primitive_type] = ACTIONS(6176), - [anon_sym_enum] = ACTIONS(6176), - [anon_sym_struct] = ACTIONS(6176), - [anon_sym_union] = ACTIONS(6176), - [anon_sym_if] = ACTIONS(6176), - [anon_sym_switch] = ACTIONS(6176), - [anon_sym_case] = ACTIONS(6176), - [anon_sym_default] = ACTIONS(6176), - [anon_sym_while] = ACTIONS(6176), - [anon_sym_do] = ACTIONS(6176), - [anon_sym_for] = ACTIONS(6176), - [anon_sym_return] = ACTIONS(6176), - [anon_sym_break] = ACTIONS(6176), - [anon_sym_continue] = ACTIONS(6176), - [anon_sym_goto] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6174), - [anon_sym_BANG] = ACTIONS(6174), - [anon_sym_TILDE] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_sizeof] = ACTIONS(6176), - [sym_number_literal] = ACTIONS(6174), - [sym_char_literal] = ACTIONS(6174), - [sym_string_literal] = ACTIONS(6174), - [sym_true] = ACTIONS(6176), - [sym_false] = ACTIONS(6176), - [sym_null] = ACTIONS(6176), - [sym_identifier] = ACTIONS(6176), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6176), - [sym_auto] = ACTIONS(6176), - [anon_sym_typename] = ACTIONS(6176), - [anon_sym_new] = ACTIONS(6176), - [anon_sym_COLON_COLON] = ACTIONS(6174), - [anon_sym_delete] = ACTIONS(6176), - [sym_nullptr] = ACTIONS(6176), + [2351] = { + [sym_raw_string_literal] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6206), + [anon_sym_LPAREN] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6206), + [sym_preproc_directive] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6204), + [anon_sym_typedef] = ACTIONS(6206), + [anon_sym_extern] = ACTIONS(6206), + [anon_sym_LBRACE] = ACTIONS(6204), + [anon_sym_RBRACE] = ACTIONS(6204), + [anon_sym_STAR] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [anon_sym_static] = ACTIONS(6206), + [anon_sym_register] = ACTIONS(6206), + [anon_sym_inline] = ACTIONS(6206), + [anon_sym_const] = ACTIONS(6206), + [anon_sym_restrict] = ACTIONS(6206), + [anon_sym_volatile] = ACTIONS(6206), + [anon_sym__Atomic] = ACTIONS(6206), + [anon_sym_mutable] = ACTIONS(6206), + [anon_sym_explicit] = ACTIONS(6206), + [anon_sym_constexpr] = ACTIONS(6206), + [anon_sym_unsigned] = ACTIONS(6206), + [anon_sym_long] = ACTIONS(6206), + [anon_sym_short] = ACTIONS(6206), + [sym_primitive_type] = ACTIONS(6206), + [anon_sym_enum] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(6206), + [anon_sym_union] = ACTIONS(6206), + [anon_sym_if] = ACTIONS(6206), + [anon_sym_switch] = ACTIONS(6206), + [anon_sym_case] = ACTIONS(6206), + [anon_sym_default] = ACTIONS(6206), + [anon_sym_while] = ACTIONS(6206), + [anon_sym_do] = ACTIONS(6206), + [anon_sym_for] = ACTIONS(6206), + [anon_sym_return] = ACTIONS(6206), + [anon_sym_break] = ACTIONS(6206), + [anon_sym_continue] = ACTIONS(6206), + [anon_sym_goto] = ACTIONS(6206), + [anon_sym_AMP] = ACTIONS(6204), + [anon_sym_BANG] = ACTIONS(6204), + [anon_sym_TILDE] = ACTIONS(6204), + [anon_sym_PLUS] = ACTIONS(6206), + [anon_sym_DASH] = ACTIONS(6206), + [anon_sym_DASH_DASH] = ACTIONS(6204), + [anon_sym_PLUS_PLUS] = ACTIONS(6204), + [anon_sym_sizeof] = ACTIONS(6206), + [sym_number_literal] = ACTIONS(6204), + [sym_char_literal] = ACTIONS(6204), + [sym_string_literal] = ACTIONS(6204), + [sym_true] = ACTIONS(6206), + [sym_false] = ACTIONS(6206), + [sym_null] = ACTIONS(6206), + [sym_identifier] = ACTIONS(6206), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6206), + [sym_auto] = ACTIONS(6206), + [anon_sym_typename] = ACTIONS(6206), + [anon_sym_new] = ACTIONS(6206), + [anon_sym_COLON_COLON] = ACTIONS(6204), + [anon_sym_delete] = ACTIONS(6206), + [sym_nullptr] = ACTIONS(6206), }, - [2344] = { - [sym_raw_string_literal] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6180), - [anon_sym_LPAREN] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6180), - [sym_preproc_directive] = ACTIONS(6180), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_typedef] = ACTIONS(6180), - [anon_sym_extern] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(6178), - [anon_sym_RBRACE] = ACTIONS(6178), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_static] = ACTIONS(6180), - [anon_sym_register] = ACTIONS(6180), - [anon_sym_inline] = ACTIONS(6180), - [anon_sym_const] = ACTIONS(6180), - [anon_sym_restrict] = ACTIONS(6180), - [anon_sym_volatile] = ACTIONS(6180), - [anon_sym__Atomic] = ACTIONS(6180), - [anon_sym_mutable] = ACTIONS(6180), - [anon_sym_explicit] = ACTIONS(6180), - [anon_sym_constexpr] = ACTIONS(6180), - [anon_sym_unsigned] = ACTIONS(6180), - [anon_sym_long] = ACTIONS(6180), - [anon_sym_short] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(6180), - [anon_sym_enum] = ACTIONS(6180), - [anon_sym_struct] = ACTIONS(6180), - [anon_sym_union] = ACTIONS(6180), - [anon_sym_if] = ACTIONS(6180), - [anon_sym_switch] = ACTIONS(6180), - [anon_sym_case] = ACTIONS(6180), - [anon_sym_default] = ACTIONS(6180), - [anon_sym_while] = ACTIONS(6180), - [anon_sym_do] = ACTIONS(6180), - [anon_sym_for] = ACTIONS(6180), - [anon_sym_return] = ACTIONS(6180), - [anon_sym_break] = ACTIONS(6180), - [anon_sym_continue] = ACTIONS(6180), - [anon_sym_goto] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6178), - [anon_sym_BANG] = ACTIONS(6178), - [anon_sym_TILDE] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_sizeof] = ACTIONS(6180), - [sym_number_literal] = ACTIONS(6178), - [sym_char_literal] = ACTIONS(6178), - [sym_string_literal] = ACTIONS(6178), - [sym_true] = ACTIONS(6180), - [sym_false] = ACTIONS(6180), - [sym_null] = ACTIONS(6180), - [sym_identifier] = ACTIONS(6180), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6180), - [sym_auto] = ACTIONS(6180), - [anon_sym_typename] = ACTIONS(6180), - [anon_sym_new] = ACTIONS(6180), - [anon_sym_COLON_COLON] = ACTIONS(6178), - [anon_sym_delete] = ACTIONS(6180), - [sym_nullptr] = ACTIONS(6180), + [2352] = { + [sym_raw_string_literal] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6210), + [anon_sym_LPAREN] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6210), + [sym_preproc_directive] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym_typedef] = ACTIONS(6210), + [anon_sym_extern] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_RBRACE] = ACTIONS(6208), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_static] = ACTIONS(6210), + [anon_sym_register] = ACTIONS(6210), + [anon_sym_inline] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6210), + [anon_sym_restrict] = ACTIONS(6210), + [anon_sym_volatile] = ACTIONS(6210), + [anon_sym__Atomic] = ACTIONS(6210), + [anon_sym_mutable] = ACTIONS(6210), + [anon_sym_explicit] = ACTIONS(6210), + [anon_sym_constexpr] = ACTIONS(6210), + [anon_sym_unsigned] = ACTIONS(6210), + [anon_sym_long] = ACTIONS(6210), + [anon_sym_short] = ACTIONS(6210), + [sym_primitive_type] = ACTIONS(6210), + [anon_sym_enum] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(6210), + [anon_sym_union] = ACTIONS(6210), + [anon_sym_if] = ACTIONS(6210), + [anon_sym_switch] = ACTIONS(6210), + [anon_sym_case] = ACTIONS(6210), + [anon_sym_default] = ACTIONS(6210), + [anon_sym_while] = ACTIONS(6210), + [anon_sym_do] = ACTIONS(6210), + [anon_sym_for] = ACTIONS(6210), + [anon_sym_return] = ACTIONS(6210), + [anon_sym_break] = ACTIONS(6210), + [anon_sym_continue] = ACTIONS(6210), + [anon_sym_goto] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6208), + [anon_sym_BANG] = ACTIONS(6208), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_sizeof] = ACTIONS(6210), + [sym_number_literal] = ACTIONS(6208), + [sym_char_literal] = ACTIONS(6208), + [sym_string_literal] = ACTIONS(6208), + [sym_true] = ACTIONS(6210), + [sym_false] = ACTIONS(6210), + [sym_null] = ACTIONS(6210), + [sym_identifier] = ACTIONS(6210), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6210), + [sym_auto] = ACTIONS(6210), + [anon_sym_typename] = ACTIONS(6210), + [anon_sym_new] = ACTIONS(6210), + [anon_sym_COLON_COLON] = ACTIONS(6208), + [anon_sym_delete] = ACTIONS(6210), + [sym_nullptr] = ACTIONS(6210), }, - [2345] = { - [sym_raw_string_literal] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6184), - [sym_preproc_directive] = ACTIONS(6184), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_typedef] = ACTIONS(6184), - [anon_sym_extern] = ACTIONS(6184), - [anon_sym_LBRACE] = ACTIONS(6182), - [anon_sym_RBRACE] = ACTIONS(6182), - [anon_sym_STAR] = ACTIONS(6182), - [anon_sym_LBRACK] = ACTIONS(6182), - [anon_sym_static] = ACTIONS(6184), - [anon_sym_register] = ACTIONS(6184), - [anon_sym_inline] = ACTIONS(6184), - [anon_sym_const] = ACTIONS(6184), - [anon_sym_restrict] = ACTIONS(6184), - [anon_sym_volatile] = ACTIONS(6184), - [anon_sym__Atomic] = ACTIONS(6184), - [anon_sym_mutable] = ACTIONS(6184), - [anon_sym_explicit] = ACTIONS(6184), - [anon_sym_constexpr] = ACTIONS(6184), - [anon_sym_unsigned] = ACTIONS(6184), - [anon_sym_long] = ACTIONS(6184), - [anon_sym_short] = ACTIONS(6184), - [sym_primitive_type] = ACTIONS(6184), - [anon_sym_enum] = ACTIONS(6184), - [anon_sym_struct] = ACTIONS(6184), - [anon_sym_union] = ACTIONS(6184), - [anon_sym_if] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_case] = ACTIONS(6184), - [anon_sym_default] = ACTIONS(6184), - [anon_sym_while] = ACTIONS(6184), - [anon_sym_do] = ACTIONS(6184), - [anon_sym_for] = ACTIONS(6184), - [anon_sym_return] = ACTIONS(6184), - [anon_sym_break] = ACTIONS(6184), - [anon_sym_continue] = ACTIONS(6184), - [anon_sym_goto] = ACTIONS(6184), - [anon_sym_AMP] = ACTIONS(6182), - [anon_sym_BANG] = ACTIONS(6182), - [anon_sym_TILDE] = ACTIONS(6182), - [anon_sym_PLUS] = ACTIONS(6184), - [anon_sym_DASH] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6182), - [anon_sym_PLUS_PLUS] = ACTIONS(6182), - [anon_sym_sizeof] = ACTIONS(6184), - [sym_number_literal] = ACTIONS(6182), - [sym_char_literal] = ACTIONS(6182), - [sym_string_literal] = ACTIONS(6182), - [sym_true] = ACTIONS(6184), - [sym_false] = ACTIONS(6184), - [sym_null] = ACTIONS(6184), - [sym_identifier] = ACTIONS(6184), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6184), - [sym_auto] = ACTIONS(6184), - [anon_sym_typename] = ACTIONS(6184), - [anon_sym_new] = ACTIONS(6184), - [anon_sym_COLON_COLON] = ACTIONS(6182), - [anon_sym_delete] = ACTIONS(6184), - [sym_nullptr] = ACTIONS(6184), + [2353] = { + [sym_raw_string_literal] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6214), + [anon_sym_LPAREN] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6214), + [sym_preproc_directive] = ACTIONS(6214), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym_typedef] = ACTIONS(6214), + [anon_sym_extern] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(6212), + [anon_sym_RBRACE] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6214), + [anon_sym_register] = ACTIONS(6214), + [anon_sym_inline] = ACTIONS(6214), + [anon_sym_const] = ACTIONS(6214), + [anon_sym_restrict] = ACTIONS(6214), + [anon_sym_volatile] = ACTIONS(6214), + [anon_sym__Atomic] = ACTIONS(6214), + [anon_sym_mutable] = ACTIONS(6214), + [anon_sym_explicit] = ACTIONS(6214), + [anon_sym_constexpr] = ACTIONS(6214), + [anon_sym_unsigned] = ACTIONS(6214), + [anon_sym_long] = ACTIONS(6214), + [anon_sym_short] = ACTIONS(6214), + [sym_primitive_type] = ACTIONS(6214), + [anon_sym_enum] = ACTIONS(6214), + [anon_sym_struct] = ACTIONS(6214), + [anon_sym_union] = ACTIONS(6214), + [anon_sym_if] = ACTIONS(6214), + [anon_sym_switch] = ACTIONS(6214), + [anon_sym_case] = ACTIONS(6214), + [anon_sym_default] = ACTIONS(6214), + [anon_sym_while] = ACTIONS(6214), + [anon_sym_do] = ACTIONS(6214), + [anon_sym_for] = ACTIONS(6214), + [anon_sym_return] = ACTIONS(6214), + [anon_sym_break] = ACTIONS(6214), + [anon_sym_continue] = ACTIONS(6214), + [anon_sym_goto] = ACTIONS(6214), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_BANG] = ACTIONS(6212), + [anon_sym_TILDE] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_DASH_DASH] = ACTIONS(6212), + [anon_sym_PLUS_PLUS] = ACTIONS(6212), + [anon_sym_sizeof] = ACTIONS(6214), + [sym_number_literal] = ACTIONS(6212), + [sym_char_literal] = ACTIONS(6212), + [sym_string_literal] = ACTIONS(6212), + [sym_true] = ACTIONS(6214), + [sym_false] = ACTIONS(6214), + [sym_null] = ACTIONS(6214), + [sym_identifier] = ACTIONS(6214), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6214), + [sym_auto] = ACTIONS(6214), + [anon_sym_typename] = ACTIONS(6214), + [anon_sym_new] = ACTIONS(6214), + [anon_sym_COLON_COLON] = ACTIONS(6212), + [anon_sym_delete] = ACTIONS(6214), + [sym_nullptr] = ACTIONS(6214), }, - [2346] = { - [sym_raw_string_literal] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6188), - [sym_preproc_directive] = ACTIONS(6188), - [anon_sym_SEMI] = ACTIONS(6186), - [anon_sym_typedef] = ACTIONS(6188), - [anon_sym_extern] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(6186), - [anon_sym_RBRACE] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6186), - [anon_sym_LBRACK] = ACTIONS(6186), - [anon_sym_static] = ACTIONS(6188), - [anon_sym_register] = ACTIONS(6188), - [anon_sym_inline] = ACTIONS(6188), - [anon_sym_const] = ACTIONS(6188), - [anon_sym_restrict] = ACTIONS(6188), - [anon_sym_volatile] = ACTIONS(6188), - [anon_sym__Atomic] = ACTIONS(6188), - [anon_sym_mutable] = ACTIONS(6188), - [anon_sym_explicit] = ACTIONS(6188), - [anon_sym_constexpr] = ACTIONS(6188), - [anon_sym_unsigned] = ACTIONS(6188), - [anon_sym_long] = ACTIONS(6188), - [anon_sym_short] = ACTIONS(6188), - [sym_primitive_type] = ACTIONS(6188), - [anon_sym_enum] = ACTIONS(6188), - [anon_sym_struct] = ACTIONS(6188), - [anon_sym_union] = ACTIONS(6188), - [anon_sym_if] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_case] = ACTIONS(6188), - [anon_sym_default] = ACTIONS(6188), - [anon_sym_while] = ACTIONS(6188), - [anon_sym_do] = ACTIONS(6188), - [anon_sym_for] = ACTIONS(6188), - [anon_sym_return] = ACTIONS(6188), - [anon_sym_break] = ACTIONS(6188), - [anon_sym_continue] = ACTIONS(6188), - [anon_sym_goto] = ACTIONS(6188), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_TILDE] = ACTIONS(6186), - [anon_sym_PLUS] = ACTIONS(6188), - [anon_sym_DASH] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6186), - [anon_sym_sizeof] = ACTIONS(6188), - [sym_number_literal] = ACTIONS(6186), - [sym_char_literal] = ACTIONS(6186), - [sym_string_literal] = ACTIONS(6186), - [sym_true] = ACTIONS(6188), - [sym_false] = ACTIONS(6188), - [sym_null] = ACTIONS(6188), - [sym_identifier] = ACTIONS(6188), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6188), - [sym_auto] = ACTIONS(6188), - [anon_sym_typename] = ACTIONS(6188), - [anon_sym_new] = ACTIONS(6188), - [anon_sym_COLON_COLON] = ACTIONS(6186), - [anon_sym_delete] = ACTIONS(6188), - [sym_nullptr] = ACTIONS(6188), + [2354] = { + [sym_raw_string_literal] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6218), + [anon_sym_LPAREN] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6218), + [sym_preproc_directive] = ACTIONS(6218), + [anon_sym_SEMI] = ACTIONS(6216), + [anon_sym_typedef] = ACTIONS(6218), + [anon_sym_extern] = ACTIONS(6218), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_RBRACE] = ACTIONS(6216), + [anon_sym_STAR] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(6216), + [anon_sym_static] = ACTIONS(6218), + [anon_sym_register] = ACTIONS(6218), + [anon_sym_inline] = ACTIONS(6218), + [anon_sym_const] = ACTIONS(6218), + [anon_sym_restrict] = ACTIONS(6218), + [anon_sym_volatile] = ACTIONS(6218), + [anon_sym__Atomic] = ACTIONS(6218), + [anon_sym_mutable] = ACTIONS(6218), + [anon_sym_explicit] = ACTIONS(6218), + [anon_sym_constexpr] = ACTIONS(6218), + [anon_sym_unsigned] = ACTIONS(6218), + [anon_sym_long] = ACTIONS(6218), + [anon_sym_short] = ACTIONS(6218), + [sym_primitive_type] = ACTIONS(6218), + [anon_sym_enum] = ACTIONS(6218), + [anon_sym_struct] = ACTIONS(6218), + [anon_sym_union] = ACTIONS(6218), + [anon_sym_if] = ACTIONS(6218), + [anon_sym_switch] = ACTIONS(6218), + [anon_sym_case] = ACTIONS(6218), + [anon_sym_default] = ACTIONS(6218), + [anon_sym_while] = ACTIONS(6218), + [anon_sym_do] = ACTIONS(6218), + [anon_sym_for] = ACTIONS(6218), + [anon_sym_return] = ACTIONS(6218), + [anon_sym_break] = ACTIONS(6218), + [anon_sym_continue] = ACTIONS(6218), + [anon_sym_goto] = ACTIONS(6218), + [anon_sym_AMP] = ACTIONS(6216), + [anon_sym_BANG] = ACTIONS(6216), + [anon_sym_TILDE] = ACTIONS(6216), + [anon_sym_PLUS] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(6218), + [anon_sym_DASH_DASH] = ACTIONS(6216), + [anon_sym_PLUS_PLUS] = ACTIONS(6216), + [anon_sym_sizeof] = ACTIONS(6218), + [sym_number_literal] = ACTIONS(6216), + [sym_char_literal] = ACTIONS(6216), + [sym_string_literal] = ACTIONS(6216), + [sym_true] = ACTIONS(6218), + [sym_false] = ACTIONS(6218), + [sym_null] = ACTIONS(6218), + [sym_identifier] = ACTIONS(6218), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6218), + [sym_auto] = ACTIONS(6218), + [anon_sym_typename] = ACTIONS(6218), + [anon_sym_new] = ACTIONS(6218), + [anon_sym_COLON_COLON] = ACTIONS(6216), + [anon_sym_delete] = ACTIONS(6218), + [sym_nullptr] = ACTIONS(6218), }, - [2347] = { - [sym_raw_string_literal] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6192), - [sym_preproc_directive] = ACTIONS(6192), - [anon_sym_SEMI] = ACTIONS(6190), - [anon_sym_typedef] = ACTIONS(6192), - [anon_sym_extern] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(6190), - [anon_sym_RBRACE] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(6190), - [anon_sym_static] = ACTIONS(6192), - [anon_sym_register] = ACTIONS(6192), - [anon_sym_inline] = ACTIONS(6192), - [anon_sym_const] = ACTIONS(6192), - [anon_sym_restrict] = ACTIONS(6192), - [anon_sym_volatile] = ACTIONS(6192), - [anon_sym__Atomic] = ACTIONS(6192), - [anon_sym_mutable] = ACTIONS(6192), - [anon_sym_explicit] = ACTIONS(6192), - [anon_sym_constexpr] = ACTIONS(6192), - [anon_sym_unsigned] = ACTIONS(6192), - [anon_sym_long] = ACTIONS(6192), - [anon_sym_short] = ACTIONS(6192), - [sym_primitive_type] = ACTIONS(6192), - [anon_sym_enum] = ACTIONS(6192), - [anon_sym_struct] = ACTIONS(6192), - [anon_sym_union] = ACTIONS(6192), - [anon_sym_if] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_case] = ACTIONS(6192), - [anon_sym_default] = ACTIONS(6192), - [anon_sym_while] = ACTIONS(6192), - [anon_sym_do] = ACTIONS(6192), - [anon_sym_for] = ACTIONS(6192), - [anon_sym_return] = ACTIONS(6192), - [anon_sym_break] = ACTIONS(6192), - [anon_sym_continue] = ACTIONS(6192), - [anon_sym_goto] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_TILDE] = ACTIONS(6190), - [anon_sym_PLUS] = ACTIONS(6192), - [anon_sym_DASH] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6190), - [anon_sym_sizeof] = ACTIONS(6192), - [sym_number_literal] = ACTIONS(6190), - [sym_char_literal] = ACTIONS(6190), - [sym_string_literal] = ACTIONS(6190), - [sym_true] = ACTIONS(6192), - [sym_false] = ACTIONS(6192), - [sym_null] = ACTIONS(6192), - [sym_identifier] = ACTIONS(6192), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6192), - [sym_auto] = ACTIONS(6192), - [anon_sym_typename] = ACTIONS(6192), - [anon_sym_new] = ACTIONS(6192), - [anon_sym_COLON_COLON] = ACTIONS(6190), - [anon_sym_delete] = ACTIONS(6192), - [sym_nullptr] = ACTIONS(6192), + [2355] = { + [sym_raw_string_literal] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6222), + [anon_sym_LPAREN] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6222), + [sym_preproc_directive] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(6220), + [anon_sym_typedef] = ACTIONS(6222), + [anon_sym_extern] = ACTIONS(6222), + [anon_sym_LBRACE] = ACTIONS(6220), + [anon_sym_RBRACE] = ACTIONS(6220), + [anon_sym_STAR] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(6220), + [anon_sym_static] = ACTIONS(6222), + [anon_sym_register] = ACTIONS(6222), + [anon_sym_inline] = ACTIONS(6222), + [anon_sym_const] = ACTIONS(6222), + [anon_sym_restrict] = ACTIONS(6222), + [anon_sym_volatile] = ACTIONS(6222), + [anon_sym__Atomic] = ACTIONS(6222), + [anon_sym_mutable] = ACTIONS(6222), + [anon_sym_explicit] = ACTIONS(6222), + [anon_sym_constexpr] = ACTIONS(6222), + [anon_sym_unsigned] = ACTIONS(6222), + [anon_sym_long] = ACTIONS(6222), + [anon_sym_short] = ACTIONS(6222), + [sym_primitive_type] = ACTIONS(6222), + [anon_sym_enum] = ACTIONS(6222), + [anon_sym_struct] = ACTIONS(6222), + [anon_sym_union] = ACTIONS(6222), + [anon_sym_if] = ACTIONS(6222), + [anon_sym_switch] = ACTIONS(6222), + [anon_sym_case] = ACTIONS(6222), + [anon_sym_default] = ACTIONS(6222), + [anon_sym_while] = ACTIONS(6222), + [anon_sym_do] = ACTIONS(6222), + [anon_sym_for] = ACTIONS(6222), + [anon_sym_return] = ACTIONS(6222), + [anon_sym_break] = ACTIONS(6222), + [anon_sym_continue] = ACTIONS(6222), + [anon_sym_goto] = ACTIONS(6222), + [anon_sym_AMP] = ACTIONS(6220), + [anon_sym_BANG] = ACTIONS(6220), + [anon_sym_TILDE] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_DASH_DASH] = ACTIONS(6220), + [anon_sym_PLUS_PLUS] = ACTIONS(6220), + [anon_sym_sizeof] = ACTIONS(6222), + [sym_number_literal] = ACTIONS(6220), + [sym_char_literal] = ACTIONS(6220), + [sym_string_literal] = ACTIONS(6220), + [sym_true] = ACTIONS(6222), + [sym_false] = ACTIONS(6222), + [sym_null] = ACTIONS(6222), + [sym_identifier] = ACTIONS(6222), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6222), + [sym_auto] = ACTIONS(6222), + [anon_sym_typename] = ACTIONS(6222), + [anon_sym_new] = ACTIONS(6222), + [anon_sym_COLON_COLON] = ACTIONS(6220), + [anon_sym_delete] = ACTIONS(6222), + [sym_nullptr] = ACTIONS(6222), }, - [2348] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), + [2356] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), }, - [2349] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(2941), + [2357] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(2943), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4141), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4147), }, - [2350] = { - [anon_sym_RPAREN] = ACTIONS(6194), + [2358] = { + [anon_sym_RPAREN] = ACTIONS(6224), [sym_comment] = ACTIONS(49), }, - [2351] = { - [aux_sym_concatenated_string_repeat1] = STATE(2351), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_RPAREN] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(6196), + [2359] = { + [aux_sym_concatenated_string_repeat1] = STATE(2359), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_RPAREN] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(6226), [sym_comment] = ACTIONS(49), }, - [2352] = { + [2360] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -93612,7 +93887,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(6199), + [anon_sym_RBRACK] = ACTIONS(6229), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -93635,102 +93910,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [2353] = { + [2361] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2354] = { - [sym__expression] = STATE(2582), - [sym_conditional_expression] = STATE(2582), - [sym_assignment_expression] = STATE(2582), - [sym_pointer_expression] = STATE(2582), - [sym_logical_expression] = STATE(2582), - [sym_bitwise_expression] = STATE(2582), - [sym_equality_expression] = STATE(2582), - [sym_relational_expression] = STATE(2582), - [sym_shift_expression] = STATE(2582), - [sym_math_expression] = STATE(2582), - [sym_cast_expression] = STATE(2582), - [sym_sizeof_expression] = STATE(2582), - [sym_subscript_expression] = STATE(2582), - [sym_call_expression] = STATE(2582), - [sym_field_expression] = STATE(2582), - [sym_compound_literal_expression] = STATE(2582), - [sym_parenthesized_expression] = STATE(2582), - [sym_concatenated_string] = STATE(2582), + [2362] = { + [sym__expression] = STATE(2594), + [sym_conditional_expression] = STATE(2594), + [sym_assignment_expression] = STATE(2594), + [sym_pointer_expression] = STATE(2594), + [sym_logical_expression] = STATE(2594), + [sym_bitwise_expression] = STATE(2594), + [sym_equality_expression] = STATE(2594), + [sym_relational_expression] = STATE(2594), + [sym_shift_expression] = STATE(2594), + [sym_math_expression] = STATE(2594), + [sym_cast_expression] = STATE(2594), + [sym_sizeof_expression] = STATE(2594), + [sym_subscript_expression] = STATE(2594), + [sym_call_expression] = STATE(2594), + [sym_field_expression] = STATE(2594), + [sym_compound_literal_expression] = STATE(2594), + [sym_parenthesized_expression] = STATE(2594), + [sym_concatenated_string] = STATE(2594), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2582), - [sym_new_expression] = STATE(2582), - [sym_delete_expression] = STATE(2582), - [sym_lambda_expression] = STATE(2582), + [sym_template_function] = STATE(2594), + [sym_new_expression] = STATE(2594), + [sym_delete_expression] = STATE(2594), + [sym_lambda_expression] = STATE(2594), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6201), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6201), - [sym_char_literal] = ACTIONS(6201), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6203), - [sym_false] = ACTIONS(6203), - [sym_null] = ACTIONS(6203), + [sym_raw_string_literal] = ACTIONS(6231), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6231), + [sym_char_literal] = ACTIONS(6231), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6233), + [sym_false] = ACTIONS(6233), + [sym_null] = ACTIONS(6233), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6203), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6233), }, - [2355] = { + [2363] = { [sym_raw_string_literal] = ACTIONS(1614), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1616), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), @@ -93799,17 +94074,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1616), [sym_nullptr] = ACTIONS(1616), }, - [2356] = { - [sym_preproc_include] = STATE(2584), - [sym_preproc_def] = STATE(2584), - [sym_preproc_function_def] = STATE(2584), - [sym_preproc_call] = STATE(2584), + [2364] = { + [sym_preproc_include] = STATE(2596), + [sym_preproc_def] = STATE(2596), + [sym_preproc_function_def] = STATE(2596), + [sym_preproc_call] = STATE(2596), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(2584), - [sym_type_definition] = STATE(2584), + [sym_declaration] = STATE(2596), + [sym_type_definition] = STATE(2596), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(2584), + [sym_compound_statement] = STATE(2596), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -93817,18 +94092,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2584), - [sym_expression_statement] = STATE(2584), - [sym_if_statement] = STATE(2584), - [sym_switch_statement] = STATE(2584), - [sym_case_statement] = STATE(2584), - [sym_while_statement] = STATE(2584), - [sym_do_statement] = STATE(2584), - [sym_for_statement] = STATE(2584), - [sym_return_statement] = STATE(2584), - [sym_break_statement] = STATE(2584), - [sym_continue_statement] = STATE(2584), - [sym_goto_statement] = STATE(2584), + [sym_labeled_statement] = STATE(2596), + [sym_expression_statement] = STATE(2596), + [sym_if_statement] = STATE(2596), + [sym_switch_statement] = STATE(2596), + [sym_case_statement] = STATE(2596), + [sym_while_statement] = STATE(2596), + [sym_do_statement] = STATE(2596), + [sym_for_statement] = STATE(2596), + [sym_return_statement] = STATE(2596), + [sym_break_statement] = STATE(2596), + [sym_continue_statement] = STATE(2596), + [sym_goto_statement] = STATE(2596), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -93848,14 +94123,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(2584), + [sym__empty_declaration] = STATE(2596), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2584), + [sym_structured_binding_declaration] = STATE(2596), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2584), + [sym_for_range_loop] = STATE(2596), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -93863,7 +94138,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2584), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2596), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -93878,7 +94153,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6205), + [anon_sym_RBRACE] = ACTIONS(6235), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -93933,135 +94208,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2357] = { - [anon_sym_LPAREN] = ACTIONS(6207), + [2365] = { + [anon_sym_LPAREN] = ACTIONS(6237), + [anon_sym_constexpr] = ACTIONS(6239), [sym_comment] = ACTIONS(49), }, - [2358] = { - [anon_sym_LPAREN] = ACTIONS(6209), + [2366] = { + [anon_sym_LPAREN] = ACTIONS(6241), [sym_comment] = ACTIONS(49), }, - [2359] = { - [sym__expression] = STATE(2587), - [sym_conditional_expression] = STATE(2587), - [sym_assignment_expression] = STATE(2587), - [sym_pointer_expression] = STATE(2587), - [sym_logical_expression] = STATE(2587), - [sym_bitwise_expression] = STATE(2587), - [sym_equality_expression] = STATE(2587), - [sym_relational_expression] = STATE(2587), - [sym_shift_expression] = STATE(2587), - [sym_math_expression] = STATE(2587), - [sym_cast_expression] = STATE(2587), - [sym_sizeof_expression] = STATE(2587), - [sym_subscript_expression] = STATE(2587), - [sym_call_expression] = STATE(2587), - [sym_field_expression] = STATE(2587), - [sym_compound_literal_expression] = STATE(2587), - [sym_parenthesized_expression] = STATE(2587), - [sym_concatenated_string] = STATE(2587), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2587), - [sym_new_expression] = STATE(2587), - [sym_delete_expression] = STATE(2587), - [sym_lambda_expression] = STATE(2587), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6211), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6211), - [sym_char_literal] = ACTIONS(6211), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6213), - [sym_false] = ACTIONS(6213), - [sym_null] = ACTIONS(6213), + [2367] = { + [sym__expression] = STATE(2600), + [sym_conditional_expression] = STATE(2600), + [sym_assignment_expression] = STATE(2600), + [sym_pointer_expression] = STATE(2600), + [sym_logical_expression] = STATE(2600), + [sym_bitwise_expression] = STATE(2600), + [sym_equality_expression] = STATE(2600), + [sym_relational_expression] = STATE(2600), + [sym_shift_expression] = STATE(2600), + [sym_math_expression] = STATE(2600), + [sym_cast_expression] = STATE(2600), + [sym_sizeof_expression] = STATE(2600), + [sym_subscript_expression] = STATE(2600), + [sym_call_expression] = STATE(2600), + [sym_field_expression] = STATE(2600), + [sym_compound_literal_expression] = STATE(2600), + [sym_parenthesized_expression] = STATE(2600), + [sym_concatenated_string] = STATE(2600), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2600), + [sym_new_expression] = STATE(2600), + [sym_delete_expression] = STATE(2600), + [sym_lambda_expression] = STATE(2600), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6243), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6243), + [sym_char_literal] = ACTIONS(6243), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6245), + [sym_false] = ACTIONS(6245), + [sym_null] = ACTIONS(6245), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6213), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6245), }, - [2360] = { - [anon_sym_COLON] = ACTIONS(6215), + [2368] = { + [anon_sym_COLON] = ACTIONS(6247), [sym_comment] = ACTIONS(49), }, - [2361] = { - [anon_sym_LPAREN] = ACTIONS(6217), + [2369] = { + [anon_sym_LPAREN] = ACTIONS(6249), [sym_comment] = ACTIONS(49), }, - [2362] = { - [sym_compound_statement] = STATE(2590), - [sym_labeled_statement] = STATE(2590), - [sym_expression_statement] = STATE(2590), - [sym_if_statement] = STATE(2590), - [sym_switch_statement] = STATE(2590), - [sym_case_statement] = STATE(2590), - [sym_while_statement] = STATE(2590), - [sym_do_statement] = STATE(2590), - [sym_for_statement] = STATE(2590), - [sym_return_statement] = STATE(2590), - [sym_break_statement] = STATE(2590), - [sym_continue_statement] = STATE(2590), - [sym_goto_statement] = STATE(2590), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2590), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2370] = { + [sym_compound_statement] = STATE(2603), + [sym_labeled_statement] = STATE(2603), + [sym_expression_statement] = STATE(2603), + [sym_if_statement] = STATE(2603), + [sym_switch_statement] = STATE(2603), + [sym_case_statement] = STATE(2603), + [sym_while_statement] = STATE(2603), + [sym_do_statement] = STATE(2603), + [sym_for_statement] = STATE(2603), + [sym_return_statement] = STATE(2603), + [sym_break_statement] = STATE(2603), + [sym_continue_statement] = STATE(2603), + [sym_goto_statement] = STATE(2603), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2603), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -94070,55 +94346,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2363] = { - [anon_sym_LPAREN] = ACTIONS(6219), + [2371] = { + [anon_sym_LPAREN] = ACTIONS(6251), [sym_comment] = ACTIONS(49), }, - [2364] = { - [sym__expression] = STATE(2593), - [sym_conditional_expression] = STATE(2593), - [sym_assignment_expression] = STATE(2593), - [sym_pointer_expression] = STATE(2593), - [sym_logical_expression] = STATE(2593), - [sym_bitwise_expression] = STATE(2593), - [sym_equality_expression] = STATE(2593), - [sym_relational_expression] = STATE(2593), - [sym_shift_expression] = STATE(2593), - [sym_math_expression] = STATE(2593), - [sym_cast_expression] = STATE(2593), - [sym_sizeof_expression] = STATE(2593), - [sym_subscript_expression] = STATE(2593), - [sym_call_expression] = STATE(2593), - [sym_field_expression] = STATE(2593), - [sym_compound_literal_expression] = STATE(2593), - [sym_parenthesized_expression] = STATE(2593), - [sym_initializer_list] = STATE(2594), - [sym_concatenated_string] = STATE(2593), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2593), - [sym_new_expression] = STATE(2593), - [sym_delete_expression] = STATE(2593), - [sym_lambda_expression] = STATE(2593), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6221), + [2372] = { + [sym__expression] = STATE(2606), + [sym_conditional_expression] = STATE(2606), + [sym_assignment_expression] = STATE(2606), + [sym_pointer_expression] = STATE(2606), + [sym_logical_expression] = STATE(2606), + [sym_bitwise_expression] = STATE(2606), + [sym_equality_expression] = STATE(2606), + [sym_relational_expression] = STATE(2606), + [sym_shift_expression] = STATE(2606), + [sym_math_expression] = STATE(2606), + [sym_cast_expression] = STATE(2606), + [sym_sizeof_expression] = STATE(2606), + [sym_subscript_expression] = STATE(2606), + [sym_call_expression] = STATE(2606), + [sym_field_expression] = STATE(2606), + [sym_compound_literal_expression] = STATE(2606), + [sym_parenthesized_expression] = STATE(2606), + [sym_initializer_list] = STATE(2607), + [sym_concatenated_string] = STATE(2606), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2606), + [sym_new_expression] = STATE(2606), + [sym_delete_expression] = STATE(2606), + [sym_lambda_expression] = STATE(2606), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6253), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6223), + [anon_sym_SEMI] = ACTIONS(6255), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -94130,34 +94406,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6221), - [sym_char_literal] = ACTIONS(6221), + [sym_number_literal] = ACTIONS(6253), + [sym_char_literal] = ACTIONS(6253), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6225), - [sym_false] = ACTIONS(6225), - [sym_null] = ACTIONS(6225), + [sym_true] = ACTIONS(6257), + [sym_false] = ACTIONS(6257), + [sym_null] = ACTIONS(6257), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6225), + [sym_nullptr] = ACTIONS(6257), }, - [2365] = { - [anon_sym_SEMI] = ACTIONS(6227), + [2373] = { + [anon_sym_SEMI] = ACTIONS(6259), [sym_comment] = ACTIONS(49), }, - [2366] = { - [anon_sym_SEMI] = ACTIONS(6229), + [2374] = { + [anon_sym_SEMI] = ACTIONS(6261), [sym_comment] = ACTIONS(49), }, - [2367] = { - [sym_identifier] = ACTIONS(6231), + [2375] = { + [sym_identifier] = ACTIONS(6263), [sym_comment] = ACTIONS(49), }, - [2368] = { + [2376] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -94165,7 +94441,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(6233), + [anon_sym_COLON] = ACTIONS(6265), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -94199,922 +94475,1003 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2369] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(6239), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [2377] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_RBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(6271), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [2370] = { + [2378] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(6241), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(6273), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2371] = { - [anon_sym_SEMI] = ACTIONS(6241), + [2379] = { + [anon_sym_SEMI] = ACTIONS(6273), [sym_comment] = ACTIONS(49), }, - [2372] = { + [2380] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2373] = { + [2381] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6243), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(6275), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2374] = { + [2382] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2375] = { + [2383] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2376] = { + [2384] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2377] = { + [2385] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2378] = { + [2386] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2379] = { + [2387] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2380] = { + [2388] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2381] = { + [2389] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2382] = { + [2390] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2383] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), + [2391] = { + [sym_compound_statement] = STATE(2615), + [sym_labeled_statement] = STATE(2615), + [sym_expression_statement] = STATE(2615), + [sym_if_statement] = STATE(2615), + [sym_switch_statement] = STATE(2615), + [sym_case_statement] = STATE(2615), + [sym_while_statement] = STATE(2615), + [sym_do_statement] = STATE(2615), + [sym_for_statement] = STATE(2615), + [sym_return_statement] = STATE(2615), + [sym_break_statement] = STATE(2615), + [sym_continue_statement] = STATE(2615), + [sym_goto_statement] = STATE(2615), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2615), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(5566), }, - [2384] = { + [2392] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [2393] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(5162), + [anon_sym_STAR] = ACTIONS(5176), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5162), - [anon_sym_COLON] = ACTIONS(5160), - [anon_sym_QMARK] = ACTIONS(5160), - [anon_sym_STAR_EQ] = ACTIONS(5160), - [anon_sym_SLASH_EQ] = ACTIONS(5160), - [anon_sym_PERCENT_EQ] = ACTIONS(5160), - [anon_sym_PLUS_EQ] = ACTIONS(5160), - [anon_sym_DASH_EQ] = ACTIONS(5160), - [anon_sym_LT_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_GT_EQ] = ACTIONS(5160), - [anon_sym_AMP_EQ] = ACTIONS(5160), - [anon_sym_CARET_EQ] = ACTIONS(5160), - [anon_sym_PIPE_EQ] = ACTIONS(5160), - [anon_sym_AMP] = ACTIONS(5162), - [anon_sym_PIPE_PIPE] = ACTIONS(5160), - [anon_sym_AMP_AMP] = ACTIONS(5160), - [anon_sym_PIPE] = ACTIONS(5162), - [anon_sym_CARET] = ACTIONS(5162), - [anon_sym_EQ_EQ] = ACTIONS(5160), - [anon_sym_BANG_EQ] = ACTIONS(5160), - [anon_sym_LT] = ACTIONS(5162), - [anon_sym_GT] = ACTIONS(5162), - [anon_sym_LT_EQ] = ACTIONS(5160), - [anon_sym_GT_EQ] = ACTIONS(5160), - [anon_sym_LT_LT] = ACTIONS(5162), - [anon_sym_GT_GT] = ACTIONS(5162), - [anon_sym_PLUS] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_SLASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5162), + [anon_sym_EQ] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5174), + [anon_sym_QMARK] = ACTIONS(5174), + [anon_sym_STAR_EQ] = ACTIONS(5174), + [anon_sym_SLASH_EQ] = ACTIONS(5174), + [anon_sym_PERCENT_EQ] = ACTIONS(5174), + [anon_sym_PLUS_EQ] = ACTIONS(5174), + [anon_sym_DASH_EQ] = ACTIONS(5174), + [anon_sym_LT_LT_EQ] = ACTIONS(5174), + [anon_sym_GT_GT_EQ] = ACTIONS(5174), + [anon_sym_AMP_EQ] = ACTIONS(5174), + [anon_sym_CARET_EQ] = ACTIONS(5174), + [anon_sym_PIPE_EQ] = ACTIONS(5174), + [anon_sym_AMP] = ACTIONS(5176), + [anon_sym_PIPE_PIPE] = ACTIONS(5174), + [anon_sym_AMP_AMP] = ACTIONS(5174), + [anon_sym_PIPE] = ACTIONS(5176), + [anon_sym_CARET] = ACTIONS(5176), + [anon_sym_EQ_EQ] = ACTIONS(5174), + [anon_sym_BANG_EQ] = ACTIONS(5174), + [anon_sym_LT] = ACTIONS(5176), + [anon_sym_GT] = ACTIONS(5176), + [anon_sym_LT_EQ] = ACTIONS(5174), + [anon_sym_GT_EQ] = ACTIONS(5174), + [anon_sym_LT_LT] = ACTIONS(5176), + [anon_sym_GT_GT] = ACTIONS(5176), + [anon_sym_PLUS] = ACTIONS(5176), + [anon_sym_DASH] = ACTIONS(5176), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_PERCENT] = ACTIONS(5176), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2385] = { - [sym__expression] = STATE(2384), - [sym_conditional_expression] = STATE(2384), - [sym_assignment_expression] = STATE(2384), - [sym_pointer_expression] = STATE(2384), - [sym_logical_expression] = STATE(2384), - [sym_bitwise_expression] = STATE(2384), - [sym_equality_expression] = STATE(2384), - [sym_relational_expression] = STATE(2384), - [sym_shift_expression] = STATE(2384), - [sym_math_expression] = STATE(2384), - [sym_cast_expression] = STATE(2384), - [sym_sizeof_expression] = STATE(2384), - [sym_subscript_expression] = STATE(2384), - [sym_call_expression] = STATE(2384), - [sym_field_expression] = STATE(2384), - [sym_compound_literal_expression] = STATE(2384), - [sym_parenthesized_expression] = STATE(2384), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(2384), + [2394] = { + [sym__expression] = STATE(2393), + [sym_conditional_expression] = STATE(2393), + [sym_assignment_expression] = STATE(2393), + [sym_pointer_expression] = STATE(2393), + [sym_logical_expression] = STATE(2393), + [sym_bitwise_expression] = STATE(2393), + [sym_equality_expression] = STATE(2393), + [sym_relational_expression] = STATE(2393), + [sym_shift_expression] = STATE(2393), + [sym_math_expression] = STATE(2393), + [sym_cast_expression] = STATE(2393), + [sym_sizeof_expression] = STATE(2393), + [sym_subscript_expression] = STATE(2393), + [sym_call_expression] = STATE(2393), + [sym_field_expression] = STATE(2393), + [sym_compound_literal_expression] = STATE(2393), + [sym_parenthesized_expression] = STATE(2393), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(2393), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2384), - [sym_new_expression] = STATE(2384), - [sym_delete_expression] = STATE(2384), - [sym_lambda_expression] = STATE(2384), + [sym_template_function] = STATE(2393), + [sym_new_expression] = STATE(2393), + [sym_delete_expression] = STATE(2393), + [sym_lambda_expression] = STATE(2393), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5596), - [anon_sym_LPAREN] = ACTIONS(1632), + [sym_raw_string_literal] = ACTIONS(5616), + [anon_sym_LPAREN] = ACTIONS(1634), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(6249), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_COLON] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(6249), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(6251), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(5596), - [sym_char_literal] = ACTIONS(5596), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(5598), - [sym_false] = ACTIONS(5598), - [sym_null] = ACTIONS(5598), + [anon_sym_STAR] = ACTIONS(6281), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_COLON] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(6281), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(6283), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(5616), + [sym_char_literal] = ACTIONS(5616), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(5618), + [sym_false] = ACTIONS(5618), + [sym_null] = ACTIONS(5618), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(5598), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(5618), }, - [2386] = { - [sym__expression] = STATE(2602), - [sym_conditional_expression] = STATE(2602), - [sym_assignment_expression] = STATE(2602), - [sym_pointer_expression] = STATE(2602), - [sym_logical_expression] = STATE(2602), - [sym_bitwise_expression] = STATE(2602), - [sym_equality_expression] = STATE(2602), - [sym_relational_expression] = STATE(2602), - [sym_shift_expression] = STATE(2602), - [sym_math_expression] = STATE(2602), - [sym_cast_expression] = STATE(2602), - [sym_sizeof_expression] = STATE(2602), - [sym_subscript_expression] = STATE(2602), - [sym_call_expression] = STATE(2602), - [sym_field_expression] = STATE(2602), - [sym_compound_literal_expression] = STATE(2602), - [sym_parenthesized_expression] = STATE(2602), - [sym_concatenated_string] = STATE(2602), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2602), - [sym_new_expression] = STATE(2602), - [sym_delete_expression] = STATE(2602), - [sym_lambda_expression] = STATE(2602), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), + [2395] = { + [sym__expression] = STATE(2616), + [sym_conditional_expression] = STATE(2616), + [sym_assignment_expression] = STATE(2616), + [sym_pointer_expression] = STATE(2616), + [sym_logical_expression] = STATE(2616), + [sym_bitwise_expression] = STATE(2616), + [sym_equality_expression] = STATE(2616), + [sym_relational_expression] = STATE(2616), + [sym_shift_expression] = STATE(2616), + [sym_math_expression] = STATE(2616), + [sym_cast_expression] = STATE(2616), + [sym_sizeof_expression] = STATE(2616), + [sym_subscript_expression] = STATE(2616), + [sym_call_expression] = STATE(2616), + [sym_field_expression] = STATE(2616), + [sym_compound_literal_expression] = STATE(2616), + [sym_parenthesized_expression] = STATE(2616), + [sym_concatenated_string] = STATE(2616), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2616), + [sym_new_expression] = STATE(2616), + [sym_delete_expression] = STATE(2616), + [sym_lambda_expression] = STATE(2616), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6253), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6253), - [sym_char_literal] = ACTIONS(6253), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6255), - [sym_false] = ACTIONS(6255), - [sym_null] = ACTIONS(6255), + [sym_raw_string_literal] = ACTIONS(6285), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6285), + [sym_char_literal] = ACTIONS(6285), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6287), + [sym_false] = ACTIONS(6287), + [sym_null] = ACTIONS(6287), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6255), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6287), }, - [2387] = { + [2396] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_COLON] = ACTIONS(5222), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_COLON] = ACTIONS(5236), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2388] = { - [sym__expression] = STATE(2603), - [sym_conditional_expression] = STATE(2603), - [sym_assignment_expression] = STATE(2603), - [sym_pointer_expression] = STATE(2603), - [sym_logical_expression] = STATE(2603), - [sym_bitwise_expression] = STATE(2603), - [sym_equality_expression] = STATE(2603), - [sym_relational_expression] = STATE(2603), - [sym_shift_expression] = STATE(2603), - [sym_math_expression] = STATE(2603), - [sym_cast_expression] = STATE(2603), - [sym_sizeof_expression] = STATE(2603), - [sym_subscript_expression] = STATE(2603), - [sym_call_expression] = STATE(2603), - [sym_field_expression] = STATE(2603), - [sym_compound_literal_expression] = STATE(2603), - [sym_parenthesized_expression] = STATE(2603), - [sym_concatenated_string] = STATE(2603), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2603), - [sym_new_expression] = STATE(2603), - [sym_delete_expression] = STATE(2603), - [sym_lambda_expression] = STATE(2603), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6257), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6257), - [sym_char_literal] = ACTIONS(6257), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6259), - [sym_false] = ACTIONS(6259), - [sym_null] = ACTIONS(6259), + [2397] = { + [sym__expression] = STATE(2617), + [sym_conditional_expression] = STATE(2617), + [sym_assignment_expression] = STATE(2617), + [sym_pointer_expression] = STATE(2617), + [sym_logical_expression] = STATE(2617), + [sym_bitwise_expression] = STATE(2617), + [sym_equality_expression] = STATE(2617), + [sym_relational_expression] = STATE(2617), + [sym_shift_expression] = STATE(2617), + [sym_math_expression] = STATE(2617), + [sym_cast_expression] = STATE(2617), + [sym_sizeof_expression] = STATE(2617), + [sym_subscript_expression] = STATE(2617), + [sym_call_expression] = STATE(2617), + [sym_field_expression] = STATE(2617), + [sym_compound_literal_expression] = STATE(2617), + [sym_parenthesized_expression] = STATE(2617), + [sym_concatenated_string] = STATE(2617), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2617), + [sym_new_expression] = STATE(2617), + [sym_delete_expression] = STATE(2617), + [sym_lambda_expression] = STATE(2617), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6289), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6289), + [sym_char_literal] = ACTIONS(6289), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6291), + [sym_false] = ACTIONS(6291), + [sym_null] = ACTIONS(6291), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6259), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6291), }, - [2389] = { + [2398] = { [anon_sym_LPAREN] = ACTIONS(1137), [anon_sym_COMMA] = ACTIONS(1146), [anon_sym_SEMI] = ACTIONS(1146), [anon_sym_extern] = ACTIONS(1142), [anon_sym_LBRACE] = ACTIONS(1140), - [anon_sym_STAR] = ACTIONS(4233), + [anon_sym_STAR] = ACTIONS(4239), [anon_sym_LBRACK] = ACTIONS(1146), [anon_sym_EQ] = ACTIONS(1148), [anon_sym_static] = ACTIONS(1142), @@ -95138,7 +95495,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_EQ] = ACTIONS(1146), [anon_sym_CARET_EQ] = ACTIONS(1146), [anon_sym_PIPE_EQ] = ACTIONS(1146), - [anon_sym_AMP] = ACTIONS(4233), + [anon_sym_AMP] = ACTIONS(4239), [anon_sym_PIPE_PIPE] = ACTIONS(1146), [anon_sym_AMP_AMP] = ACTIONS(1137), [anon_sym_PIPE] = ACTIONS(1148), @@ -95146,7 +95503,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(1140), [anon_sym_EQ_EQ] = ACTIONS(1146), [anon_sym_BANG_EQ] = ACTIONS(1146), - [anon_sym_LT] = ACTIONS(4233), + [anon_sym_LT] = ACTIONS(4239), [anon_sym_GT] = ACTIONS(1148), [anon_sym_LT_EQ] = ACTIONS(1146), [anon_sym_GT_EQ] = ACTIONS(1146), @@ -95165,191 +95522,191 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(1144), [sym_operator_name] = ACTIONS(1140), }, - [2390] = { - [anon_sym_LPAREN] = ACTIONS(1796), - [anon_sym_COMMA] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(4311), - [anon_sym_LBRACK] = ACTIONS(1805), - [anon_sym_EQ] = ACTIONS(1807), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_register] = ACTIONS(1801), - [anon_sym_inline] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_restrict] = ACTIONS(1801), - [anon_sym_volatile] = ACTIONS(1801), - [anon_sym__Atomic] = ACTIONS(1801), - [anon_sym_mutable] = ACTIONS(1801), - [anon_sym_explicit] = ACTIONS(1801), - [anon_sym_constexpr] = ACTIONS(1801), - [anon_sym_QMARK] = ACTIONS(1805), - [anon_sym_STAR_EQ] = ACTIONS(1805), - [anon_sym_SLASH_EQ] = ACTIONS(1805), - [anon_sym_PERCENT_EQ] = ACTIONS(1805), - [anon_sym_PLUS_EQ] = ACTIONS(1805), - [anon_sym_DASH_EQ] = ACTIONS(1805), - [anon_sym_LT_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_GT_EQ] = ACTIONS(1805), - [anon_sym_AMP_EQ] = ACTIONS(1805), - [anon_sym_CARET_EQ] = ACTIONS(1805), - [anon_sym_PIPE_EQ] = ACTIONS(1805), - [anon_sym_AMP] = ACTIONS(4311), - [anon_sym_PIPE_PIPE] = ACTIONS(1805), - [anon_sym_AMP_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_CARET] = ACTIONS(1807), - [anon_sym_TILDE] = ACTIONS(1799), - [anon_sym_EQ_EQ] = ACTIONS(1805), - [anon_sym_BANG_EQ] = ACTIONS(1805), - [anon_sym_LT] = ACTIONS(4311), - [anon_sym_GT] = ACTIONS(1807), - [anon_sym_LT_EQ] = ACTIONS(1805), - [anon_sym_GT_EQ] = ACTIONS(1805), - [anon_sym_LT_LT] = ACTIONS(1807), - [anon_sym_GT_GT] = ACTIONS(1807), - [anon_sym_PLUS] = ACTIONS(1807), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_SLASH] = ACTIONS(1807), - [anon_sym_PERCENT] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1805), - [anon_sym_PLUS_PLUS] = ACTIONS(1805), - [anon_sym_DOT] = ACTIONS(1805), - [anon_sym_DASH_GT] = ACTIONS(1805), - [sym_identifier] = ACTIONS(1801), - [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [sym_operator_name] = ACTIONS(1799), + [2399] = { + [anon_sym_LPAREN] = ACTIONS(1798), + [anon_sym_COMMA] = ACTIONS(1807), + [anon_sym_SEMI] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_STAR] = ACTIONS(4317), + [anon_sym_LBRACK] = ACTIONS(1807), + [anon_sym_EQ] = ACTIONS(1809), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_register] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_const] = ACTIONS(1803), + [anon_sym_restrict] = ACTIONS(1803), + [anon_sym_volatile] = ACTIONS(1803), + [anon_sym__Atomic] = ACTIONS(1803), + [anon_sym_mutable] = ACTIONS(1803), + [anon_sym_explicit] = ACTIONS(1803), + [anon_sym_constexpr] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_STAR_EQ] = ACTIONS(1807), + [anon_sym_SLASH_EQ] = ACTIONS(1807), + [anon_sym_PERCENT_EQ] = ACTIONS(1807), + [anon_sym_PLUS_EQ] = ACTIONS(1807), + [anon_sym_DASH_EQ] = ACTIONS(1807), + [anon_sym_LT_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_GT_EQ] = ACTIONS(1807), + [anon_sym_AMP_EQ] = ACTIONS(1807), + [anon_sym_CARET_EQ] = ACTIONS(1807), + [anon_sym_PIPE_EQ] = ACTIONS(1807), + [anon_sym_AMP] = ACTIONS(4317), + [anon_sym_PIPE_PIPE] = ACTIONS(1807), + [anon_sym_AMP_AMP] = ACTIONS(1798), + [anon_sym_PIPE] = ACTIONS(1809), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1807), + [anon_sym_BANG_EQ] = ACTIONS(1807), + [anon_sym_LT] = ACTIONS(4317), + [anon_sym_GT] = ACTIONS(1809), + [anon_sym_LT_EQ] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1809), + [anon_sym_PLUS] = ACTIONS(1809), + [anon_sym_DASH] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_DASH_GT] = ACTIONS(1807), + [sym_identifier] = ACTIONS(1803), + [sym_comment] = ACTIONS(49), + [anon_sym_COLON_COLON] = ACTIONS(1805), + [sym_operator_name] = ACTIONS(1801), }, - [2391] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [2400] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_RBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), }, - [2392] = { - [sym_compound_statement] = STATE(2611), - [sym_labeled_statement] = STATE(2611), - [sym_expression_statement] = STATE(2611), - [sym_if_statement] = STATE(2611), - [sym_switch_statement] = STATE(2611), - [sym_case_statement] = STATE(2611), - [sym_while_statement] = STATE(2611), - [sym_do_statement] = STATE(2611), - [sym_for_statement] = STATE(2611), - [sym_return_statement] = STATE(2611), - [sym_break_statement] = STATE(2611), - [sym_continue_statement] = STATE(2611), - [sym_goto_statement] = STATE(2611), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2611), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2401] = { + [sym_compound_statement] = STATE(2625), + [sym_labeled_statement] = STATE(2625), + [sym_expression_statement] = STATE(2625), + [sym_if_statement] = STATE(2625), + [sym_switch_statement] = STATE(2625), + [sym_case_statement] = STATE(2625), + [sym_while_statement] = STATE(2625), + [sym_do_statement] = STATE(2625), + [sym_for_statement] = STATE(2625), + [sym_return_statement] = STATE(2625), + [sym_break_statement] = STATE(2625), + [sym_continue_statement] = STATE(2625), + [sym_goto_statement] = STATE(2625), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2625), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -95358,79 +95715,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2393] = { - [sym_compound_statement] = STATE(2612), - [sym_labeled_statement] = STATE(2612), - [sym_expression_statement] = STATE(2612), - [sym_if_statement] = STATE(2612), - [sym_switch_statement] = STATE(2612), - [sym_case_statement] = STATE(2612), - [sym_while_statement] = STATE(2612), - [sym_do_statement] = STATE(2612), - [sym_for_statement] = STATE(2612), - [sym_return_statement] = STATE(2612), - [sym_break_statement] = STATE(2612), - [sym_continue_statement] = STATE(2612), - [sym_goto_statement] = STATE(2612), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2612), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2402] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(6311), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2403] = { + [sym_compound_statement] = STATE(2627), + [sym_labeled_statement] = STATE(2627), + [sym_expression_statement] = STATE(2627), + [sym_if_statement] = STATE(2627), + [sym_switch_statement] = STATE(2627), + [sym_case_statement] = STATE(2627), + [sym_while_statement] = STATE(2627), + [sym_do_statement] = STATE(2627), + [sym_for_statement] = STATE(2627), + [sym_return_statement] = STATE(2627), + [sym_break_statement] = STATE(2627), + [sym_continue_statement] = STATE(2627), + [sym_goto_statement] = STATE(2627), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2627), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -95439,26 +95837,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2394] = { - [anon_sym_else] = ACTIONS(5611), - [anon_sym_while] = ACTIONS(5611), + [2404] = { + [anon_sym_else] = ACTIONS(5631), + [anon_sym_while] = ACTIONS(5631), [sym_comment] = ACTIONS(49), }, - [2395] = { - [sym__type_declarator] = STATE(2613), + [2405] = { + [sym__type_declarator] = STATE(2628), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -95467,16 +95865,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2396] = { + [2406] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(2614), - [sym_sized_type_specifier] = STATE(2614), - [sym_enum_specifier] = STATE(2614), - [sym_struct_specifier] = STATE(2614), - [sym_union_specifier] = STATE(2614), - [sym_macro_type_specifier] = STATE(2614), - [sym_class_specifier] = STATE(2614), - [sym_dependent_type] = STATE(2614), + [sym__type_specifier] = STATE(2629), + [sym_sized_type_specifier] = STATE(2629), + [sym_enum_specifier] = STATE(2629), + [sym_struct_specifier] = STATE(2629), + [sym_union_specifier] = STATE(2629), + [sym_macro_type_specifier] = STATE(2629), + [sym_class_specifier] = STATE(2629), + [sym_dependent_type] = STATE(2629), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -95492,96 +95890,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6313), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(6279), + [sym_auto] = ACTIONS(6313), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2397] = { + [2407] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(2616), + [aux_sym_declaration_repeat1] = STATE(2631), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6281), + [anon_sym_SEMI] = ACTIONS(6315), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [2398] = { - [aux_sym_declaration_repeat1] = STATE(2616), + [2408] = { + [aux_sym_declaration_repeat1] = STATE(2631), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6281), + [anon_sym_SEMI] = ACTIONS(6315), [sym_comment] = ACTIONS(49), }, - [2399] = { - [sym_compound_statement] = STATE(2617), - [sym_labeled_statement] = STATE(2617), - [sym_expression_statement] = STATE(2617), - [sym_if_statement] = STATE(2617), - [sym_switch_statement] = STATE(2617), - [sym_case_statement] = STATE(2617), - [sym_while_statement] = STATE(2617), - [sym_do_statement] = STATE(2617), - [sym_for_statement] = STATE(2617), - [sym_return_statement] = STATE(2617), - [sym_break_statement] = STATE(2617), - [sym_continue_statement] = STATE(2617), - [sym_goto_statement] = STATE(2617), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2617), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2409] = { + [sym_compound_statement] = STATE(2632), + [sym_labeled_statement] = STATE(2632), + [sym_expression_statement] = STATE(2632), + [sym_if_statement] = STATE(2632), + [sym_switch_statement] = STATE(2632), + [sym_case_statement] = STATE(2632), + [sym_while_statement] = STATE(2632), + [sym_do_statement] = STATE(2632), + [sym_for_statement] = STATE(2632), + [sym_return_statement] = STATE(2632), + [sym_break_statement] = STATE(2632), + [sym_continue_statement] = STATE(2632), + [sym_goto_statement] = STATE(2632), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2632), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -95590,103 +95988,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2400] = { - [sym__expression] = STATE(2618), - [sym_conditional_expression] = STATE(2618), - [sym_assignment_expression] = STATE(2618), - [sym_pointer_expression] = STATE(2618), - [sym_logical_expression] = STATE(2618), - [sym_bitwise_expression] = STATE(2618), - [sym_equality_expression] = STATE(2618), - [sym_relational_expression] = STATE(2618), - [sym_shift_expression] = STATE(2618), - [sym_math_expression] = STATE(2618), - [sym_cast_expression] = STATE(2618), - [sym_sizeof_expression] = STATE(2618), - [sym_subscript_expression] = STATE(2618), - [sym_call_expression] = STATE(2618), - [sym_field_expression] = STATE(2618), - [sym_compound_literal_expression] = STATE(2618), - [sym_parenthesized_expression] = STATE(2618), - [sym_concatenated_string] = STATE(2618), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2618), - [sym_new_expression] = STATE(2618), - [sym_delete_expression] = STATE(2618), - [sym_lambda_expression] = STATE(2618), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6283), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6283), - [sym_char_literal] = ACTIONS(6283), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6285), - [sym_false] = ACTIONS(6285), - [sym_null] = ACTIONS(6285), + [2410] = { + [sym__expression] = STATE(2633), + [sym_conditional_expression] = STATE(2633), + [sym_assignment_expression] = STATE(2633), + [sym_pointer_expression] = STATE(2633), + [sym_logical_expression] = STATE(2633), + [sym_bitwise_expression] = STATE(2633), + [sym_equality_expression] = STATE(2633), + [sym_relational_expression] = STATE(2633), + [sym_shift_expression] = STATE(2633), + [sym_math_expression] = STATE(2633), + [sym_cast_expression] = STATE(2633), + [sym_sizeof_expression] = STATE(2633), + [sym_subscript_expression] = STATE(2633), + [sym_call_expression] = STATE(2633), + [sym_field_expression] = STATE(2633), + [sym_compound_literal_expression] = STATE(2633), + [sym_parenthesized_expression] = STATE(2633), + [sym_concatenated_string] = STATE(2633), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2633), + [sym_new_expression] = STATE(2633), + [sym_delete_expression] = STATE(2633), + [sym_lambda_expression] = STATE(2633), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6317), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6317), + [sym_char_literal] = ACTIONS(6317), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6319), + [sym_false] = ACTIONS(6319), + [sym_null] = ACTIONS(6319), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6285), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6319), }, - [2401] = { - [sym__expression] = STATE(2620), - [sym_conditional_expression] = STATE(2620), - [sym_assignment_expression] = STATE(2620), - [sym_pointer_expression] = STATE(2620), - [sym_logical_expression] = STATE(2620), - [sym_bitwise_expression] = STATE(2620), - [sym_equality_expression] = STATE(2620), - [sym_relational_expression] = STATE(2620), - [sym_shift_expression] = STATE(2620), - [sym_math_expression] = STATE(2620), - [sym_cast_expression] = STATE(2620), - [sym_sizeof_expression] = STATE(2620), - [sym_subscript_expression] = STATE(2620), - [sym_call_expression] = STATE(2620), - [sym_field_expression] = STATE(2620), - [sym_compound_literal_expression] = STATE(2620), - [sym_parenthesized_expression] = STATE(2620), - [sym_concatenated_string] = STATE(2620), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2620), - [sym_new_expression] = STATE(2620), - [sym_delete_expression] = STATE(2620), - [sym_lambda_expression] = STATE(2620), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6287), + [2411] = { + [sym__expression] = STATE(2635), + [sym_conditional_expression] = STATE(2635), + [sym_assignment_expression] = STATE(2635), + [sym_pointer_expression] = STATE(2635), + [sym_logical_expression] = STATE(2635), + [sym_bitwise_expression] = STATE(2635), + [sym_equality_expression] = STATE(2635), + [sym_relational_expression] = STATE(2635), + [sym_shift_expression] = STATE(2635), + [sym_math_expression] = STATE(2635), + [sym_cast_expression] = STATE(2635), + [sym_sizeof_expression] = STATE(2635), + [sym_subscript_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_field_expression] = STATE(2635), + [sym_compound_literal_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_concatenated_string] = STATE(2635), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2635), + [sym_new_expression] = STATE(2635), + [sym_delete_expression] = STATE(2635), + [sym_lambda_expression] = STATE(2635), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6321), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6289), + [anon_sym_RPAREN] = ACTIONS(6323), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -95697,91 +96095,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6287), - [sym_char_literal] = ACTIONS(6287), + [sym_number_literal] = ACTIONS(6321), + [sym_char_literal] = ACTIONS(6321), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6291), - [sym_false] = ACTIONS(6291), - [sym_null] = ACTIONS(6291), + [sym_true] = ACTIONS(6325), + [sym_false] = ACTIONS(6325), + [sym_null] = ACTIONS(6325), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6291), + [sym_nullptr] = ACTIONS(6325), }, - [2402] = { + [2412] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6293), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6327), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2403] = { - [sym__expression] = STATE(2622), - [sym_conditional_expression] = STATE(2622), - [sym_assignment_expression] = STATE(2622), - [sym_pointer_expression] = STATE(2622), - [sym_logical_expression] = STATE(2622), - [sym_bitwise_expression] = STATE(2622), - [sym_equality_expression] = STATE(2622), - [sym_relational_expression] = STATE(2622), - [sym_shift_expression] = STATE(2622), - [sym_math_expression] = STATE(2622), - [sym_cast_expression] = STATE(2622), - [sym_sizeof_expression] = STATE(2622), - [sym_subscript_expression] = STATE(2622), - [sym_call_expression] = STATE(2622), - [sym_field_expression] = STATE(2622), - [sym_compound_literal_expression] = STATE(2622), - [sym_parenthesized_expression] = STATE(2622), - [sym_concatenated_string] = STATE(2622), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2622), - [sym_new_expression] = STATE(2622), - [sym_delete_expression] = STATE(2622), - [sym_lambda_expression] = STATE(2622), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6295), + [2413] = { + [sym__expression] = STATE(2637), + [sym_conditional_expression] = STATE(2637), + [sym_assignment_expression] = STATE(2637), + [sym_pointer_expression] = STATE(2637), + [sym_logical_expression] = STATE(2637), + [sym_bitwise_expression] = STATE(2637), + [sym_equality_expression] = STATE(2637), + [sym_relational_expression] = STATE(2637), + [sym_shift_expression] = STATE(2637), + [sym_math_expression] = STATE(2637), + [sym_cast_expression] = STATE(2637), + [sym_sizeof_expression] = STATE(2637), + [sym_subscript_expression] = STATE(2637), + [sym_call_expression] = STATE(2637), + [sym_field_expression] = STATE(2637), + [sym_compound_literal_expression] = STATE(2637), + [sym_parenthesized_expression] = STATE(2637), + [sym_concatenated_string] = STATE(2637), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2637), + [sym_new_expression] = STATE(2637), + [sym_delete_expression] = STATE(2637), + [sym_lambda_expression] = STATE(2637), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6329), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_SEMI] = ACTIONS(6327), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -95792,127 +96190,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6295), - [sym_char_literal] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6329), + [sym_char_literal] = ACTIONS(6329), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6297), - [sym_false] = ACTIONS(6297), - [sym_null] = ACTIONS(6297), + [sym_true] = ACTIONS(6331), + [sym_false] = ACTIONS(6331), + [sym_null] = ACTIONS(6331), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6297), + [sym_nullptr] = ACTIONS(6331), }, - [2404] = { - [sym__expression] = STATE(2623), - [sym_conditional_expression] = STATE(2623), - [sym_assignment_expression] = STATE(2623), - [sym_pointer_expression] = STATE(2623), - [sym_logical_expression] = STATE(2623), - [sym_bitwise_expression] = STATE(2623), - [sym_equality_expression] = STATE(2623), - [sym_relational_expression] = STATE(2623), - [sym_shift_expression] = STATE(2623), - [sym_math_expression] = STATE(2623), - [sym_cast_expression] = STATE(2623), - [sym_sizeof_expression] = STATE(2623), - [sym_subscript_expression] = STATE(2623), - [sym_call_expression] = STATE(2623), - [sym_field_expression] = STATE(2623), - [sym_compound_literal_expression] = STATE(2623), - [sym_parenthesized_expression] = STATE(2623), - [sym_concatenated_string] = STATE(2623), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2623), - [sym_new_expression] = STATE(2623), - [sym_delete_expression] = STATE(2623), - [sym_lambda_expression] = STATE(2623), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6299), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6299), - [sym_char_literal] = ACTIONS(6299), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6301), - [sym_false] = ACTIONS(6301), - [sym_null] = ACTIONS(6301), + [2414] = { + [sym__expression] = STATE(2638), + [sym_conditional_expression] = STATE(2638), + [sym_assignment_expression] = STATE(2638), + [sym_pointer_expression] = STATE(2638), + [sym_logical_expression] = STATE(2638), + [sym_bitwise_expression] = STATE(2638), + [sym_equality_expression] = STATE(2638), + [sym_relational_expression] = STATE(2638), + [sym_shift_expression] = STATE(2638), + [sym_math_expression] = STATE(2638), + [sym_cast_expression] = STATE(2638), + [sym_sizeof_expression] = STATE(2638), + [sym_subscript_expression] = STATE(2638), + [sym_call_expression] = STATE(2638), + [sym_field_expression] = STATE(2638), + [sym_compound_literal_expression] = STATE(2638), + [sym_parenthesized_expression] = STATE(2638), + [sym_concatenated_string] = STATE(2638), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2638), + [sym_new_expression] = STATE(2638), + [sym_delete_expression] = STATE(2638), + [sym_lambda_expression] = STATE(2638), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6333), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6333), + [sym_char_literal] = ACTIONS(6333), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6335), + [sym_false] = ACTIONS(6335), + [sym_null] = ACTIONS(6335), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6301), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6335), }, - [2405] = { + [2415] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6303), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6337), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2406] = { - [sym_compound_statement] = STATE(2625), - [sym_labeled_statement] = STATE(2625), - [sym_expression_statement] = STATE(2625), - [sym_if_statement] = STATE(2625), - [sym_switch_statement] = STATE(2625), - [sym_case_statement] = STATE(2625), - [sym_while_statement] = STATE(2625), - [sym_do_statement] = STATE(2625), - [sym_for_statement] = STATE(2625), - [sym_return_statement] = STATE(2625), - [sym_break_statement] = STATE(2625), - [sym_continue_statement] = STATE(2625), - [sym_goto_statement] = STATE(2625), + [2416] = { + [sym_compound_statement] = STATE(2640), + [sym_labeled_statement] = STATE(2640), + [sym_expression_statement] = STATE(2640), + [sym_if_statement] = STATE(2640), + [sym_switch_statement] = STATE(2640), + [sym_case_statement] = STATE(2640), + [sym_while_statement] = STATE(2640), + [sym_do_statement] = STATE(2640), + [sym_for_statement] = STATE(2640), + [sym_return_statement] = STATE(2640), + [sym_break_statement] = STATE(2640), + [sym_continue_statement] = STATE(2640), + [sym_goto_statement] = STATE(2640), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -95934,7 +96332,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2625), + [sym_for_range_loop] = STATE(2640), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -95973,87 +96371,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2407] = { + [2417] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2628), + [aux_sym_for_statement_repeat1] = STATE(2643), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6307), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6341), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2408] = { - [sym__expression] = STATE(2629), - [sym_conditional_expression] = STATE(2629), - [sym_assignment_expression] = STATE(2629), - [sym_pointer_expression] = STATE(2629), - [sym_logical_expression] = STATE(2629), - [sym_bitwise_expression] = STATE(2629), - [sym_equality_expression] = STATE(2629), - [sym_relational_expression] = STATE(2629), - [sym_shift_expression] = STATE(2629), - [sym_math_expression] = STATE(2629), - [sym_cast_expression] = STATE(2629), - [sym_sizeof_expression] = STATE(2629), - [sym_subscript_expression] = STATE(2629), - [sym_call_expression] = STATE(2629), - [sym_field_expression] = STATE(2629), - [sym_compound_literal_expression] = STATE(2629), - [sym_parenthesized_expression] = STATE(2629), - [sym_concatenated_string] = STATE(2629), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2629), - [sym_new_expression] = STATE(2629), - [sym_delete_expression] = STATE(2629), - [sym_lambda_expression] = STATE(2629), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6309), + [2418] = { + [sym__expression] = STATE(2644), + [sym_conditional_expression] = STATE(2644), + [sym_assignment_expression] = STATE(2644), + [sym_pointer_expression] = STATE(2644), + [sym_logical_expression] = STATE(2644), + [sym_bitwise_expression] = STATE(2644), + [sym_equality_expression] = STATE(2644), + [sym_relational_expression] = STATE(2644), + [sym_shift_expression] = STATE(2644), + [sym_math_expression] = STATE(2644), + [sym_cast_expression] = STATE(2644), + [sym_sizeof_expression] = STATE(2644), + [sym_subscript_expression] = STATE(2644), + [sym_call_expression] = STATE(2644), + [sym_field_expression] = STATE(2644), + [sym_compound_literal_expression] = STATE(2644), + [sym_parenthesized_expression] = STATE(2644), + [sym_concatenated_string] = STATE(2644), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2644), + [sym_new_expression] = STATE(2644), + [sym_delete_expression] = STATE(2644), + [sym_lambda_expression] = STATE(2644), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6343), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6307), + [anon_sym_RPAREN] = ACTIONS(6341), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -96064,21 +96462,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6309), - [sym_char_literal] = ACTIONS(6309), + [sym_number_literal] = ACTIONS(6343), + [sym_char_literal] = ACTIONS(6343), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6311), - [sym_false] = ACTIONS(6311), - [sym_null] = ACTIONS(6311), + [sym_true] = ACTIONS(6345), + [sym_false] = ACTIONS(6345), + [sym_null] = ACTIONS(6345), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6311), + [sym_nullptr] = ACTIONS(6345), }, - [2409] = { - [sym_parameter_list] = STATE(2412), + [2419] = { + [sym_parameter_list] = STATE(2422), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(837), [anon_sym_SEMI] = ACTIONS(837), @@ -96088,8 +96486,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(837), [sym_comment] = ACTIONS(49), }, - [2410] = { - [sym_parameter_list] = STATE(2412), + [2420] = { + [sym_parameter_list] = STATE(2422), [anon_sym_LPAREN] = ACTIONS(206), [anon_sym_COMMA] = ACTIONS(839), [anon_sym_SEMI] = ACTIONS(839), @@ -96099,7 +96497,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON] = ACTIONS(839), [sym_comment] = ACTIONS(49), }, - [2411] = { + [2421] = { [sym_raw_string_literal] = ACTIONS(1261), [anon_sym_LPAREN] = ACTIONS(1261), [anon_sym_SEMI] = ACTIONS(1261), @@ -96126,10 +96524,10 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [2412] = { - [sym_type_qualifier] = STATE(2631), - [sym_trailing_return_type] = STATE(2631), - [aux_sym_function_declarator_repeat1] = STATE(2631), + [2422] = { + [sym_type_qualifier] = STATE(2646), + [sym_trailing_return_type] = STATE(2646), + [aux_sym_function_declarator_repeat1] = STATE(2646), [anon_sym_LPAREN] = ACTIONS(610), [anon_sym_COMMA] = ACTIONS(610), [anon_sym_SEMI] = ACTIONS(610), @@ -96144,325 +96542,325 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_COLON] = ACTIONS(610), - [anon_sym_DASH_GT] = ACTIONS(6313), + [anon_sym_DASH_GT] = ACTIONS(6347), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6315), + [sym_noexcept] = ACTIONS(6349), }, - [2413] = { + [2423] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6317), + [anon_sym_SEMI] = ACTIONS(6351), [sym_comment] = ACTIONS(49), }, - [2414] = { + [2424] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6319), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6353), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2415] = { + [2425] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6321), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6355), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2416] = { + [2426] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_SEMI] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2417] = { - [sym_raw_string_literal] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(4060), - [anon_sym_case] = ACTIONS(4060), - [anon_sym_default] = ACTIONS(4060), - [anon_sym_while] = ACTIONS(4060), - [anon_sym_do] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_sizeof] = ACTIONS(4060), - [sym_number_literal] = ACTIONS(4058), - [sym_char_literal] = ACTIONS(4058), - [sym_string_literal] = ACTIONS(4058), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_null] = ACTIONS(4060), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_new] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4060), - [sym_nullptr] = ACTIONS(4060), + [2427] = { + [sym_raw_string_literal] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4064), + [sym_char_literal] = ACTIONS(4064), + [sym_string_literal] = ACTIONS(4064), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [sym_null] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4066), + [sym_nullptr] = ACTIONS(4066), }, - [2418] = { - [sym_raw_string_literal] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_RBRACE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4106), - [sym_char_literal] = ACTIONS(4106), - [sym_string_literal] = ACTIONS(4106), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [sym_null] = ACTIONS(4108), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_delete] = ACTIONS(4108), - [sym_nullptr] = ACTIONS(4108), + [2428] = { + [sym_raw_string_literal] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_RBRACE] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4112), + [sym_char_literal] = ACTIONS(4112), + [sym_string_literal] = ACTIONS(4112), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [sym_null] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4114), + [sym_nullptr] = ACTIONS(4114), }, - [2419] = { + [2429] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_SEMI] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2420] = { - [sym_type_qualifier] = STATE(2159), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2159), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2430] = { + [sym_type_qualifier] = STATE(2165), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2165), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -96472,401 +96870,401 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(845), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4972), + [sym_noexcept] = ACTIONS(4986), }, - [2421] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3338), - [anon_sym_AMP_AMP] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_template] = ACTIONS(3338), - [anon_sym_namespace] = ACTIONS(3338), - [anon_sym_using] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [sym_operator_name] = ACTIONS(3336), + [2431] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_template] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [sym_operator_name] = ACTIONS(3342), }, - [2422] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3348), - [anon_sym_AMP_AMP] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_template] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_using] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [sym_operator_name] = ACTIONS(3346), + [2432] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_template] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [sym_operator_name] = ACTIONS(3352), }, - [2423] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3487), - [anon_sym_LPAREN] = ACTIONS(3485), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3487), - [sym_preproc_directive] = ACTIONS(3487), - [anon_sym_typedef] = ACTIONS(3487), - [anon_sym_extern] = ACTIONS(3487), - [anon_sym_STAR] = ACTIONS(3485), - [anon_sym_static] = ACTIONS(3487), - [anon_sym_register] = ACTIONS(3487), - [anon_sym_inline] = ACTIONS(3487), - [anon_sym_const] = ACTIONS(3487), - [anon_sym_restrict] = ACTIONS(3487), - [anon_sym_volatile] = ACTIONS(3487), - [anon_sym__Atomic] = ACTIONS(3487), - [anon_sym_mutable] = ACTIONS(3487), - [anon_sym_explicit] = ACTIONS(3487), - [anon_sym_constexpr] = ACTIONS(3487), - [anon_sym_unsigned] = ACTIONS(3487), - [anon_sym_long] = ACTIONS(3487), - [anon_sym_short] = ACTIONS(3487), - [sym_primitive_type] = ACTIONS(3487), - [anon_sym_enum] = ACTIONS(3487), - [anon_sym_struct] = ACTIONS(3487), - [anon_sym_union] = ACTIONS(3487), - [anon_sym_AMP] = ACTIONS(3487), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3487), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3487), - [sym_auto] = ACTIONS(3487), - [anon_sym_typename] = ACTIONS(3487), - [anon_sym_template] = ACTIONS(3487), - [anon_sym_namespace] = ACTIONS(3487), - [anon_sym_using] = ACTIONS(3487), - [anon_sym_COLON_COLON] = ACTIONS(3485), - [sym_operator_name] = ACTIONS(3485), + [2433] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3493), + [anon_sym_LPAREN] = ACTIONS(3491), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3493), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3493), + [sym_preproc_directive] = ACTIONS(3493), + [anon_sym_typedef] = ACTIONS(3493), + [anon_sym_extern] = ACTIONS(3493), + [anon_sym_STAR] = ACTIONS(3491), + [anon_sym_static] = ACTIONS(3493), + [anon_sym_register] = ACTIONS(3493), + [anon_sym_inline] = ACTIONS(3493), + [anon_sym_const] = ACTIONS(3493), + [anon_sym_restrict] = ACTIONS(3493), + [anon_sym_volatile] = ACTIONS(3493), + [anon_sym__Atomic] = ACTIONS(3493), + [anon_sym_mutable] = ACTIONS(3493), + [anon_sym_explicit] = ACTIONS(3493), + [anon_sym_constexpr] = ACTIONS(3493), + [anon_sym_unsigned] = ACTIONS(3493), + [anon_sym_long] = ACTIONS(3493), + [anon_sym_short] = ACTIONS(3493), + [sym_primitive_type] = ACTIONS(3493), + [anon_sym_enum] = ACTIONS(3493), + [anon_sym_struct] = ACTIONS(3493), + [anon_sym_union] = ACTIONS(3493), + [anon_sym_AMP] = ACTIONS(3493), + [anon_sym_AMP_AMP] = ACTIONS(3491), + [anon_sym_TILDE] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3493), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3493), + [sym_auto] = ACTIONS(3493), + [anon_sym_typename] = ACTIONS(3493), + [anon_sym_template] = ACTIONS(3493), + [anon_sym_namespace] = ACTIONS(3493), + [anon_sym_using] = ACTIONS(3493), + [anon_sym_COLON_COLON] = ACTIONS(3491), + [sym_operator_name] = ACTIONS(3491), }, - [2424] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3491), - [anon_sym_LPAREN] = ACTIONS(3489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3491), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3491), - [sym_preproc_directive] = ACTIONS(3491), - [anon_sym_typedef] = ACTIONS(3491), - [anon_sym_extern] = ACTIONS(3491), - [anon_sym_STAR] = ACTIONS(3489), - [anon_sym_static] = ACTIONS(3491), - [anon_sym_register] = ACTIONS(3491), - [anon_sym_inline] = ACTIONS(3491), - [anon_sym_const] = ACTIONS(3491), - [anon_sym_restrict] = ACTIONS(3491), - [anon_sym_volatile] = ACTIONS(3491), - [anon_sym__Atomic] = ACTIONS(3491), - [anon_sym_mutable] = ACTIONS(3491), - [anon_sym_explicit] = ACTIONS(3491), - [anon_sym_constexpr] = ACTIONS(3491), - [anon_sym_unsigned] = ACTIONS(3491), - [anon_sym_long] = ACTIONS(3491), - [anon_sym_short] = ACTIONS(3491), - [sym_primitive_type] = ACTIONS(3491), - [anon_sym_enum] = ACTIONS(3491), - [anon_sym_struct] = ACTIONS(3491), - [anon_sym_union] = ACTIONS(3491), - [anon_sym_AMP] = ACTIONS(3491), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3491), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3491), - [sym_auto] = ACTIONS(3491), - [anon_sym_typename] = ACTIONS(3491), - [anon_sym_template] = ACTIONS(3491), - [anon_sym_namespace] = ACTIONS(3491), - [anon_sym_using] = ACTIONS(3491), - [anon_sym_COLON_COLON] = ACTIONS(3489), - [sym_operator_name] = ACTIONS(3489), + [2434] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3497), + [sym_preproc_directive] = ACTIONS(3497), + [anon_sym_typedef] = ACTIONS(3497), + [anon_sym_extern] = ACTIONS(3497), + [anon_sym_STAR] = ACTIONS(3495), + [anon_sym_static] = ACTIONS(3497), + [anon_sym_register] = ACTIONS(3497), + [anon_sym_inline] = ACTIONS(3497), + [anon_sym_const] = ACTIONS(3497), + [anon_sym_restrict] = ACTIONS(3497), + [anon_sym_volatile] = ACTIONS(3497), + [anon_sym__Atomic] = ACTIONS(3497), + [anon_sym_mutable] = ACTIONS(3497), + [anon_sym_explicit] = ACTIONS(3497), + [anon_sym_constexpr] = ACTIONS(3497), + [anon_sym_unsigned] = ACTIONS(3497), + [anon_sym_long] = ACTIONS(3497), + [anon_sym_short] = ACTIONS(3497), + [sym_primitive_type] = ACTIONS(3497), + [anon_sym_enum] = ACTIONS(3497), + [anon_sym_struct] = ACTIONS(3497), + [anon_sym_union] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3497), + [anon_sym_AMP_AMP] = ACTIONS(3495), + [anon_sym_TILDE] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3497), + [sym_auto] = ACTIONS(3497), + [anon_sym_typename] = ACTIONS(3497), + [anon_sym_template] = ACTIONS(3497), + [anon_sym_namespace] = ACTIONS(3497), + [anon_sym_using] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3495), + [sym_operator_name] = ACTIONS(3495), }, - [2425] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3493), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3495), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3495), - [sym_preproc_directive] = ACTIONS(3495), - [anon_sym_typedef] = ACTIONS(3495), - [anon_sym_extern] = ACTIONS(3495), - [anon_sym_STAR] = ACTIONS(3493), - [anon_sym_static] = ACTIONS(3495), - [anon_sym_register] = ACTIONS(3495), - [anon_sym_inline] = ACTIONS(3495), - [anon_sym_const] = ACTIONS(3495), - [anon_sym_restrict] = ACTIONS(3495), - [anon_sym_volatile] = ACTIONS(3495), - [anon_sym__Atomic] = ACTIONS(3495), - [anon_sym_mutable] = ACTIONS(3495), - [anon_sym_explicit] = ACTIONS(3495), - [anon_sym_constexpr] = ACTIONS(3495), - [anon_sym_unsigned] = ACTIONS(3495), - [anon_sym_long] = ACTIONS(3495), - [anon_sym_short] = ACTIONS(3495), - [sym_primitive_type] = ACTIONS(3495), - [anon_sym_enum] = ACTIONS(3495), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_union] = ACTIONS(3495), - [anon_sym_AMP] = ACTIONS(3495), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3495), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3495), - [sym_auto] = ACTIONS(3495), - [anon_sym_typename] = ACTIONS(3495), - [anon_sym_template] = ACTIONS(3495), - [anon_sym_namespace] = ACTIONS(3495), - [anon_sym_using] = ACTIONS(3495), - [anon_sym_COLON_COLON] = ACTIONS(3493), - [sym_operator_name] = ACTIONS(3493), + [2435] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3501), + [anon_sym_LPAREN] = ACTIONS(3499), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3501), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3501), + [sym_preproc_directive] = ACTIONS(3501), + [anon_sym_typedef] = ACTIONS(3501), + [anon_sym_extern] = ACTIONS(3501), + [anon_sym_STAR] = ACTIONS(3499), + [anon_sym_static] = ACTIONS(3501), + [anon_sym_register] = ACTIONS(3501), + [anon_sym_inline] = ACTIONS(3501), + [anon_sym_const] = ACTIONS(3501), + [anon_sym_restrict] = ACTIONS(3501), + [anon_sym_volatile] = ACTIONS(3501), + [anon_sym__Atomic] = ACTIONS(3501), + [anon_sym_mutable] = ACTIONS(3501), + [anon_sym_explicit] = ACTIONS(3501), + [anon_sym_constexpr] = ACTIONS(3501), + [anon_sym_unsigned] = ACTIONS(3501), + [anon_sym_long] = ACTIONS(3501), + [anon_sym_short] = ACTIONS(3501), + [sym_primitive_type] = ACTIONS(3501), + [anon_sym_enum] = ACTIONS(3501), + [anon_sym_struct] = ACTIONS(3501), + [anon_sym_union] = ACTIONS(3501), + [anon_sym_AMP] = ACTIONS(3501), + [anon_sym_AMP_AMP] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3501), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3501), + [sym_auto] = ACTIONS(3501), + [anon_sym_typename] = ACTIONS(3501), + [anon_sym_template] = ACTIONS(3501), + [anon_sym_namespace] = ACTIONS(3501), + [anon_sym_using] = ACTIONS(3501), + [anon_sym_COLON_COLON] = ACTIONS(3499), + [sym_operator_name] = ACTIONS(3499), }, - [2426] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3515), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_template] = ACTIONS(3515), - [anon_sym_namespace] = ACTIONS(3515), - [anon_sym_using] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [sym_operator_name] = ACTIONS(3513), + [2436] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3521), + [anon_sym_AMP_AMP] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_template] = ACTIONS(3521), + [anon_sym_namespace] = ACTIONS(3521), + [anon_sym_using] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [sym_operator_name] = ACTIONS(3519), }, - [2427] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3858), - [anon_sym_LPAREN] = ACTIONS(3856), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3858), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3858), - [sym_preproc_directive] = ACTIONS(3858), - [anon_sym_typedef] = ACTIONS(3858), - [anon_sym_extern] = ACTIONS(3858), - [anon_sym_STAR] = ACTIONS(3856), - [anon_sym_static] = ACTIONS(3858), - [anon_sym_register] = ACTIONS(3858), - [anon_sym_inline] = ACTIONS(3858), - [anon_sym_const] = ACTIONS(3858), - [anon_sym_restrict] = ACTIONS(3858), - [anon_sym_volatile] = ACTIONS(3858), - [anon_sym__Atomic] = ACTIONS(3858), - [anon_sym_mutable] = ACTIONS(3858), - [anon_sym_explicit] = ACTIONS(3858), - [anon_sym_constexpr] = ACTIONS(3858), - [anon_sym_unsigned] = ACTIONS(3858), - [anon_sym_long] = ACTIONS(3858), - [anon_sym_short] = ACTIONS(3858), - [sym_primitive_type] = ACTIONS(3858), - [anon_sym_enum] = ACTIONS(3858), - [anon_sym_struct] = ACTIONS(3858), - [anon_sym_union] = ACTIONS(3858), - [anon_sym_AMP] = ACTIONS(3858), - [anon_sym_AMP_AMP] = ACTIONS(3856), - [anon_sym_TILDE] = ACTIONS(3856), - [sym_identifier] = ACTIONS(3858), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3858), - [sym_auto] = ACTIONS(3858), - [anon_sym_typename] = ACTIONS(3858), - [anon_sym_template] = ACTIONS(3858), - [anon_sym_namespace] = ACTIONS(3858), - [anon_sym_using] = ACTIONS(3858), - [anon_sym_COLON_COLON] = ACTIONS(3856), - [sym_operator_name] = ACTIONS(3856), + [2437] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3864), + [anon_sym_LPAREN] = ACTIONS(3862), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3864), + [sym_preproc_directive] = ACTIONS(3864), + [anon_sym_typedef] = ACTIONS(3864), + [anon_sym_extern] = ACTIONS(3864), + [anon_sym_STAR] = ACTIONS(3862), + [anon_sym_static] = ACTIONS(3864), + [anon_sym_register] = ACTIONS(3864), + [anon_sym_inline] = ACTIONS(3864), + [anon_sym_const] = ACTIONS(3864), + [anon_sym_restrict] = ACTIONS(3864), + [anon_sym_volatile] = ACTIONS(3864), + [anon_sym__Atomic] = ACTIONS(3864), + [anon_sym_mutable] = ACTIONS(3864), + [anon_sym_explicit] = ACTIONS(3864), + [anon_sym_constexpr] = ACTIONS(3864), + [anon_sym_unsigned] = ACTIONS(3864), + [anon_sym_long] = ACTIONS(3864), + [anon_sym_short] = ACTIONS(3864), + [sym_primitive_type] = ACTIONS(3864), + [anon_sym_enum] = ACTIONS(3864), + [anon_sym_struct] = ACTIONS(3864), + [anon_sym_union] = ACTIONS(3864), + [anon_sym_AMP] = ACTIONS(3864), + [anon_sym_AMP_AMP] = ACTIONS(3862), + [anon_sym_TILDE] = ACTIONS(3862), + [sym_identifier] = ACTIONS(3864), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3864), + [sym_auto] = ACTIONS(3864), + [anon_sym_typename] = ACTIONS(3864), + [anon_sym_template] = ACTIONS(3864), + [anon_sym_namespace] = ACTIONS(3864), + [anon_sym_using] = ACTIONS(3864), + [anon_sym_COLON_COLON] = ACTIONS(3862), + [sym_operator_name] = ACTIONS(3862), }, - [2428] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_AMP_AMP] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_template] = ACTIONS(4060), - [anon_sym_namespace] = ACTIONS(4060), - [anon_sym_using] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [sym_operator_name] = ACTIONS(4058), + [2438] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4066), + [anon_sym_AMP_AMP] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_template] = ACTIONS(4066), + [anon_sym_namespace] = ACTIONS(4066), + [anon_sym_using] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [sym_operator_name] = ACTIONS(4064), }, - [2429] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4108), - [anon_sym_AMP_AMP] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_template] = ACTIONS(4108), - [anon_sym_namespace] = ACTIONS(4108), - [anon_sym_using] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [sym_operator_name] = ACTIONS(4106), + [2439] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4114), + [anon_sym_AMP_AMP] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_template] = ACTIONS(4114), + [anon_sym_namespace] = ACTIONS(4114), + [anon_sym_using] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [sym_operator_name] = ACTIONS(4112), }, - [2430] = { - [sym_type_qualifier] = STATE(2243), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2243), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2440] = { + [sym_type_qualifier] = STATE(2249), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2249), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -96876,51 +97274,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(979), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5242), + [sym_noexcept] = ACTIONS(5256), }, - [2431] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6323), + [2441] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6357), [sym_comment] = ACTIONS(49), }, - [2432] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6325), + [2442] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6359), [sym_comment] = ACTIONS(49), }, - [2433] = { - [sym__type_specifier] = STATE(2639), - [sym_sized_type_specifier] = STATE(2639), - [sym_enum_specifier] = STATE(2639), - [sym_struct_specifier] = STATE(2639), - [sym_union_specifier] = STATE(2639), - [sym_macro_type_specifier] = STATE(2639), - [sym_class_specifier] = STATE(2639), - [sym_dependent_type] = STATE(2639), + [2443] = { + [sym__type_specifier] = STATE(2654), + [sym_sized_type_specifier] = STATE(2654), + [sym_enum_specifier] = STATE(2654), + [sym_struct_specifier] = STATE(2654), + [sym_union_specifier] = STATE(2654), + [sym_macro_type_specifier] = STATE(2654), + [sym_class_specifier] = STATE(2654), + [sym_dependent_type] = STATE(2654), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2640), - [anon_sym_unsigned] = ACTIONS(6327), - [anon_sym_long] = ACTIONS(6327), - [anon_sym_short] = ACTIONS(6327), - [sym_primitive_type] = ACTIONS(6329), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(6331), - [anon_sym_union] = ACTIONS(6333), + [aux_sym_sized_type_specifier_repeat1] = STATE(2655), + [anon_sym_unsigned] = ACTIONS(6361), + [anon_sym_long] = ACTIONS(6361), + [anon_sym_short] = ACTIONS(6361), + [sym_primitive_type] = ACTIONS(6363), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(6365), + [anon_sym_union] = ACTIONS(6367), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6335), - [sym_auto] = ACTIONS(6329), - [anon_sym_typename] = ACTIONS(6337), + [anon_sym_class] = ACTIONS(6369), + [sym_auto] = ACTIONS(6363), + [anon_sym_typename] = ACTIONS(6371), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2434] = { - [sym_type_qualifier] = STATE(2641), - [sym_trailing_return_type] = STATE(2641), - [aux_sym_function_declarator_repeat1] = STATE(2641), - [anon_sym_LPAREN] = ACTIONS(4919), - [anon_sym_COMMA] = ACTIONS(4919), - [anon_sym_SEMI] = ACTIONS(4919), - [anon_sym_LBRACK] = ACTIONS(4919), + [2444] = { + [sym_type_qualifier] = STATE(2656), + [sym_trailing_return_type] = STATE(2656), + [aux_sym_function_declarator_repeat1] = STATE(2656), + [anon_sym_LPAREN] = ACTIONS(4933), + [anon_sym_COMMA] = ACTIONS(4933), + [anon_sym_SEMI] = ACTIONS(4933), + [anon_sym_LBRACK] = ACTIONS(4933), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -96928,117 +97326,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4919), - [anon_sym_DASH_GT] = ACTIONS(5737), + [anon_sym_COLON] = ACTIONS(4933), + [anon_sym_DASH_GT] = ACTIONS(5761), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6339), + [sym_noexcept] = ACTIONS(6373), }, - [2435] = { - [anon_sym_LPAREN] = ACTIONS(6341), - [anon_sym_COMMA] = ACTIONS(6341), - [anon_sym_RPAREN] = ACTIONS(6341), - [anon_sym_SEMI] = ACTIONS(6341), - [anon_sym_LBRACE] = ACTIONS(6341), - [anon_sym_LBRACK] = ACTIONS(6341), - [anon_sym_COLON] = ACTIONS(6341), + [2445] = { + [anon_sym_LPAREN] = ACTIONS(6375), + [anon_sym_COMMA] = ACTIONS(6375), + [anon_sym_RPAREN] = ACTIONS(6375), + [anon_sym_SEMI] = ACTIONS(6375), + [anon_sym_LBRACE] = ACTIONS(6375), + [anon_sym_LBRACK] = ACTIONS(6375), + [anon_sym_COLON] = ACTIONS(6375), [sym_comment] = ACTIONS(49), }, - [2436] = { - [sym__abstract_declarator] = STATE(2642), - [sym_abstract_pointer_declarator] = STATE(2642), - [sym_abstract_function_declarator] = STATE(2642), - [sym_abstract_array_declarator] = STATE(2642), - [sym_parameter_list] = STATE(2439), - [sym_abstract_reference_declarator] = STATE(2642), + [2446] = { + [sym__abstract_declarator] = STATE(2657), + [sym_abstract_pointer_declarator] = STATE(2657), + [sym_abstract_function_declarator] = STATE(2657), + [sym_abstract_array_declarator] = STATE(2657), + [sym_parameter_list] = STATE(2449), + [sym_abstract_reference_declarator] = STATE(2657), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(5773), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_COLON] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(5751), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5777), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2437] = { - [sym__abstract_declarator] = STATE(2643), - [sym_abstract_pointer_declarator] = STATE(2643), - [sym_abstract_function_declarator] = STATE(2643), - [sym_abstract_array_declarator] = STATE(2643), - [sym_parameter_list] = STATE(2439), - [sym_abstract_reference_declarator] = STATE(2643), + [2447] = { + [sym__abstract_declarator] = STATE(2658), + [sym_abstract_pointer_declarator] = STATE(2658), + [sym_abstract_function_declarator] = STATE(2658), + [sym_abstract_array_declarator] = STATE(2658), + [sym_parameter_list] = STATE(2449), + [sym_abstract_reference_declarator] = STATE(2658), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(5749), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(5773), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(5751), - [anon_sym_AMP_AMP] = ACTIONS(5753), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(5775), + [anon_sym_AMP_AMP] = ACTIONS(5777), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [2438] = { - [sym_parameter_list] = STATE(2644), + [2448] = { + [sym_parameter_list] = STATE(2659), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [2439] = { - [sym_type_qualifier] = STATE(2645), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2645), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2449] = { + [sym_type_qualifier] = STATE(2660), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2660), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2440] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2440), + [2450] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2450), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), @@ -97052,9 +97450,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(6343), - [anon_sym_long] = ACTIONS(6343), - [anon_sym_short] = ACTIONS(6343), + [anon_sym_unsigned] = ACTIONS(6377), + [anon_sym_long] = ACTIONS(6377), + [anon_sym_short] = ACTIONS(6377), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(816), [anon_sym_AMP] = ACTIONS(818), @@ -97064,159 +97462,159 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2441] = { - [anon_sym_LPAREN] = ACTIONS(6346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6346), - [anon_sym_typedef] = ACTIONS(6348), - [anon_sym_extern] = ACTIONS(6348), - [anon_sym_RBRACE] = ACTIONS(6346), - [anon_sym_STAR] = ACTIONS(6346), - [anon_sym_static] = ACTIONS(6348), - [anon_sym_register] = ACTIONS(6348), - [anon_sym_inline] = ACTIONS(6348), - [anon_sym_const] = ACTIONS(6348), - [anon_sym_restrict] = ACTIONS(6348), - [anon_sym_volatile] = ACTIONS(6348), - [anon_sym__Atomic] = ACTIONS(6348), - [anon_sym_mutable] = ACTIONS(6348), - [anon_sym_explicit] = ACTIONS(6348), - [anon_sym_constexpr] = ACTIONS(6348), - [anon_sym_unsigned] = ACTIONS(6348), - [anon_sym_long] = ACTIONS(6348), - [anon_sym_short] = ACTIONS(6348), - [sym_primitive_type] = ACTIONS(6348), - [anon_sym_enum] = ACTIONS(6348), - [anon_sym_struct] = ACTIONS(6348), - [anon_sym_union] = ACTIONS(6348), - [anon_sym_AMP] = ACTIONS(6348), - [anon_sym_AMP_AMP] = ACTIONS(6346), - [anon_sym_TILDE] = ACTIONS(6346), - [sym_identifier] = ACTIONS(6348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6348), - [anon_sym_public] = ACTIONS(6348), - [sym_auto] = ACTIONS(6348), - [anon_sym_typename] = ACTIONS(6348), - [anon_sym_template] = ACTIONS(6348), - [anon_sym_friend] = ACTIONS(6348), - [anon_sym_private] = ACTIONS(6348), - [anon_sym_protected] = ACTIONS(6348), - [anon_sym_using] = ACTIONS(6348), - [anon_sym_COLON_COLON] = ACTIONS(6346), - [sym_operator_name] = ACTIONS(6346), + [2451] = { + [anon_sym_LPAREN] = ACTIONS(6380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6382), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6380), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6380), + [anon_sym_typedef] = ACTIONS(6382), + [anon_sym_extern] = ACTIONS(6382), + [anon_sym_RBRACE] = ACTIONS(6380), + [anon_sym_STAR] = ACTIONS(6380), + [anon_sym_static] = ACTIONS(6382), + [anon_sym_register] = ACTIONS(6382), + [anon_sym_inline] = ACTIONS(6382), + [anon_sym_const] = ACTIONS(6382), + [anon_sym_restrict] = ACTIONS(6382), + [anon_sym_volatile] = ACTIONS(6382), + [anon_sym__Atomic] = ACTIONS(6382), + [anon_sym_mutable] = ACTIONS(6382), + [anon_sym_explicit] = ACTIONS(6382), + [anon_sym_constexpr] = ACTIONS(6382), + [anon_sym_unsigned] = ACTIONS(6382), + [anon_sym_long] = ACTIONS(6382), + [anon_sym_short] = ACTIONS(6382), + [sym_primitive_type] = ACTIONS(6382), + [anon_sym_enum] = ACTIONS(6382), + [anon_sym_struct] = ACTIONS(6382), + [anon_sym_union] = ACTIONS(6382), + [anon_sym_AMP] = ACTIONS(6382), + [anon_sym_AMP_AMP] = ACTIONS(6380), + [anon_sym_TILDE] = ACTIONS(6380), + [sym_identifier] = ACTIONS(6382), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6382), + [anon_sym_public] = ACTIONS(6382), + [sym_auto] = ACTIONS(6382), + [anon_sym_typename] = ACTIONS(6382), + [anon_sym_template] = ACTIONS(6382), + [anon_sym_friend] = ACTIONS(6382), + [anon_sym_private] = ACTIONS(6382), + [anon_sym_protected] = ACTIONS(6382), + [anon_sym_using] = ACTIONS(6382), + [anon_sym_COLON_COLON] = ACTIONS(6380), + [sym_operator_name] = ACTIONS(6380), }, - [2442] = { - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), - [anon_sym_SEMI] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3772), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3772), - [anon_sym_COLON] = ACTIONS(3770), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_STAR_EQ] = ACTIONS(3770), - [anon_sym_SLASH_EQ] = ACTIONS(3770), - [anon_sym_PERCENT_EQ] = ACTIONS(3770), - [anon_sym_PLUS_EQ] = ACTIONS(3770), - [anon_sym_DASH_EQ] = ACTIONS(3770), - [anon_sym_LT_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_GT_EQ] = ACTIONS(3770), - [anon_sym_AMP_EQ] = ACTIONS(3770), - [anon_sym_CARET_EQ] = ACTIONS(3770), - [anon_sym_PIPE_EQ] = ACTIONS(3770), - [anon_sym_AMP] = ACTIONS(3772), - [anon_sym_PIPE_PIPE] = ACTIONS(3770), - [anon_sym_AMP_AMP] = ACTIONS(3770), - [anon_sym_PIPE] = ACTIONS(3772), - [anon_sym_CARET] = ACTIONS(3772), - [anon_sym_EQ_EQ] = ACTIONS(3770), - [anon_sym_BANG_EQ] = ACTIONS(3770), - [anon_sym_LT] = ACTIONS(3772), - [anon_sym_GT] = ACTIONS(3772), - [anon_sym_LT_EQ] = ACTIONS(3770), - [anon_sym_GT_EQ] = ACTIONS(3770), - [anon_sym_LT_LT] = ACTIONS(3772), - [anon_sym_GT_GT] = ACTIONS(3772), - [anon_sym_PLUS] = ACTIONS(3772), - [anon_sym_DASH] = ACTIONS(3772), - [anon_sym_SLASH] = ACTIONS(3772), - [anon_sym_PERCENT] = ACTIONS(3772), - [anon_sym_DASH_DASH] = ACTIONS(3770), - [anon_sym_PLUS_PLUS] = ACTIONS(3770), - [anon_sym_DOT] = ACTIONS(3770), - [anon_sym_DASH_GT] = ACTIONS(3770), + [2452] = { + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3778), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3778), + [anon_sym_COLON] = ACTIONS(3776), + [anon_sym_QMARK] = ACTIONS(3776), + [anon_sym_STAR_EQ] = ACTIONS(3776), + [anon_sym_SLASH_EQ] = ACTIONS(3776), + [anon_sym_PERCENT_EQ] = ACTIONS(3776), + [anon_sym_PLUS_EQ] = ACTIONS(3776), + [anon_sym_DASH_EQ] = ACTIONS(3776), + [anon_sym_LT_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_GT_EQ] = ACTIONS(3776), + [anon_sym_AMP_EQ] = ACTIONS(3776), + [anon_sym_CARET_EQ] = ACTIONS(3776), + [anon_sym_PIPE_EQ] = ACTIONS(3776), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_PIPE_PIPE] = ACTIONS(3776), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_PIPE] = ACTIONS(3778), + [anon_sym_CARET] = ACTIONS(3778), + [anon_sym_EQ_EQ] = ACTIONS(3776), + [anon_sym_BANG_EQ] = ACTIONS(3776), + [anon_sym_LT] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3778), + [anon_sym_LT_EQ] = ACTIONS(3776), + [anon_sym_GT_EQ] = ACTIONS(3776), + [anon_sym_LT_LT] = ACTIONS(3778), + [anon_sym_GT_GT] = ACTIONS(3778), + [anon_sym_PLUS] = ACTIONS(3778), + [anon_sym_DASH] = ACTIONS(3778), + [anon_sym_SLASH] = ACTIONS(3778), + [anon_sym_PERCENT] = ACTIONS(3778), + [anon_sym_DASH_DASH] = ACTIONS(3776), + [anon_sym_PLUS_PLUS] = ACTIONS(3776), + [anon_sym_DOT] = ACTIONS(3776), + [anon_sym_DASH_GT] = ACTIONS(3776), [sym_comment] = ACTIONS(49), }, - [2443] = { - [sym_parameter_list] = STATE(2445), + [2453] = { + [sym_parameter_list] = STATE(2455), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2444] = { - [sym_parameter_list] = STATE(2445), + [2454] = { + [sym_parameter_list] = STATE(2455), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2445] = { - [sym_type_qualifier] = STATE(2646), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2646), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2455] = { + [sym_type_qualifier] = STATE(2661), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2661), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2446] = { - [sym_type_qualifier] = STATE(2647), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2647), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2456] = { + [sym_type_qualifier] = STATE(2662), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2662), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -97224,170 +97622,170 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(2100), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(2102), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6350), + [sym_noexcept] = ACTIONS(6384), }, - [2447] = { + [2457] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2448] = { + [2458] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RPAREN] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2449] = { - [sym_parameter_list] = STATE(1704), + [2459] = { + [sym_parameter_list] = STATE(1707), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_RPAREN] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2450] = { - [anon_sym_LPAREN] = ACTIONS(6352), - [anon_sym_COMMA] = ACTIONS(6352), - [anon_sym_RPAREN] = ACTIONS(6352), - [anon_sym_SEMI] = ACTIONS(6352), - [anon_sym_LBRACE] = ACTIONS(6352), - [anon_sym_LBRACK] = ACTIONS(6352), - [anon_sym_EQ] = ACTIONS(6352), - [anon_sym_const] = ACTIONS(6354), - [anon_sym_restrict] = ACTIONS(6352), - [anon_sym_volatile] = ACTIONS(6352), - [anon_sym__Atomic] = ACTIONS(6352), - [anon_sym_mutable] = ACTIONS(6352), - [anon_sym_explicit] = ACTIONS(6352), - [anon_sym_constexpr] = ACTIONS(6352), - [anon_sym_COLON] = ACTIONS(6352), - [anon_sym_GT] = ACTIONS(6352), - [anon_sym_DASH_GT] = ACTIONS(6352), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6352), + [2460] = { + [anon_sym_LPAREN] = ACTIONS(6386), + [anon_sym_COMMA] = ACTIONS(6386), + [anon_sym_RPAREN] = ACTIONS(6386), + [anon_sym_SEMI] = ACTIONS(6386), + [anon_sym_LBRACE] = ACTIONS(6386), + [anon_sym_LBRACK] = ACTIONS(6386), + [anon_sym_EQ] = ACTIONS(6386), + [anon_sym_const] = ACTIONS(6388), + [anon_sym_restrict] = ACTIONS(6386), + [anon_sym_volatile] = ACTIONS(6386), + [anon_sym__Atomic] = ACTIONS(6386), + [anon_sym_mutable] = ACTIONS(6386), + [anon_sym_explicit] = ACTIONS(6386), + [anon_sym_constexpr] = ACTIONS(6386), + [anon_sym_COLON] = ACTIONS(6386), + [anon_sym_GT] = ACTIONS(6386), + [anon_sym_DASH_GT] = ACTIONS(6386), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6386), }, - [2451] = { - [anon_sym_COMMA] = ACTIONS(5072), - [anon_sym_GT] = ACTIONS(5072), + [2461] = { + [anon_sym_COMMA] = ACTIONS(5086), + [anon_sym_GT] = ACTIONS(5086), [sym_comment] = ACTIONS(49), }, - [2452] = { - [anon_sym_COMMA] = ACTIONS(5092), - [anon_sym_GT] = ACTIONS(5092), + [2462] = { + [anon_sym_COMMA] = ACTIONS(5106), + [anon_sym_GT] = ACTIONS(5106), [sym_comment] = ACTIONS(49), }, - [2453] = { - [sym__expression] = STATE(1777), - [sym_conditional_expression] = STATE(1777), - [sym_assignment_expression] = STATE(1777), - [sym_pointer_expression] = STATE(1777), - [sym_logical_expression] = STATE(1777), - [sym_bitwise_expression] = STATE(1777), - [sym_equality_expression] = STATE(1777), - [sym_relational_expression] = STATE(1777), - [sym_shift_expression] = STATE(1777), - [sym_math_expression] = STATE(1777), - [sym_cast_expression] = STATE(1777), - [sym_sizeof_expression] = STATE(1777), - [sym_subscript_expression] = STATE(1777), - [sym_call_expression] = STATE(1777), - [sym_field_expression] = STATE(1777), - [sym_compound_literal_expression] = STATE(1777), - [sym_parenthesized_expression] = STATE(1777), - [sym_initializer_list] = STATE(1763), - [sym_initializer_pair] = STATE(1763), + [2463] = { + [sym__expression] = STATE(1780), + [sym_conditional_expression] = STATE(1780), + [sym_assignment_expression] = STATE(1780), + [sym_pointer_expression] = STATE(1780), + [sym_logical_expression] = STATE(1780), + [sym_bitwise_expression] = STATE(1780), + [sym_equality_expression] = STATE(1780), + [sym_relational_expression] = STATE(1780), + [sym_shift_expression] = STATE(1780), + [sym_math_expression] = STATE(1780), + [sym_cast_expression] = STATE(1780), + [sym_sizeof_expression] = STATE(1780), + [sym_subscript_expression] = STATE(1780), + [sym_call_expression] = STATE(1780), + [sym_field_expression] = STATE(1780), + [sym_compound_literal_expression] = STATE(1780), + [sym_parenthesized_expression] = STATE(1780), + [sym_initializer_list] = STATE(1766), + [sym_initializer_pair] = STATE(1766), [sym_subscript_designator] = STATE(671), [sym_field_designator] = STATE(671), - [sym_concatenated_string] = STATE(1777), + [sym_concatenated_string] = STATE(1780), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1777), - [sym_new_expression] = STATE(1777), - [sym_delete_expression] = STATE(1777), - [sym_lambda_expression] = STATE(1777), + [sym_template_function] = STATE(1780), + [sym_new_expression] = STATE(1780), + [sym_delete_expression] = STATE(1780), + [sym_lambda_expression] = STATE(1780), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), [aux_sym_initializer_pair_repeat1] = STATE(671), - [sym_raw_string_literal] = ACTIONS(3956), + [sym_raw_string_literal] = ACTIONS(3962), [anon_sym_LPAREN] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_RBRACE] = ACTIONS(6356), + [anon_sym_RBRACE] = ACTIONS(6390), [anon_sym_STAR] = ACTIONS(1325), [anon_sym_LBRACK] = ACTIONS(1277), [anon_sym_AMP] = ACTIONS(1325), @@ -97399,121 +97797,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1333), [anon_sym_sizeof] = ACTIONS(1335), [anon_sym_DOT] = ACTIONS(1289), - [sym_number_literal] = ACTIONS(3956), - [sym_char_literal] = ACTIONS(3956), + [sym_number_literal] = ACTIONS(3962), + [sym_char_literal] = ACTIONS(3962), [sym_string_literal] = ACTIONS(1337), - [sym_true] = ACTIONS(3958), - [sym_false] = ACTIONS(3958), - [sym_null] = ACTIONS(3958), + [sym_true] = ACTIONS(3964), + [sym_false] = ACTIONS(3964), + [sym_null] = ACTIONS(3964), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1341), [anon_sym_delete] = ACTIONS(1343), - [sym_nullptr] = ACTIONS(3958), + [sym_nullptr] = ACTIONS(3964), }, - [2454] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(3801), + [2464] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(3807), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(4141), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(4147), }, - [2455] = { - [anon_sym_RPAREN] = ACTIONS(6358), + [2465] = { + [anon_sym_RPAREN] = ACTIONS(6392), [sym_comment] = ACTIONS(49), }, - [2456] = { - [aux_sym_concatenated_string_repeat1] = STATE(2456), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym_COMMA] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_LBRACK] = ACTIONS(4224), - [anon_sym_EQ] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_STAR_EQ] = ACTIONS(4224), - [anon_sym_SLASH_EQ] = ACTIONS(4224), - [anon_sym_PERCENT_EQ] = ACTIONS(4224), - [anon_sym_PLUS_EQ] = ACTIONS(4224), - [anon_sym_DASH_EQ] = ACTIONS(4224), - [anon_sym_LT_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_GT_EQ] = ACTIONS(4224), - [anon_sym_AMP_EQ] = ACTIONS(4224), - [anon_sym_CARET_EQ] = ACTIONS(4224), - [anon_sym_PIPE_EQ] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_PIPE_PIPE] = ACTIONS(4224), - [anon_sym_AMP_AMP] = ACTIONS(4224), - [anon_sym_PIPE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_EQ_EQ] = ACTIONS(4224), - [anon_sym_BANG_EQ] = ACTIONS(4224), - [anon_sym_LT] = ACTIONS(4226), - [anon_sym_GT] = ACTIONS(4226), - [anon_sym_LT_EQ] = ACTIONS(4224), - [anon_sym_GT_EQ] = ACTIONS(4224), - [anon_sym_LT_LT] = ACTIONS(4226), - [anon_sym_GT_GT] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_SLASH] = ACTIONS(4226), - [anon_sym_PERCENT] = ACTIONS(4226), - [anon_sym_DASH_DASH] = ACTIONS(4224), - [anon_sym_PLUS_PLUS] = ACTIONS(4224), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_DASH_GT] = ACTIONS(4224), - [sym_string_literal] = ACTIONS(6360), + [2466] = { + [aux_sym_concatenated_string_repeat1] = STATE(2466), + [anon_sym_LPAREN] = ACTIONS(4230), + [anon_sym_COMMA] = ACTIONS(4230), + [anon_sym_STAR] = ACTIONS(4232), + [anon_sym_LBRACK] = ACTIONS(4230), + [anon_sym_EQ] = ACTIONS(4232), + [anon_sym_QMARK] = ACTIONS(4230), + [anon_sym_STAR_EQ] = ACTIONS(4230), + [anon_sym_SLASH_EQ] = ACTIONS(4230), + [anon_sym_PERCENT_EQ] = ACTIONS(4230), + [anon_sym_PLUS_EQ] = ACTIONS(4230), + [anon_sym_DASH_EQ] = ACTIONS(4230), + [anon_sym_LT_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_GT_EQ] = ACTIONS(4230), + [anon_sym_AMP_EQ] = ACTIONS(4230), + [anon_sym_CARET_EQ] = ACTIONS(4230), + [anon_sym_PIPE_EQ] = ACTIONS(4230), + [anon_sym_AMP] = ACTIONS(4232), + [anon_sym_PIPE_PIPE] = ACTIONS(4230), + [anon_sym_AMP_AMP] = ACTIONS(4230), + [anon_sym_PIPE] = ACTIONS(4232), + [anon_sym_CARET] = ACTIONS(4232), + [anon_sym_EQ_EQ] = ACTIONS(4230), + [anon_sym_BANG_EQ] = ACTIONS(4230), + [anon_sym_LT] = ACTIONS(4232), + [anon_sym_GT] = ACTIONS(4232), + [anon_sym_LT_EQ] = ACTIONS(4230), + [anon_sym_GT_EQ] = ACTIONS(4230), + [anon_sym_LT_LT] = ACTIONS(4232), + [anon_sym_GT_GT] = ACTIONS(4232), + [anon_sym_PLUS] = ACTIONS(4232), + [anon_sym_DASH] = ACTIONS(4232), + [anon_sym_SLASH] = ACTIONS(4232), + [anon_sym_PERCENT] = ACTIONS(4232), + [anon_sym_DASH_DASH] = ACTIONS(4230), + [anon_sym_PLUS_PLUS] = ACTIONS(4230), + [anon_sym_DOT] = ACTIONS(4230), + [anon_sym_DASH_GT] = ACTIONS(4230), + [sym_string_literal] = ACTIONS(6394), [sym_comment] = ACTIONS(49), }, - [2457] = { + [2467] = { [sym__expression] = STATE(740), [sym_conditional_expression] = STATE(740), [sym_assignment_expression] = STATE(740), @@ -97546,7 +97944,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1419), [anon_sym_STAR] = ACTIONS(1421), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_RBRACK] = ACTIONS(6363), + [anon_sym_RBRACK] = ACTIONS(6397), [anon_sym_EQ] = ACTIONS(1425), [anon_sym_AMP] = ACTIONS(1427), [anon_sym_BANG] = ACTIONS(1429), @@ -97569,648 +97967,648 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1445), [sym_nullptr] = ACTIONS(1441), }, - [2458] = { + [2468] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4258), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4254), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_STAR_EQ] = ACTIONS(4252), - [anon_sym_SLASH_EQ] = ACTIONS(4252), - [anon_sym_PERCENT_EQ] = ACTIONS(4252), - [anon_sym_PLUS_EQ] = ACTIONS(4252), - [anon_sym_DASH_EQ] = ACTIONS(4252), - [anon_sym_LT_LT_EQ] = ACTIONS(4252), - [anon_sym_GT_GT_EQ] = ACTIONS(4252), - [anon_sym_AMP_EQ] = ACTIONS(4252), - [anon_sym_CARET_EQ] = ACTIONS(4252), - [anon_sym_PIPE_EQ] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4260), + [anon_sym_QMARK] = ACTIONS(4258), + [anon_sym_STAR_EQ] = ACTIONS(4258), + [anon_sym_SLASH_EQ] = ACTIONS(4258), + [anon_sym_PERCENT_EQ] = ACTIONS(4258), + [anon_sym_PLUS_EQ] = ACTIONS(4258), + [anon_sym_DASH_EQ] = ACTIONS(4258), + [anon_sym_LT_LT_EQ] = ACTIONS(4258), + [anon_sym_GT_GT_EQ] = ACTIONS(4258), + [anon_sym_AMP_EQ] = ACTIONS(4258), + [anon_sym_CARET_EQ] = ACTIONS(4258), + [anon_sym_PIPE_EQ] = ACTIONS(4258), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2459] = { - [sym__expression] = STATE(2651), - [sym_conditional_expression] = STATE(2651), - [sym_assignment_expression] = STATE(2651), - [sym_pointer_expression] = STATE(2651), - [sym_logical_expression] = STATE(2651), - [sym_bitwise_expression] = STATE(2651), - [sym_equality_expression] = STATE(2651), - [sym_relational_expression] = STATE(2651), - [sym_shift_expression] = STATE(2651), - [sym_math_expression] = STATE(2651), - [sym_cast_expression] = STATE(2651), - [sym_sizeof_expression] = STATE(2651), - [sym_subscript_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_field_expression] = STATE(2651), - [sym_compound_literal_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_concatenated_string] = STATE(2651), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2651), - [sym_new_expression] = STATE(2651), - [sym_delete_expression] = STATE(2651), - [sym_lambda_expression] = STATE(2651), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6365), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(6365), - [sym_char_literal] = ACTIONS(6365), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(6367), - [sym_false] = ACTIONS(6367), - [sym_null] = ACTIONS(6367), - [sym_identifier] = ACTIONS(1105), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(6367), - }, - [2460] = { + [2469] = { + [sym__expression] = STATE(2666), + [sym_conditional_expression] = STATE(2666), + [sym_assignment_expression] = STATE(2666), + [sym_pointer_expression] = STATE(2666), + [sym_logical_expression] = STATE(2666), + [sym_bitwise_expression] = STATE(2666), + [sym_equality_expression] = STATE(2666), + [sym_relational_expression] = STATE(2666), + [sym_shift_expression] = STATE(2666), + [sym_math_expression] = STATE(2666), + [sym_cast_expression] = STATE(2666), + [sym_sizeof_expression] = STATE(2666), + [sym_subscript_expression] = STATE(2666), + [sym_call_expression] = STATE(2666), + [sym_field_expression] = STATE(2666), + [sym_compound_literal_expression] = STATE(2666), + [sym_parenthesized_expression] = STATE(2666), + [sym_concatenated_string] = STATE(2666), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2666), + [sym_new_expression] = STATE(2666), + [sym_delete_expression] = STATE(2666), + [sym_lambda_expression] = STATE(2666), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6399), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(6399), + [sym_char_literal] = ACTIONS(6399), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(6401), + [sym_false] = ACTIONS(6401), + [sym_null] = ACTIONS(6401), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(6401), + }, + [2470] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4274), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4280), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(4274), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_LT_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_GT_EQ] = ACTIONS(5031), - [anon_sym_AMP_EQ] = ACTIONS(5031), - [anon_sym_CARET_EQ] = ACTIONS(5031), - [anon_sym_PIPE_EQ] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(5041), + [anon_sym_QMARK] = ACTIONS(4280), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_LT_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_GT_EQ] = ACTIONS(5045), + [anon_sym_AMP_EQ] = ACTIONS(5045), + [anon_sym_CARET_EQ] = ACTIONS(5045), + [anon_sym_PIPE_EQ] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2461] = { + [2471] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6369), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(6403), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2462] = { + [2472] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(4280), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(4286), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2463] = { + [2473] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2464] = { + [2474] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4282), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4288), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4284), - [anon_sym_QMARK] = ACTIONS(4282), - [anon_sym_STAR_EQ] = ACTIONS(4282), - [anon_sym_SLASH_EQ] = ACTIONS(4282), - [anon_sym_PERCENT_EQ] = ACTIONS(4282), - [anon_sym_PLUS_EQ] = ACTIONS(4282), - [anon_sym_DASH_EQ] = ACTIONS(4282), - [anon_sym_LT_LT_EQ] = ACTIONS(4282), - [anon_sym_GT_GT_EQ] = ACTIONS(4282), - [anon_sym_AMP_EQ] = ACTIONS(4282), - [anon_sym_CARET_EQ] = ACTIONS(4282), - [anon_sym_PIPE_EQ] = ACTIONS(4282), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(4282), - [anon_sym_AMP_AMP] = ACTIONS(4282), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4290), + [anon_sym_QMARK] = ACTIONS(4288), + [anon_sym_STAR_EQ] = ACTIONS(4288), + [anon_sym_SLASH_EQ] = ACTIONS(4288), + [anon_sym_PERCENT_EQ] = ACTIONS(4288), + [anon_sym_PLUS_EQ] = ACTIONS(4288), + [anon_sym_DASH_EQ] = ACTIONS(4288), + [anon_sym_LT_LT_EQ] = ACTIONS(4288), + [anon_sym_GT_GT_EQ] = ACTIONS(4288), + [anon_sym_AMP_EQ] = ACTIONS(4288), + [anon_sym_CARET_EQ] = ACTIONS(4288), + [anon_sym_PIPE_EQ] = ACTIONS(4288), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(4288), + [anon_sym_AMP_AMP] = ACTIONS(4288), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2465] = { + [2475] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2466] = { + [2476] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4278), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4284), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4280), - [anon_sym_QMARK] = ACTIONS(4278), - [anon_sym_STAR_EQ] = ACTIONS(4278), - [anon_sym_SLASH_EQ] = ACTIONS(4278), - [anon_sym_PERCENT_EQ] = ACTIONS(4278), - [anon_sym_PLUS_EQ] = ACTIONS(4278), - [anon_sym_DASH_EQ] = ACTIONS(4278), - [anon_sym_LT_LT_EQ] = ACTIONS(4278), - [anon_sym_GT_GT_EQ] = ACTIONS(4278), - [anon_sym_AMP_EQ] = ACTIONS(4278), - [anon_sym_CARET_EQ] = ACTIONS(4278), - [anon_sym_PIPE_EQ] = ACTIONS(4278), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(4278), - [anon_sym_AMP_AMP] = ACTIONS(4278), - [anon_sym_PIPE] = ACTIONS(4280), - [anon_sym_CARET] = ACTIONS(4280), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4286), + [anon_sym_QMARK] = ACTIONS(4284), + [anon_sym_STAR_EQ] = ACTIONS(4284), + [anon_sym_SLASH_EQ] = ACTIONS(4284), + [anon_sym_PERCENT_EQ] = ACTIONS(4284), + [anon_sym_PLUS_EQ] = ACTIONS(4284), + [anon_sym_DASH_EQ] = ACTIONS(4284), + [anon_sym_LT_LT_EQ] = ACTIONS(4284), + [anon_sym_GT_GT_EQ] = ACTIONS(4284), + [anon_sym_AMP_EQ] = ACTIONS(4284), + [anon_sym_CARET_EQ] = ACTIONS(4284), + [anon_sym_PIPE_EQ] = ACTIONS(4284), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(4284), + [anon_sym_AMP_AMP] = ACTIONS(4284), + [anon_sym_PIPE] = ACTIONS(4286), + [anon_sym_CARET] = ACTIONS(4286), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2467] = { + [2477] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4286), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4292), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4288), - [anon_sym_QMARK] = ACTIONS(4286), - [anon_sym_STAR_EQ] = ACTIONS(4286), - [anon_sym_SLASH_EQ] = ACTIONS(4286), - [anon_sym_PERCENT_EQ] = ACTIONS(4286), - [anon_sym_PLUS_EQ] = ACTIONS(4286), - [anon_sym_DASH_EQ] = ACTIONS(4286), - [anon_sym_LT_LT_EQ] = ACTIONS(4286), - [anon_sym_GT_GT_EQ] = ACTIONS(4286), - [anon_sym_AMP_EQ] = ACTIONS(4286), - [anon_sym_CARET_EQ] = ACTIONS(4286), - [anon_sym_PIPE_EQ] = ACTIONS(4286), - [anon_sym_AMP] = ACTIONS(4288), - [anon_sym_PIPE_PIPE] = ACTIONS(4286), - [anon_sym_AMP_AMP] = ACTIONS(4286), - [anon_sym_PIPE] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(4288), - [anon_sym_EQ_EQ] = ACTIONS(4286), - [anon_sym_BANG_EQ] = ACTIONS(4286), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4294), + [anon_sym_QMARK] = ACTIONS(4292), + [anon_sym_STAR_EQ] = ACTIONS(4292), + [anon_sym_SLASH_EQ] = ACTIONS(4292), + [anon_sym_PERCENT_EQ] = ACTIONS(4292), + [anon_sym_PLUS_EQ] = ACTIONS(4292), + [anon_sym_DASH_EQ] = ACTIONS(4292), + [anon_sym_LT_LT_EQ] = ACTIONS(4292), + [anon_sym_GT_GT_EQ] = ACTIONS(4292), + [anon_sym_AMP_EQ] = ACTIONS(4292), + [anon_sym_CARET_EQ] = ACTIONS(4292), + [anon_sym_PIPE_EQ] = ACTIONS(4292), + [anon_sym_AMP] = ACTIONS(4294), + [anon_sym_PIPE_PIPE] = ACTIONS(4292), + [anon_sym_AMP_AMP] = ACTIONS(4292), + [anon_sym_PIPE] = ACTIONS(4294), + [anon_sym_CARET] = ACTIONS(4294), + [anon_sym_EQ_EQ] = ACTIONS(4292), + [anon_sym_BANG_EQ] = ACTIONS(4292), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2468] = { + [2478] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4290), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4296), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4292), - [anon_sym_QMARK] = ACTIONS(4290), - [anon_sym_STAR_EQ] = ACTIONS(4290), - [anon_sym_SLASH_EQ] = ACTIONS(4290), - [anon_sym_PERCENT_EQ] = ACTIONS(4290), - [anon_sym_PLUS_EQ] = ACTIONS(4290), - [anon_sym_DASH_EQ] = ACTIONS(4290), - [anon_sym_LT_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_GT_EQ] = ACTIONS(4290), - [anon_sym_AMP_EQ] = ACTIONS(4290), - [anon_sym_CARET_EQ] = ACTIONS(4290), - [anon_sym_PIPE_EQ] = ACTIONS(4290), - [anon_sym_AMP] = ACTIONS(4292), - [anon_sym_PIPE_PIPE] = ACTIONS(4290), - [anon_sym_AMP_AMP] = ACTIONS(4290), - [anon_sym_PIPE] = ACTIONS(4292), - [anon_sym_CARET] = ACTIONS(4292), - [anon_sym_EQ_EQ] = ACTIONS(4290), - [anon_sym_BANG_EQ] = ACTIONS(4290), - [anon_sym_LT] = ACTIONS(4292), - [anon_sym_GT] = ACTIONS(4292), - [anon_sym_LT_EQ] = ACTIONS(4290), - [anon_sym_GT_EQ] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4298), + [anon_sym_QMARK] = ACTIONS(4296), + [anon_sym_STAR_EQ] = ACTIONS(4296), + [anon_sym_SLASH_EQ] = ACTIONS(4296), + [anon_sym_PERCENT_EQ] = ACTIONS(4296), + [anon_sym_PLUS_EQ] = ACTIONS(4296), + [anon_sym_DASH_EQ] = ACTIONS(4296), + [anon_sym_LT_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_GT_EQ] = ACTIONS(4296), + [anon_sym_AMP_EQ] = ACTIONS(4296), + [anon_sym_CARET_EQ] = ACTIONS(4296), + [anon_sym_PIPE_EQ] = ACTIONS(4296), + [anon_sym_AMP] = ACTIONS(4298), + [anon_sym_PIPE_PIPE] = ACTIONS(4296), + [anon_sym_AMP_AMP] = ACTIONS(4296), + [anon_sym_PIPE] = ACTIONS(4298), + [anon_sym_CARET] = ACTIONS(4298), + [anon_sym_EQ_EQ] = ACTIONS(4296), + [anon_sym_BANG_EQ] = ACTIONS(4296), + [anon_sym_LT] = ACTIONS(4298), + [anon_sym_GT] = ACTIONS(4298), + [anon_sym_LT_EQ] = ACTIONS(4296), + [anon_sym_GT_EQ] = ACTIONS(4296), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2469] = { + [2479] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4294), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4300), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4296), - [anon_sym_QMARK] = ACTIONS(4294), - [anon_sym_STAR_EQ] = ACTIONS(4294), - [anon_sym_SLASH_EQ] = ACTIONS(4294), - [anon_sym_PERCENT_EQ] = ACTIONS(4294), - [anon_sym_PLUS_EQ] = ACTIONS(4294), - [anon_sym_DASH_EQ] = ACTIONS(4294), - [anon_sym_LT_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_GT_EQ] = ACTIONS(4294), - [anon_sym_AMP_EQ] = ACTIONS(4294), - [anon_sym_CARET_EQ] = ACTIONS(4294), - [anon_sym_PIPE_EQ] = ACTIONS(4294), - [anon_sym_AMP] = ACTIONS(4296), - [anon_sym_PIPE_PIPE] = ACTIONS(4294), - [anon_sym_AMP_AMP] = ACTIONS(4294), - [anon_sym_PIPE] = ACTIONS(4296), - [anon_sym_CARET] = ACTIONS(4296), - [anon_sym_EQ_EQ] = ACTIONS(4294), - [anon_sym_BANG_EQ] = ACTIONS(4294), - [anon_sym_LT] = ACTIONS(4296), - [anon_sym_GT] = ACTIONS(4296), - [anon_sym_LT_EQ] = ACTIONS(4294), - [anon_sym_GT_EQ] = ACTIONS(4294), - [anon_sym_LT_LT] = ACTIONS(4296), - [anon_sym_GT_GT] = ACTIONS(4296), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4302), + [anon_sym_QMARK] = ACTIONS(4300), + [anon_sym_STAR_EQ] = ACTIONS(4300), + [anon_sym_SLASH_EQ] = ACTIONS(4300), + [anon_sym_PERCENT_EQ] = ACTIONS(4300), + [anon_sym_PLUS_EQ] = ACTIONS(4300), + [anon_sym_DASH_EQ] = ACTIONS(4300), + [anon_sym_LT_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_GT_EQ] = ACTIONS(4300), + [anon_sym_AMP_EQ] = ACTIONS(4300), + [anon_sym_CARET_EQ] = ACTIONS(4300), + [anon_sym_PIPE_EQ] = ACTIONS(4300), + [anon_sym_AMP] = ACTIONS(4302), + [anon_sym_PIPE_PIPE] = ACTIONS(4300), + [anon_sym_AMP_AMP] = ACTIONS(4300), + [anon_sym_PIPE] = ACTIONS(4302), + [anon_sym_CARET] = ACTIONS(4302), + [anon_sym_EQ_EQ] = ACTIONS(4300), + [anon_sym_BANG_EQ] = ACTIONS(4300), + [anon_sym_LT] = ACTIONS(4302), + [anon_sym_GT] = ACTIONS(4302), + [anon_sym_LT_EQ] = ACTIONS(4300), + [anon_sym_GT_EQ] = ACTIONS(4300), + [anon_sym_LT_LT] = ACTIONS(4302), + [anon_sym_GT_GT] = ACTIONS(4302), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2470] = { + [2480] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(4274), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4270), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_STAR_EQ] = ACTIONS(4268), - [anon_sym_SLASH_EQ] = ACTIONS(4268), - [anon_sym_PERCENT_EQ] = ACTIONS(4268), - [anon_sym_PLUS_EQ] = ACTIONS(4268), - [anon_sym_DASH_EQ] = ACTIONS(4268), - [anon_sym_LT_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_GT_EQ] = ACTIONS(4268), - [anon_sym_AMP_EQ] = ACTIONS(4268), - [anon_sym_CARET_EQ] = ACTIONS(4268), - [anon_sym_PIPE_EQ] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4270), - [anon_sym_PIPE_PIPE] = ACTIONS(4268), - [anon_sym_AMP_AMP] = ACTIONS(4268), - [anon_sym_PIPE] = ACTIONS(4270), - [anon_sym_CARET] = ACTIONS(4270), - [anon_sym_EQ_EQ] = ACTIONS(4268), - [anon_sym_BANG_EQ] = ACTIONS(4268), - [anon_sym_LT] = ACTIONS(4270), - [anon_sym_GT] = ACTIONS(4270), - [anon_sym_LT_EQ] = ACTIONS(4268), - [anon_sym_GT_EQ] = ACTIONS(4268), - [anon_sym_LT_LT] = ACTIONS(4270), - [anon_sym_GT_GT] = ACTIONS(4270), - [anon_sym_PLUS] = ACTIONS(4270), - [anon_sym_DASH] = ACTIONS(4270), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(4276), + [anon_sym_QMARK] = ACTIONS(4274), + [anon_sym_STAR_EQ] = ACTIONS(4274), + [anon_sym_SLASH_EQ] = ACTIONS(4274), + [anon_sym_PERCENT_EQ] = ACTIONS(4274), + [anon_sym_PLUS_EQ] = ACTIONS(4274), + [anon_sym_DASH_EQ] = ACTIONS(4274), + [anon_sym_LT_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_GT_EQ] = ACTIONS(4274), + [anon_sym_AMP_EQ] = ACTIONS(4274), + [anon_sym_CARET_EQ] = ACTIONS(4274), + [anon_sym_PIPE_EQ] = ACTIONS(4274), + [anon_sym_AMP] = ACTIONS(4276), + [anon_sym_PIPE_PIPE] = ACTIONS(4274), + [anon_sym_AMP_AMP] = ACTIONS(4274), + [anon_sym_PIPE] = ACTIONS(4276), + [anon_sym_CARET] = ACTIONS(4276), + [anon_sym_EQ_EQ] = ACTIONS(4274), + [anon_sym_BANG_EQ] = ACTIONS(4274), + [anon_sym_LT] = ACTIONS(4276), + [anon_sym_GT] = ACTIONS(4276), + [anon_sym_LT_EQ] = ACTIONS(4274), + [anon_sym_GT_EQ] = ACTIONS(4274), + [anon_sym_LT_LT] = ACTIONS(4276), + [anon_sym_GT_GT] = ACTIONS(4276), + [anon_sym_PLUS] = ACTIONS(4276), + [anon_sym_DASH] = ACTIONS(4276), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2471] = { - [sym__abstract_declarator] = STATE(2653), - [sym_abstract_pointer_declarator] = STATE(2653), - [sym_abstract_function_declarator] = STATE(2653), - [sym_abstract_array_declarator] = STATE(2653), - [sym_parameter_list] = STATE(2474), - [sym_abstract_reference_declarator] = STATE(2653), + [2481] = { + [sym__abstract_declarator] = STATE(2668), + [sym_abstract_pointer_declarator] = STATE(2668), + [sym_abstract_function_declarator] = STATE(2668), + [sym_abstract_array_declarator] = STATE(2668), + [sym_parameter_list] = STATE(2484), + [sym_abstract_reference_declarator] = STATE(2668), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(5884), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(5862), - [anon_sym_AMP_AMP] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_EQ] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5888), + [anon_sym_GT] = ACTIONS(2270), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2472] = { - [sym__abstract_declarator] = STATE(2654), - [sym_abstract_pointer_declarator] = STATE(2654), - [sym_abstract_function_declarator] = STATE(2654), - [sym_abstract_array_declarator] = STATE(2654), - [sym_parameter_list] = STATE(2474), - [sym_abstract_reference_declarator] = STATE(2654), + [2482] = { + [sym__abstract_declarator] = STATE(2669), + [sym_abstract_pointer_declarator] = STATE(2669), + [sym_abstract_function_declarator] = STATE(2669), + [sym_abstract_array_declarator] = STATE(2669), + [sym_parameter_list] = STATE(2484), + [sym_abstract_reference_declarator] = STATE(2669), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(5860), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(5884), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(5862), - [anon_sym_AMP_AMP] = ACTIONS(5864), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), - }, - [2473] = { - [sym_parameter_list] = STATE(2655), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_GT] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(5886), + [anon_sym_AMP_AMP] = ACTIONS(5888), + [anon_sym_GT] = ACTIONS(2278), + [anon_sym_DASH_GT] = ACTIONS(2278), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), + [sym_noexcept] = ACTIONS(2278), }, - [2474] = { - [sym_type_qualifier] = STATE(2656), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2656), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [2483] = { + [sym_parameter_list] = STATE(2670), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_GT] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2484] = { + [sym_type_qualifier] = STATE(2671), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2671), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_GT] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2475] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2475), + [2485] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2485), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_LBRACE] = ACTIONS(816), @@ -98224,9 +98622,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(6371), - [anon_sym_long] = ACTIONS(6371), - [anon_sym_short] = ACTIONS(6371), + [anon_sym_unsigned] = ACTIONS(6405), + [anon_sym_long] = ACTIONS(6405), + [anon_sym_short] = ACTIONS(6405), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -98236,13 +98634,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2476] = { - [sym_type_qualifier] = STATE(2199), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2199), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2486] = { + [sym_type_qualifier] = STATE(2205), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2205), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -98252,111 +98650,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1194), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5068), + [sym_noexcept] = ACTIONS(5082), }, - [2477] = { - [sym_parameter_list] = STATE(1744), + [2487] = { + [sym_parameter_list] = STATE(1747), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2478] = { + [2488] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_SEMI] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2479] = { + [2489] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_SEMI] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(2428), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2428), - [anon_sym_QMARK] = ACTIONS(2430), - [anon_sym_STAR_EQ] = ACTIONS(2432), - [anon_sym_SLASH_EQ] = ACTIONS(2432), - [anon_sym_PERCENT_EQ] = ACTIONS(2432), - [anon_sym_PLUS_EQ] = ACTIONS(2432), - [anon_sym_DASH_EQ] = ACTIONS(2432), - [anon_sym_LT_LT_EQ] = ACTIONS(2432), - [anon_sym_GT_GT_EQ] = ACTIONS(2432), - [anon_sym_AMP_EQ] = ACTIONS(2432), - [anon_sym_CARET_EQ] = ACTIONS(2432), - [anon_sym_PIPE_EQ] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2434), - [anon_sym_PIPE_PIPE] = ACTIONS(2436), - [anon_sym_AMP_AMP] = ACTIONS(2438), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_CARET] = ACTIONS(2442), - [anon_sym_EQ_EQ] = ACTIONS(2444), - [anon_sym_BANG_EQ] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2446), - [anon_sym_GT] = ACTIONS(2446), - [anon_sym_LT_EQ] = ACTIONS(2448), - [anon_sym_GT_EQ] = ACTIONS(2448), - [anon_sym_LT_LT] = ACTIONS(2450), - [anon_sym_GT_GT] = ACTIONS(2450), - [anon_sym_PLUS] = ACTIONS(2452), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_SLASH] = ACTIONS(2426), - [anon_sym_PERCENT] = ACTIONS(2426), + [anon_sym_EQ] = ACTIONS(2430), + [anon_sym_QMARK] = ACTIONS(2432), + [anon_sym_STAR_EQ] = ACTIONS(2434), + [anon_sym_SLASH_EQ] = ACTIONS(2434), + [anon_sym_PERCENT_EQ] = ACTIONS(2434), + [anon_sym_PLUS_EQ] = ACTIONS(2434), + [anon_sym_DASH_EQ] = ACTIONS(2434), + [anon_sym_LT_LT_EQ] = ACTIONS(2434), + [anon_sym_GT_GT_EQ] = ACTIONS(2434), + [anon_sym_AMP_EQ] = ACTIONS(2434), + [anon_sym_CARET_EQ] = ACTIONS(2434), + [anon_sym_PIPE_EQ] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2436), + [anon_sym_PIPE_PIPE] = ACTIONS(2438), + [anon_sym_AMP_AMP] = ACTIONS(2440), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_CARET] = ACTIONS(2444), + [anon_sym_EQ_EQ] = ACTIONS(2446), + [anon_sym_BANG_EQ] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2448), + [anon_sym_GT] = ACTIONS(2448), + [anon_sym_LT_EQ] = ACTIONS(2450), + [anon_sym_GT_EQ] = ACTIONS(2450), + [anon_sym_LT_LT] = ACTIONS(2452), + [anon_sym_GT_GT] = ACTIONS(2452), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_PERCENT] = ACTIONS(2428), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2480] = { - [sym_type_qualifier] = STATE(2481), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2481), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [2490] = { + [sym_type_qualifier] = STATE(2491), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2491), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -98366,290 +98764,290 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_constexpr] = ACTIONS(614), [anon_sym_DASH_GT] = ACTIONS(1309), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(5893), + [sym_noexcept] = ACTIONS(5917), }, - [2481] = { - [sym_type_qualifier] = STATE(2481), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2481), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6374), + [2491] = { + [sym_type_qualifier] = STATE(2491), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2491), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6408), }, - [2482] = { + [2492] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_RBRACE] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_RBRACE] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2483] = { + [2493] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_RBRACE] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_RBRACE] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(2507), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2511), - [anon_sym_SLASH_EQ] = ACTIONS(2511), - [anon_sym_PERCENT_EQ] = ACTIONS(2511), - [anon_sym_PLUS_EQ] = ACTIONS(2511), - [anon_sym_DASH_EQ] = ACTIONS(2511), - [anon_sym_LT_LT_EQ] = ACTIONS(2511), - [anon_sym_GT_GT_EQ] = ACTIONS(2511), - [anon_sym_AMP_EQ] = ACTIONS(2511), - [anon_sym_CARET_EQ] = ACTIONS(2511), - [anon_sym_PIPE_EQ] = ACTIONS(2511), - [anon_sym_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2519), - [anon_sym_CARET] = ACTIONS(2521), - [anon_sym_EQ_EQ] = ACTIONS(2523), - [anon_sym_BANG_EQ] = ACTIONS(2523), - [anon_sym_LT] = ACTIONS(2525), - [anon_sym_GT] = ACTIONS(2525), - [anon_sym_LT_EQ] = ACTIONS(2527), - [anon_sym_GT_EQ] = ACTIONS(2527), - [anon_sym_LT_LT] = ACTIONS(2529), - [anon_sym_GT_GT] = ACTIONS(2529), - [anon_sym_PLUS] = ACTIONS(2531), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_SLASH] = ACTIONS(2505), - [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2509), + [anon_sym_QMARK] = ACTIONS(2511), + [anon_sym_STAR_EQ] = ACTIONS(2513), + [anon_sym_SLASH_EQ] = ACTIONS(2513), + [anon_sym_PERCENT_EQ] = ACTIONS(2513), + [anon_sym_PLUS_EQ] = ACTIONS(2513), + [anon_sym_DASH_EQ] = ACTIONS(2513), + [anon_sym_LT_LT_EQ] = ACTIONS(2513), + [anon_sym_GT_GT_EQ] = ACTIONS(2513), + [anon_sym_AMP_EQ] = ACTIONS(2513), + [anon_sym_CARET_EQ] = ACTIONS(2513), + [anon_sym_PIPE_EQ] = ACTIONS(2513), + [anon_sym_AMP] = ACTIONS(2515), + [anon_sym_PIPE_PIPE] = ACTIONS(2517), + [anon_sym_AMP_AMP] = ACTIONS(2519), + [anon_sym_PIPE] = ACTIONS(2521), + [anon_sym_CARET] = ACTIONS(2523), + [anon_sym_EQ_EQ] = ACTIONS(2525), + [anon_sym_BANG_EQ] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2527), + [anon_sym_GT] = ACTIONS(2527), + [anon_sym_LT_EQ] = ACTIONS(2529), + [anon_sym_GT_EQ] = ACTIONS(2529), + [anon_sym_LT_LT] = ACTIONS(2531), + [anon_sym_GT_GT] = ACTIONS(2531), + [anon_sym_PLUS] = ACTIONS(2533), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_SLASH] = ACTIONS(2507), + [anon_sym_PERCENT] = ACTIONS(2507), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2484] = { + [2494] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2485] = { + [2495] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2486] = { - [sym__abstract_declarator] = STATE(2657), - [sym_abstract_pointer_declarator] = STATE(2657), - [sym_abstract_function_declarator] = STATE(2657), - [sym_abstract_array_declarator] = STATE(2657), - [sym_parameter_list] = STATE(2489), - [sym_abstract_reference_declarator] = STATE(2657), + [2496] = { + [sym__abstract_declarator] = STATE(2672), + [sym_abstract_pointer_declarator] = STATE(2672), + [sym_abstract_function_declarator] = STATE(2672), + [sym_abstract_array_declarator] = STATE(2672), + [sym_parameter_list] = STATE(2499), + [sym_abstract_reference_declarator] = STATE(2672), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RPAREN] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_RPAREN] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(5943), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(5921), - [anon_sym_AMP_AMP] = ACTIONS(5923), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_EQ] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(5945), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2487] = { - [sym__abstract_declarator] = STATE(2658), - [sym_abstract_pointer_declarator] = STATE(2658), - [sym_abstract_function_declarator] = STATE(2658), - [sym_abstract_array_declarator] = STATE(2658), - [sym_parameter_list] = STATE(2489), - [sym_abstract_reference_declarator] = STATE(2658), + [2497] = { + [sym__abstract_declarator] = STATE(2673), + [sym_abstract_pointer_declarator] = STATE(2673), + [sym_abstract_function_declarator] = STATE(2673), + [sym_abstract_array_declarator] = STATE(2673), + [sym_parameter_list] = STATE(2499), + [sym_abstract_reference_declarator] = STATE(2673), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_RPAREN] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(5919), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(5943), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(5921), - [anon_sym_AMP_AMP] = ACTIONS(5923), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(5945), + [anon_sym_AMP_AMP] = ACTIONS(5947), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [2488] = { - [sym_parameter_list] = STATE(2659), + [2498] = { + [sym_parameter_list] = STATE(2674), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_RPAREN] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [2489] = { - [sym_type_qualifier] = STATE(2660), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2660), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RPAREN] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_RPAREN] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2499] = { + [sym_type_qualifier] = STATE(2675), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2675), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2490] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2490), + [2500] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2500), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_RPAREN] = ACTIONS(816), @@ -98664,9 +99062,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(6377), - [anon_sym_long] = ACTIONS(6377), - [anon_sym_short] = ACTIONS(6377), + [anon_sym_unsigned] = ACTIONS(6411), + [anon_sym_long] = ACTIONS(6411), + [anon_sym_short] = ACTIONS(6411), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), @@ -98675,953 +99073,953 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2491] = { + [2501] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5960), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(5984), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2492] = { + [2502] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(2646), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(2648), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_RBRACK] = ACTIONS(5964), - [anon_sym_EQ] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2652), - [anon_sym_STAR_EQ] = ACTIONS(2654), - [anon_sym_SLASH_EQ] = ACTIONS(2654), - [anon_sym_PERCENT_EQ] = ACTIONS(2654), - [anon_sym_PLUS_EQ] = ACTIONS(2654), - [anon_sym_DASH_EQ] = ACTIONS(2654), - [anon_sym_LT_LT_EQ] = ACTIONS(2654), - [anon_sym_GT_GT_EQ] = ACTIONS(2654), - [anon_sym_AMP_EQ] = ACTIONS(2654), - [anon_sym_CARET_EQ] = ACTIONS(2654), - [anon_sym_PIPE_EQ] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2656), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_CARET] = ACTIONS(2664), - [anon_sym_EQ_EQ] = ACTIONS(2666), - [anon_sym_BANG_EQ] = ACTIONS(2666), - [anon_sym_LT] = ACTIONS(2668), - [anon_sym_GT] = ACTIONS(2668), - [anon_sym_LT_EQ] = ACTIONS(2670), - [anon_sym_GT_EQ] = ACTIONS(2670), - [anon_sym_LT_LT] = ACTIONS(2672), - [anon_sym_GT_GT] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_SLASH] = ACTIONS(2646), - [anon_sym_PERCENT] = ACTIONS(2646), + [anon_sym_RBRACK] = ACTIONS(5988), + [anon_sym_EQ] = ACTIONS(2652), + [anon_sym_QMARK] = ACTIONS(2654), + [anon_sym_STAR_EQ] = ACTIONS(2656), + [anon_sym_SLASH_EQ] = ACTIONS(2656), + [anon_sym_PERCENT_EQ] = ACTIONS(2656), + [anon_sym_PLUS_EQ] = ACTIONS(2656), + [anon_sym_DASH_EQ] = ACTIONS(2656), + [anon_sym_LT_LT_EQ] = ACTIONS(2656), + [anon_sym_GT_GT_EQ] = ACTIONS(2656), + [anon_sym_AMP_EQ] = ACTIONS(2656), + [anon_sym_CARET_EQ] = ACTIONS(2656), + [anon_sym_PIPE_EQ] = ACTIONS(2656), + [anon_sym_AMP] = ACTIONS(2658), + [anon_sym_PIPE_PIPE] = ACTIONS(2660), + [anon_sym_AMP_AMP] = ACTIONS(2662), + [anon_sym_PIPE] = ACTIONS(2664), + [anon_sym_CARET] = ACTIONS(2666), + [anon_sym_EQ_EQ] = ACTIONS(2668), + [anon_sym_BANG_EQ] = ACTIONS(2668), + [anon_sym_LT] = ACTIONS(2670), + [anon_sym_GT] = ACTIONS(2670), + [anon_sym_LT_EQ] = ACTIONS(2672), + [anon_sym_GT_EQ] = ACTIONS(2672), + [anon_sym_LT_LT] = ACTIONS(2674), + [anon_sym_GT_GT] = ACTIONS(2674), + [anon_sym_PLUS] = ACTIONS(2676), + [anon_sym_DASH] = ACTIONS(2676), + [anon_sym_SLASH] = ACTIONS(2648), + [anon_sym_PERCENT] = ACTIONS(2648), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2493] = { - [sym_raw_string_literal] = ACTIONS(4822), - [anon_sym_LPAREN] = ACTIONS(4822), - [anon_sym_extern] = ACTIONS(4824), - [anon_sym_STAR] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_RBRACK] = ACTIONS(4822), - [anon_sym_static] = ACTIONS(4824), - [anon_sym_register] = ACTIONS(4824), - [anon_sym_inline] = ACTIONS(4824), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4824), - [anon_sym_volatile] = ACTIONS(4824), - [anon_sym__Atomic] = ACTIONS(4824), - [anon_sym_mutable] = ACTIONS(4824), - [anon_sym_explicit] = ACTIONS(4824), - [anon_sym_constexpr] = ACTIONS(4824), - [anon_sym_AMP] = ACTIONS(4822), - [anon_sym_BANG] = ACTIONS(4822), - [anon_sym_TILDE] = ACTIONS(4822), - [anon_sym_PLUS] = ACTIONS(4824), - [anon_sym_DASH] = ACTIONS(4824), - [anon_sym_DASH_DASH] = ACTIONS(4822), - [anon_sym_PLUS_PLUS] = ACTIONS(4822), - [anon_sym_sizeof] = ACTIONS(4824), - [sym_number_literal] = ACTIONS(4822), - [sym_char_literal] = ACTIONS(4822), - [sym_string_literal] = ACTIONS(4822), - [sym_true] = ACTIONS(4824), - [sym_false] = ACTIONS(4824), - [sym_null] = ACTIONS(4824), - [sym_identifier] = ACTIONS(4824), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(4824), - [anon_sym_COLON_COLON] = ACTIONS(4822), - [anon_sym_delete] = ACTIONS(4824), - [sym_nullptr] = ACTIONS(4824), + [2503] = { + [sym_raw_string_literal] = ACTIONS(4836), + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_extern] = ACTIONS(4838), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_RBRACK] = ACTIONS(4836), + [anon_sym_static] = ACTIONS(4838), + [anon_sym_register] = ACTIONS(4838), + [anon_sym_inline] = ACTIONS(4838), + [anon_sym_const] = ACTIONS(4838), + [anon_sym_restrict] = ACTIONS(4838), + [anon_sym_volatile] = ACTIONS(4838), + [anon_sym__Atomic] = ACTIONS(4838), + [anon_sym_mutable] = ACTIONS(4838), + [anon_sym_explicit] = ACTIONS(4838), + [anon_sym_constexpr] = ACTIONS(4838), + [anon_sym_AMP] = ACTIONS(4836), + [anon_sym_BANG] = ACTIONS(4836), + [anon_sym_TILDE] = ACTIONS(4836), + [anon_sym_PLUS] = ACTIONS(4838), + [anon_sym_DASH] = ACTIONS(4838), + [anon_sym_DASH_DASH] = ACTIONS(4836), + [anon_sym_PLUS_PLUS] = ACTIONS(4836), + [anon_sym_sizeof] = ACTIONS(4838), + [sym_number_literal] = ACTIONS(4836), + [sym_char_literal] = ACTIONS(4836), + [sym_string_literal] = ACTIONS(4836), + [sym_true] = ACTIONS(4838), + [sym_false] = ACTIONS(4838), + [sym_null] = ACTIONS(4838), + [sym_identifier] = ACTIONS(4838), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(4838), + [anon_sym_COLON_COLON] = ACTIONS(4836), + [anon_sym_delete] = ACTIONS(4838), + [sym_nullptr] = ACTIONS(4838), }, - [2494] = { - [anon_sym_LPAREN] = ACTIONS(6380), - [anon_sym_LBRACE] = ACTIONS(6380), + [2504] = { + [anon_sym_LPAREN] = ACTIONS(6414), + [anon_sym_LBRACE] = ACTIONS(6414), [sym_comment] = ACTIONS(49), }, - [2495] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2495), + [2505] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2505), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_STAR] = ACTIONS(816), [anon_sym_LBRACK] = ACTIONS(816), - [anon_sym_unsigned] = ACTIONS(6382), - [anon_sym_long] = ACTIONS(6382), - [anon_sym_short] = ACTIONS(6382), + [anon_sym_unsigned] = ACTIONS(6416), + [anon_sym_long] = ACTIONS(6416), + [anon_sym_short] = ACTIONS(6416), [sym_primitive_type] = ACTIONS(818), [anon_sym_AMP] = ACTIONS(818), [anon_sym_AMP_AMP] = ACTIONS(816), [sym_identifier] = ACTIONS(818), [sym_comment] = ACTIONS(49), }, - [2496] = { - [sym_parameter_list] = STATE(1346), + [2506] = { + [sym_parameter_list] = STATE(1347), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2497] = { - [sym_parameter_list] = STATE(1346), + [2507] = { + [sym_parameter_list] = STATE(1347), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), [sym_comment] = ACTIONS(49), }, - [2498] = { - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3533), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_LBRACK] = ACTIONS(3533), - [anon_sym_EQ] = ACTIONS(3533), - [anon_sym_const] = ACTIONS(3535), - [anon_sym_restrict] = ACTIONS(3533), - [anon_sym_volatile] = ACTIONS(3533), - [anon_sym__Atomic] = ACTIONS(3533), - [anon_sym_mutable] = ACTIONS(3533), - [anon_sym_explicit] = ACTIONS(3533), - [anon_sym_constexpr] = ACTIONS(3533), - [anon_sym_COLON] = ACTIONS(3533), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3533), - [anon_sym_GT] = ACTIONS(3533), - [anon_sym_DASH_GT] = ACTIONS(3533), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3533), + [2508] = { + [anon_sym_LPAREN] = ACTIONS(3539), + [anon_sym_COMMA] = ACTIONS(3539), + [anon_sym_RPAREN] = ACTIONS(3539), + [anon_sym_SEMI] = ACTIONS(3539), + [anon_sym_LBRACE] = ACTIONS(3539), + [anon_sym_STAR] = ACTIONS(3539), + [anon_sym_LBRACK] = ACTIONS(3539), + [anon_sym_EQ] = ACTIONS(3539), + [anon_sym_const] = ACTIONS(3541), + [anon_sym_restrict] = ACTIONS(3539), + [anon_sym_volatile] = ACTIONS(3539), + [anon_sym__Atomic] = ACTIONS(3539), + [anon_sym_mutable] = ACTIONS(3539), + [anon_sym_explicit] = ACTIONS(3539), + [anon_sym_constexpr] = ACTIONS(3539), + [anon_sym_COLON] = ACTIONS(3539), + [anon_sym_AMP] = ACTIONS(3541), + [anon_sym_AMP_AMP] = ACTIONS(3539), + [anon_sym_GT] = ACTIONS(3539), + [anon_sym_DASH_GT] = ACTIONS(3539), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3539), }, - [2499] = { - [sym_enumerator] = STATE(1029), - [anon_sym_RBRACE] = ACTIONS(6385), + [2509] = { + [sym_enumerator] = STATE(1030), + [anon_sym_RBRACE] = ACTIONS(6419), [sym_identifier] = ACTIONS(348), [sym_comment] = ACTIONS(49), }, - [2500] = { - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), - [anon_sym_RPAREN] = ACTIONS(3770), - [anon_sym_SEMI] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_LBRACK] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(3770), - [anon_sym_const] = ACTIONS(3772), - [anon_sym_restrict] = ACTIONS(3770), - [anon_sym_volatile] = ACTIONS(3770), - [anon_sym__Atomic] = ACTIONS(3770), - [anon_sym_mutable] = ACTIONS(3770), - [anon_sym_explicit] = ACTIONS(3770), - [anon_sym_constexpr] = ACTIONS(3770), - [anon_sym_COLON] = ACTIONS(3772), - [anon_sym_AMP] = ACTIONS(3772), - [anon_sym_AMP_AMP] = ACTIONS(3770), - [anon_sym_GT] = ACTIONS(3770), - [anon_sym_DASH_GT] = ACTIONS(3770), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3770), - [anon_sym_COLON_COLON] = ACTIONS(3770), + [2510] = { + [anon_sym_LPAREN] = ACTIONS(3776), + [anon_sym_COMMA] = ACTIONS(3776), + [anon_sym_RPAREN] = ACTIONS(3776), + [anon_sym_SEMI] = ACTIONS(3776), + [anon_sym_LBRACE] = ACTIONS(3776), + [anon_sym_STAR] = ACTIONS(3776), + [anon_sym_LBRACK] = ACTIONS(3776), + [anon_sym_EQ] = ACTIONS(3776), + [anon_sym_const] = ACTIONS(3778), + [anon_sym_restrict] = ACTIONS(3776), + [anon_sym_volatile] = ACTIONS(3776), + [anon_sym__Atomic] = ACTIONS(3776), + [anon_sym_mutable] = ACTIONS(3776), + [anon_sym_explicit] = ACTIONS(3776), + [anon_sym_constexpr] = ACTIONS(3776), + [anon_sym_COLON] = ACTIONS(3778), + [anon_sym_AMP] = ACTIONS(3778), + [anon_sym_AMP_AMP] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3776), + [anon_sym_DASH_GT] = ACTIONS(3776), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3776), + [anon_sym_COLON_COLON] = ACTIONS(3776), }, - [2501] = { - [anon_sym_LF] = ACTIONS(6387), + [2511] = { + [anon_sym_LF] = ACTIONS(6421), [sym_comment] = ACTIONS(83), }, - [2502] = { - [sym_raw_string_literal] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1821), - [sym_char_literal] = ACTIONS(1821), - [sym_string_literal] = ACTIONS(1821), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_delete] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), + [2512] = { + [sym_raw_string_literal] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [sym_string_literal] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1825), + [sym_nullptr] = ACTIONS(1825), }, - [2503] = { - [anon_sym_LF] = ACTIONS(6389), + [2513] = { + [anon_sym_LF] = ACTIONS(6423), [sym_comment] = ACTIONS(83), }, - [2504] = { - [sym_raw_string_literal] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5383), - [sym_preproc_directive] = ACTIONS(5383), - [anon_sym_SEMI] = ACTIONS(5381), - [anon_sym_typedef] = ACTIONS(5383), - [anon_sym_extern] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_static] = ACTIONS(5383), - [anon_sym_register] = ACTIONS(5383), - [anon_sym_inline] = ACTIONS(5383), - [anon_sym_const] = ACTIONS(5383), - [anon_sym_restrict] = ACTIONS(5383), - [anon_sym_volatile] = ACTIONS(5383), - [anon_sym__Atomic] = ACTIONS(5383), - [anon_sym_mutable] = ACTIONS(5383), - [anon_sym_explicit] = ACTIONS(5383), - [anon_sym_constexpr] = ACTIONS(5383), - [anon_sym_unsigned] = ACTIONS(5383), - [anon_sym_long] = ACTIONS(5383), - [anon_sym_short] = ACTIONS(5383), - [sym_primitive_type] = ACTIONS(5383), - [anon_sym_enum] = ACTIONS(5383), - [anon_sym_struct] = ACTIONS(5383), - [anon_sym_union] = ACTIONS(5383), - [anon_sym_if] = ACTIONS(5383), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_case] = ACTIONS(5383), - [anon_sym_default] = ACTIONS(5383), - [anon_sym_while] = ACTIONS(5383), - [anon_sym_do] = ACTIONS(5383), - [anon_sym_for] = ACTIONS(5383), - [anon_sym_return] = ACTIONS(5383), - [anon_sym_break] = ACTIONS(5383), - [anon_sym_continue] = ACTIONS(5383), - [anon_sym_goto] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_TILDE] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5381), - [anon_sym_PLUS_PLUS] = ACTIONS(5381), - [anon_sym_sizeof] = ACTIONS(5383), - [sym_number_literal] = ACTIONS(5381), - [sym_char_literal] = ACTIONS(5381), - [sym_string_literal] = ACTIONS(5381), - [sym_true] = ACTIONS(5383), - [sym_false] = ACTIONS(5383), - [sym_null] = ACTIONS(5383), - [sym_identifier] = ACTIONS(5383), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5383), - [sym_auto] = ACTIONS(5383), - [anon_sym_typename] = ACTIONS(5383), - [anon_sym_new] = ACTIONS(5383), - [anon_sym_COLON_COLON] = ACTIONS(5381), - [anon_sym_delete] = ACTIONS(5383), - [sym_nullptr] = ACTIONS(5383), + [2514] = { + [sym_raw_string_literal] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5401), + [anon_sym_LPAREN] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5401), + [sym_preproc_directive] = ACTIONS(5401), + [anon_sym_SEMI] = ACTIONS(5399), + [anon_sym_typedef] = ACTIONS(5401), + [anon_sym_extern] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5399), + [anon_sym_STAR] = ACTIONS(5399), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_register] = ACTIONS(5401), + [anon_sym_inline] = ACTIONS(5401), + [anon_sym_const] = ACTIONS(5401), + [anon_sym_restrict] = ACTIONS(5401), + [anon_sym_volatile] = ACTIONS(5401), + [anon_sym__Atomic] = ACTIONS(5401), + [anon_sym_mutable] = ACTIONS(5401), + [anon_sym_explicit] = ACTIONS(5401), + [anon_sym_constexpr] = ACTIONS(5401), + [anon_sym_unsigned] = ACTIONS(5401), + [anon_sym_long] = ACTIONS(5401), + [anon_sym_short] = ACTIONS(5401), + [sym_primitive_type] = ACTIONS(5401), + [anon_sym_enum] = ACTIONS(5401), + [anon_sym_struct] = ACTIONS(5401), + [anon_sym_union] = ACTIONS(5401), + [anon_sym_if] = ACTIONS(5401), + [anon_sym_switch] = ACTIONS(5401), + [anon_sym_case] = ACTIONS(5401), + [anon_sym_default] = ACTIONS(5401), + [anon_sym_while] = ACTIONS(5401), + [anon_sym_do] = ACTIONS(5401), + [anon_sym_for] = ACTIONS(5401), + [anon_sym_return] = ACTIONS(5401), + [anon_sym_break] = ACTIONS(5401), + [anon_sym_continue] = ACTIONS(5401), + [anon_sym_goto] = ACTIONS(5401), + [anon_sym_AMP] = ACTIONS(5399), + [anon_sym_BANG] = ACTIONS(5399), + [anon_sym_TILDE] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5401), + [anon_sym_DASH_DASH] = ACTIONS(5399), + [anon_sym_PLUS_PLUS] = ACTIONS(5399), + [anon_sym_sizeof] = ACTIONS(5401), + [sym_number_literal] = ACTIONS(5399), + [sym_char_literal] = ACTIONS(5399), + [sym_string_literal] = ACTIONS(5399), + [sym_true] = ACTIONS(5401), + [sym_false] = ACTIONS(5401), + [sym_null] = ACTIONS(5401), + [sym_identifier] = ACTIONS(5401), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5401), + [sym_auto] = ACTIONS(5401), + [anon_sym_typename] = ACTIONS(5401), + [anon_sym_new] = ACTIONS(5401), + [anon_sym_COLON_COLON] = ACTIONS(5399), + [anon_sym_delete] = ACTIONS(5401), + [sym_nullptr] = ACTIONS(5401), }, - [2505] = { - [sym_raw_string_literal] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5387), - [sym_preproc_directive] = ACTIONS(5387), - [anon_sym_SEMI] = ACTIONS(5385), - [anon_sym_typedef] = ACTIONS(5387), - [anon_sym_extern] = ACTIONS(5387), - [anon_sym_LBRACE] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_static] = ACTIONS(5387), - [anon_sym_register] = ACTIONS(5387), - [anon_sym_inline] = ACTIONS(5387), - [anon_sym_const] = ACTIONS(5387), - [anon_sym_restrict] = ACTIONS(5387), - [anon_sym_volatile] = ACTIONS(5387), - [anon_sym__Atomic] = ACTIONS(5387), - [anon_sym_mutable] = ACTIONS(5387), - [anon_sym_explicit] = ACTIONS(5387), - [anon_sym_constexpr] = ACTIONS(5387), - [anon_sym_unsigned] = ACTIONS(5387), - [anon_sym_long] = ACTIONS(5387), - [anon_sym_short] = ACTIONS(5387), - [sym_primitive_type] = ACTIONS(5387), - [anon_sym_enum] = ACTIONS(5387), - [anon_sym_struct] = ACTIONS(5387), - [anon_sym_union] = ACTIONS(5387), - [anon_sym_if] = ACTIONS(5387), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_case] = ACTIONS(5387), - [anon_sym_default] = ACTIONS(5387), - [anon_sym_while] = ACTIONS(5387), - [anon_sym_do] = ACTIONS(5387), - [anon_sym_for] = ACTIONS(5387), - [anon_sym_return] = ACTIONS(5387), - [anon_sym_break] = ACTIONS(5387), - [anon_sym_continue] = ACTIONS(5387), - [anon_sym_goto] = ACTIONS(5387), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_TILDE] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5385), - [anon_sym_sizeof] = ACTIONS(5387), - [sym_number_literal] = ACTIONS(5385), - [sym_char_literal] = ACTIONS(5385), - [sym_string_literal] = ACTIONS(5385), - [sym_true] = ACTIONS(5387), - [sym_false] = ACTIONS(5387), - [sym_null] = ACTIONS(5387), - [sym_identifier] = ACTIONS(5387), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5387), - [sym_auto] = ACTIONS(5387), - [anon_sym_typename] = ACTIONS(5387), - [anon_sym_new] = ACTIONS(5387), - [anon_sym_COLON_COLON] = ACTIONS(5385), - [anon_sym_delete] = ACTIONS(5387), - [sym_nullptr] = ACTIONS(5387), + [2515] = { + [sym_raw_string_literal] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5405), + [anon_sym_LPAREN] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym_LBRACE] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [anon_sym_if] = ACTIONS(5405), + [anon_sym_switch] = ACTIONS(5405), + [anon_sym_case] = ACTIONS(5405), + [anon_sym_default] = ACTIONS(5405), + [anon_sym_while] = ACTIONS(5405), + [anon_sym_do] = ACTIONS(5405), + [anon_sym_for] = ACTIONS(5405), + [anon_sym_return] = ACTIONS(5405), + [anon_sym_break] = ACTIONS(5405), + [anon_sym_continue] = ACTIONS(5405), + [anon_sym_goto] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_TILDE] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_sizeof] = ACTIONS(5405), + [sym_number_literal] = ACTIONS(5403), + [sym_char_literal] = ACTIONS(5403), + [sym_string_literal] = ACTIONS(5403), + [sym_true] = ACTIONS(5405), + [sym_false] = ACTIONS(5405), + [sym_null] = ACTIONS(5405), + [sym_identifier] = ACTIONS(5405), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5405), + [sym_auto] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_new] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5403), + [anon_sym_delete] = ACTIONS(5405), + [sym_nullptr] = ACTIONS(5405), }, - [2506] = { - [sym_raw_string_literal] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5397), - [anon_sym_LPAREN] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5397), - [sym_preproc_directive] = ACTIONS(5397), - [anon_sym_SEMI] = ACTIONS(5395), - [anon_sym_typedef] = ACTIONS(5397), - [anon_sym_extern] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_LBRACK] = ACTIONS(5395), - [anon_sym_static] = ACTIONS(5397), - [anon_sym_register] = ACTIONS(5397), - [anon_sym_inline] = ACTIONS(5397), - [anon_sym_const] = ACTIONS(5397), - [anon_sym_restrict] = ACTIONS(5397), - [anon_sym_volatile] = ACTIONS(5397), - [anon_sym__Atomic] = ACTIONS(5397), - [anon_sym_mutable] = ACTIONS(5397), - [anon_sym_explicit] = ACTIONS(5397), - [anon_sym_constexpr] = ACTIONS(5397), - [anon_sym_unsigned] = ACTIONS(5397), - [anon_sym_long] = ACTIONS(5397), - [anon_sym_short] = ACTIONS(5397), - [sym_primitive_type] = ACTIONS(5397), - [anon_sym_enum] = ACTIONS(5397), - [anon_sym_struct] = ACTIONS(5397), - [anon_sym_union] = ACTIONS(5397), - [anon_sym_if] = ACTIONS(5397), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_case] = ACTIONS(5397), - [anon_sym_default] = ACTIONS(5397), - [anon_sym_while] = ACTIONS(5397), - [anon_sym_do] = ACTIONS(5397), - [anon_sym_for] = ACTIONS(5397), - [anon_sym_return] = ACTIONS(5397), - [anon_sym_break] = ACTIONS(5397), - [anon_sym_continue] = ACTIONS(5397), - [anon_sym_goto] = ACTIONS(5397), - [anon_sym_AMP] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_TILDE] = ACTIONS(5395), - [anon_sym_PLUS] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5395), - [anon_sym_PLUS_PLUS] = ACTIONS(5395), - [anon_sym_sizeof] = ACTIONS(5397), - [sym_number_literal] = ACTIONS(5395), - [sym_char_literal] = ACTIONS(5395), - [sym_string_literal] = ACTIONS(5395), - [sym_true] = ACTIONS(5397), - [sym_false] = ACTIONS(5397), - [sym_null] = ACTIONS(5397), - [sym_identifier] = ACTIONS(5397), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5397), - [sym_auto] = ACTIONS(5397), - [anon_sym_typename] = ACTIONS(5397), - [anon_sym_new] = ACTIONS(5397), - [anon_sym_COLON_COLON] = ACTIONS(5395), - [anon_sym_delete] = ACTIONS(5397), - [sym_nullptr] = ACTIONS(5397), + [2516] = { + [sym_raw_string_literal] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5415), + [anon_sym_LPAREN] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_SEMI] = ACTIONS(5413), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5413), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym_mutable] = ACTIONS(5415), + [anon_sym_explicit] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [anon_sym_if] = ACTIONS(5415), + [anon_sym_switch] = ACTIONS(5415), + [anon_sym_case] = ACTIONS(5415), + [anon_sym_default] = ACTIONS(5415), + [anon_sym_while] = ACTIONS(5415), + [anon_sym_do] = ACTIONS(5415), + [anon_sym_for] = ACTIONS(5415), + [anon_sym_return] = ACTIONS(5415), + [anon_sym_break] = ACTIONS(5415), + [anon_sym_continue] = ACTIONS(5415), + [anon_sym_goto] = ACTIONS(5415), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_TILDE] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5415), + [anon_sym_DASH_DASH] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5413), + [anon_sym_sizeof] = ACTIONS(5415), + [sym_number_literal] = ACTIONS(5413), + [sym_char_literal] = ACTIONS(5413), + [sym_string_literal] = ACTIONS(5413), + [sym_true] = ACTIONS(5415), + [sym_false] = ACTIONS(5415), + [sym_null] = ACTIONS(5415), + [sym_identifier] = ACTIONS(5415), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5415), + [sym_auto] = ACTIONS(5415), + [anon_sym_typename] = ACTIONS(5415), + [anon_sym_new] = ACTIONS(5415), + [anon_sym_COLON_COLON] = ACTIONS(5413), + [anon_sym_delete] = ACTIONS(5415), + [sym_nullptr] = ACTIONS(5415), }, - [2507] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6391), + [2517] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6425), [sym_comment] = ACTIONS(49), }, - [2508] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6393), + [2518] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6427), [sym_comment] = ACTIONS(49), }, - [2509] = { - [sym_raw_string_literal] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5476), - [sym_preproc_directive] = ACTIONS(5476), - [anon_sym_SEMI] = ACTIONS(5474), - [anon_sym_typedef] = ACTIONS(5476), - [anon_sym_extern] = ACTIONS(5476), - [anon_sym_LBRACE] = ACTIONS(5474), - [anon_sym_STAR] = ACTIONS(5474), - [anon_sym_LBRACK] = ACTIONS(5474), - [anon_sym_static] = ACTIONS(5476), - [anon_sym_register] = ACTIONS(5476), - [anon_sym_inline] = ACTIONS(5476), - [anon_sym_const] = ACTIONS(5476), - [anon_sym_restrict] = ACTIONS(5476), - [anon_sym_volatile] = ACTIONS(5476), - [anon_sym__Atomic] = ACTIONS(5476), - [anon_sym_mutable] = ACTIONS(5476), - [anon_sym_explicit] = ACTIONS(5476), - [anon_sym_constexpr] = ACTIONS(5476), - [anon_sym_unsigned] = ACTIONS(5476), - [anon_sym_long] = ACTIONS(5476), - [anon_sym_short] = ACTIONS(5476), - [sym_primitive_type] = ACTIONS(5476), - [anon_sym_enum] = ACTIONS(5476), - [anon_sym_struct] = ACTIONS(5476), - [anon_sym_union] = ACTIONS(5476), - [anon_sym_if] = ACTIONS(5476), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_case] = ACTIONS(5476), - [anon_sym_default] = ACTIONS(5476), - [anon_sym_while] = ACTIONS(5476), - [anon_sym_do] = ACTIONS(5476), - [anon_sym_for] = ACTIONS(5476), - [anon_sym_return] = ACTIONS(5476), - [anon_sym_break] = ACTIONS(5476), - [anon_sym_continue] = ACTIONS(5476), - [anon_sym_goto] = ACTIONS(5476), - [anon_sym_AMP] = ACTIONS(5474), - [anon_sym_BANG] = ACTIONS(5474), - [anon_sym_TILDE] = ACTIONS(5474), - [anon_sym_PLUS] = ACTIONS(5476), - [anon_sym_DASH] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5474), - [anon_sym_PLUS_PLUS] = ACTIONS(5474), - [anon_sym_sizeof] = ACTIONS(5476), - [sym_number_literal] = ACTIONS(5474), - [sym_char_literal] = ACTIONS(5474), - [sym_string_literal] = ACTIONS(5474), - [sym_true] = ACTIONS(5476), - [sym_false] = ACTIONS(5476), - [sym_null] = ACTIONS(5476), - [sym_identifier] = ACTIONS(5476), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5476), - [sym_auto] = ACTIONS(5476), - [anon_sym_typename] = ACTIONS(5476), - [anon_sym_new] = ACTIONS(5476), - [anon_sym_COLON_COLON] = ACTIONS(5474), - [anon_sym_delete] = ACTIONS(5476), - [sym_nullptr] = ACTIONS(5476), + [2519] = { + [sym_raw_string_literal] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5494), + [anon_sym_LPAREN] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5494), + [sym_preproc_directive] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5492), + [anon_sym_typedef] = ACTIONS(5494), + [anon_sym_extern] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5492), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5492), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_register] = ACTIONS(5494), + [anon_sym_inline] = ACTIONS(5494), + [anon_sym_const] = ACTIONS(5494), + [anon_sym_restrict] = ACTIONS(5494), + [anon_sym_volatile] = ACTIONS(5494), + [anon_sym__Atomic] = ACTIONS(5494), + [anon_sym_mutable] = ACTIONS(5494), + [anon_sym_explicit] = ACTIONS(5494), + [anon_sym_constexpr] = ACTIONS(5494), + [anon_sym_unsigned] = ACTIONS(5494), + [anon_sym_long] = ACTIONS(5494), + [anon_sym_short] = ACTIONS(5494), + [sym_primitive_type] = ACTIONS(5494), + [anon_sym_enum] = ACTIONS(5494), + [anon_sym_struct] = ACTIONS(5494), + [anon_sym_union] = ACTIONS(5494), + [anon_sym_if] = ACTIONS(5494), + [anon_sym_switch] = ACTIONS(5494), + [anon_sym_case] = ACTIONS(5494), + [anon_sym_default] = ACTIONS(5494), + [anon_sym_while] = ACTIONS(5494), + [anon_sym_do] = ACTIONS(5494), + [anon_sym_for] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5494), + [anon_sym_break] = ACTIONS(5494), + [anon_sym_continue] = ACTIONS(5494), + [anon_sym_goto] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DASH_DASH] = ACTIONS(5492), + [anon_sym_PLUS_PLUS] = ACTIONS(5492), + [anon_sym_sizeof] = ACTIONS(5494), + [sym_number_literal] = ACTIONS(5492), + [sym_char_literal] = ACTIONS(5492), + [sym_string_literal] = ACTIONS(5492), + [sym_true] = ACTIONS(5494), + [sym_false] = ACTIONS(5494), + [sym_null] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5494), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5494), + [sym_auto] = ACTIONS(5494), + [anon_sym_typename] = ACTIONS(5494), + [anon_sym_new] = ACTIONS(5494), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_delete] = ACTIONS(5494), + [sym_nullptr] = ACTIONS(5494), }, - [2510] = { - [sym_raw_string_literal] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5480), - [anon_sym_LPAREN] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5480), - [sym_preproc_directive] = ACTIONS(5480), - [anon_sym_SEMI] = ACTIONS(5478), - [anon_sym_typedef] = ACTIONS(5480), - [anon_sym_extern] = ACTIONS(5480), - [anon_sym_LBRACE] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(5478), - [anon_sym_static] = ACTIONS(5480), - [anon_sym_register] = ACTIONS(5480), - [anon_sym_inline] = ACTIONS(5480), - [anon_sym_const] = ACTIONS(5480), - [anon_sym_restrict] = ACTIONS(5480), - [anon_sym_volatile] = ACTIONS(5480), - [anon_sym__Atomic] = ACTIONS(5480), - [anon_sym_mutable] = ACTIONS(5480), - [anon_sym_explicit] = ACTIONS(5480), - [anon_sym_constexpr] = ACTIONS(5480), - [anon_sym_unsigned] = ACTIONS(5480), - [anon_sym_long] = ACTIONS(5480), - [anon_sym_short] = ACTIONS(5480), - [sym_primitive_type] = ACTIONS(5480), - [anon_sym_enum] = ACTIONS(5480), - [anon_sym_struct] = ACTIONS(5480), - [anon_sym_union] = ACTIONS(5480), - [anon_sym_if] = ACTIONS(5480), - [anon_sym_switch] = ACTIONS(5480), - [anon_sym_case] = ACTIONS(5480), - [anon_sym_default] = ACTIONS(5480), - [anon_sym_while] = ACTIONS(5480), - [anon_sym_do] = ACTIONS(5480), - [anon_sym_for] = ACTIONS(5480), - [anon_sym_return] = ACTIONS(5480), - [anon_sym_break] = ACTIONS(5480), - [anon_sym_continue] = ACTIONS(5480), - [anon_sym_goto] = ACTIONS(5480), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_TILDE] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5478), - [anon_sym_sizeof] = ACTIONS(5480), - [sym_number_literal] = ACTIONS(5478), - [sym_char_literal] = ACTIONS(5478), - [sym_string_literal] = ACTIONS(5478), - [sym_true] = ACTIONS(5480), - [sym_false] = ACTIONS(5480), - [sym_null] = ACTIONS(5480), - [sym_identifier] = ACTIONS(5480), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5480), - [sym_auto] = ACTIONS(5480), - [anon_sym_typename] = ACTIONS(5480), - [anon_sym_new] = ACTIONS(5480), - [anon_sym_COLON_COLON] = ACTIONS(5478), - [anon_sym_delete] = ACTIONS(5480), - [sym_nullptr] = ACTIONS(5480), + [2520] = { + [sym_raw_string_literal] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5498), + [anon_sym_LPAREN] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5498), + [sym_preproc_directive] = ACTIONS(5498), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym_typedef] = ACTIONS(5498), + [anon_sym_extern] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_static] = ACTIONS(5498), + [anon_sym_register] = ACTIONS(5498), + [anon_sym_inline] = ACTIONS(5498), + [anon_sym_const] = ACTIONS(5498), + [anon_sym_restrict] = ACTIONS(5498), + [anon_sym_volatile] = ACTIONS(5498), + [anon_sym__Atomic] = ACTIONS(5498), + [anon_sym_mutable] = ACTIONS(5498), + [anon_sym_explicit] = ACTIONS(5498), + [anon_sym_constexpr] = ACTIONS(5498), + [anon_sym_unsigned] = ACTIONS(5498), + [anon_sym_long] = ACTIONS(5498), + [anon_sym_short] = ACTIONS(5498), + [sym_primitive_type] = ACTIONS(5498), + [anon_sym_enum] = ACTIONS(5498), + [anon_sym_struct] = ACTIONS(5498), + [anon_sym_union] = ACTIONS(5498), + [anon_sym_if] = ACTIONS(5498), + [anon_sym_switch] = ACTIONS(5498), + [anon_sym_case] = ACTIONS(5498), + [anon_sym_default] = ACTIONS(5498), + [anon_sym_while] = ACTIONS(5498), + [anon_sym_do] = ACTIONS(5498), + [anon_sym_for] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5498), + [anon_sym_break] = ACTIONS(5498), + [anon_sym_continue] = ACTIONS(5498), + [anon_sym_goto] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_sizeof] = ACTIONS(5498), + [sym_number_literal] = ACTIONS(5496), + [sym_char_literal] = ACTIONS(5496), + [sym_string_literal] = ACTIONS(5496), + [sym_true] = ACTIONS(5498), + [sym_false] = ACTIONS(5498), + [sym_null] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5498), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5498), + [sym_auto] = ACTIONS(5498), + [anon_sym_typename] = ACTIONS(5498), + [anon_sym_new] = ACTIONS(5498), + [anon_sym_COLON_COLON] = ACTIONS(5496), + [anon_sym_delete] = ACTIONS(5498), + [sym_nullptr] = ACTIONS(5498), }, - [2511] = { - [sym_raw_string_literal] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5484), - [sym_preproc_directive] = ACTIONS(5484), - [anon_sym_SEMI] = ACTIONS(5482), - [anon_sym_typedef] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5482), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_register] = ACTIONS(5484), - [anon_sym_inline] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_restrict] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym__Atomic] = ACTIONS(5484), - [anon_sym_mutable] = ACTIONS(5484), - [anon_sym_explicit] = ACTIONS(5484), - [anon_sym_constexpr] = ACTIONS(5484), - [anon_sym_unsigned] = ACTIONS(5484), - [anon_sym_long] = ACTIONS(5484), - [anon_sym_short] = ACTIONS(5484), - [sym_primitive_type] = ACTIONS(5484), - [anon_sym_enum] = ACTIONS(5484), - [anon_sym_struct] = ACTIONS(5484), - [anon_sym_union] = ACTIONS(5484), - [anon_sym_if] = ACTIONS(5484), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_case] = ACTIONS(5484), - [anon_sym_default] = ACTIONS(5484), - [anon_sym_while] = ACTIONS(5484), - [anon_sym_do] = ACTIONS(5484), - [anon_sym_for] = ACTIONS(5484), - [anon_sym_return] = ACTIONS(5484), - [anon_sym_break] = ACTIONS(5484), - [anon_sym_continue] = ACTIONS(5484), - [anon_sym_goto] = ACTIONS(5484), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_BANG] = ACTIONS(5482), - [anon_sym_TILDE] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5482), - [anon_sym_sizeof] = ACTIONS(5484), - [sym_number_literal] = ACTIONS(5482), - [sym_char_literal] = ACTIONS(5482), - [sym_string_literal] = ACTIONS(5482), - [sym_true] = ACTIONS(5484), - [sym_false] = ACTIONS(5484), - [sym_null] = ACTIONS(5484), - [sym_identifier] = ACTIONS(5484), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5484), - [sym_auto] = ACTIONS(5484), - [anon_sym_typename] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_COLON_COLON] = ACTIONS(5482), - [anon_sym_delete] = ACTIONS(5484), - [sym_nullptr] = ACTIONS(5484), + [2521] = { + [sym_raw_string_literal] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5502), + [sym_preproc_directive] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_typedef] = ACTIONS(5502), + [anon_sym_extern] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_static] = ACTIONS(5502), + [anon_sym_register] = ACTIONS(5502), + [anon_sym_inline] = ACTIONS(5502), + [anon_sym_const] = ACTIONS(5502), + [anon_sym_restrict] = ACTIONS(5502), + [anon_sym_volatile] = ACTIONS(5502), + [anon_sym__Atomic] = ACTIONS(5502), + [anon_sym_mutable] = ACTIONS(5502), + [anon_sym_explicit] = ACTIONS(5502), + [anon_sym_constexpr] = ACTIONS(5502), + [anon_sym_unsigned] = ACTIONS(5502), + [anon_sym_long] = ACTIONS(5502), + [anon_sym_short] = ACTIONS(5502), + [sym_primitive_type] = ACTIONS(5502), + [anon_sym_enum] = ACTIONS(5502), + [anon_sym_struct] = ACTIONS(5502), + [anon_sym_union] = ACTIONS(5502), + [anon_sym_if] = ACTIONS(5502), + [anon_sym_switch] = ACTIONS(5502), + [anon_sym_case] = ACTIONS(5502), + [anon_sym_default] = ACTIONS(5502), + [anon_sym_while] = ACTIONS(5502), + [anon_sym_do] = ACTIONS(5502), + [anon_sym_for] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5502), + [anon_sym_break] = ACTIONS(5502), + [anon_sym_continue] = ACTIONS(5502), + [anon_sym_goto] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_sizeof] = ACTIONS(5502), + [sym_number_literal] = ACTIONS(5500), + [sym_char_literal] = ACTIONS(5500), + [sym_string_literal] = ACTIONS(5500), + [sym_true] = ACTIONS(5502), + [sym_false] = ACTIONS(5502), + [sym_null] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5502), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5502), + [sym_auto] = ACTIONS(5502), + [anon_sym_typename] = ACTIONS(5502), + [anon_sym_new] = ACTIONS(5502), + [anon_sym_COLON_COLON] = ACTIONS(5500), + [anon_sym_delete] = ACTIONS(5502), + [sym_nullptr] = ACTIONS(5502), }, - [2512] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6395), + [2522] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6429), [sym_comment] = ACTIONS(49), }, - [2513] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6397), + [2523] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6431), [sym_comment] = ACTIONS(49), }, - [2514] = { - [sym_raw_string_literal] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5492), - [sym_preproc_directive] = ACTIONS(5492), - [anon_sym_SEMI] = ACTIONS(5490), - [anon_sym_typedef] = ACTIONS(5492), - [anon_sym_extern] = ACTIONS(5492), - [anon_sym_LBRACE] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5492), - [anon_sym_register] = ACTIONS(5492), - [anon_sym_inline] = ACTIONS(5492), - [anon_sym_const] = ACTIONS(5492), - [anon_sym_restrict] = ACTIONS(5492), - [anon_sym_volatile] = ACTIONS(5492), - [anon_sym__Atomic] = ACTIONS(5492), - [anon_sym_mutable] = ACTIONS(5492), - [anon_sym_explicit] = ACTIONS(5492), - [anon_sym_constexpr] = ACTIONS(5492), - [anon_sym_unsigned] = ACTIONS(5492), - [anon_sym_long] = ACTIONS(5492), - [anon_sym_short] = ACTIONS(5492), - [sym_primitive_type] = ACTIONS(5492), - [anon_sym_enum] = ACTIONS(5492), - [anon_sym_struct] = ACTIONS(5492), - [anon_sym_union] = ACTIONS(5492), - [anon_sym_if] = ACTIONS(5492), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_case] = ACTIONS(5492), - [anon_sym_default] = ACTIONS(5492), - [anon_sym_while] = ACTIONS(5492), - [anon_sym_do] = ACTIONS(5492), - [anon_sym_for] = ACTIONS(5492), - [anon_sym_return] = ACTIONS(5492), - [anon_sym_break] = ACTIONS(5492), - [anon_sym_continue] = ACTIONS(5492), - [anon_sym_goto] = ACTIONS(5492), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_TILDE] = ACTIONS(5490), - [anon_sym_PLUS] = ACTIONS(5492), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5490), - [anon_sym_sizeof] = ACTIONS(5492), - [sym_number_literal] = ACTIONS(5490), - [sym_char_literal] = ACTIONS(5490), - [sym_string_literal] = ACTIONS(5490), - [sym_true] = ACTIONS(5492), - [sym_false] = ACTIONS(5492), - [sym_null] = ACTIONS(5492), - [sym_identifier] = ACTIONS(5492), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5492), - [sym_auto] = ACTIONS(5492), - [anon_sym_typename] = ACTIONS(5492), - [anon_sym_new] = ACTIONS(5492), - [anon_sym_COLON_COLON] = ACTIONS(5490), - [anon_sym_delete] = ACTIONS(5492), - [sym_nullptr] = ACTIONS(5492), + [2524] = { + [sym_raw_string_literal] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5510), + [anon_sym_LPAREN] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5510), + [sym_preproc_directive] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_typedef] = ACTIONS(5510), + [anon_sym_extern] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5510), + [anon_sym_register] = ACTIONS(5510), + [anon_sym_inline] = ACTIONS(5510), + [anon_sym_const] = ACTIONS(5510), + [anon_sym_restrict] = ACTIONS(5510), + [anon_sym_volatile] = ACTIONS(5510), + [anon_sym__Atomic] = ACTIONS(5510), + [anon_sym_mutable] = ACTIONS(5510), + [anon_sym_explicit] = ACTIONS(5510), + [anon_sym_constexpr] = ACTIONS(5510), + [anon_sym_unsigned] = ACTIONS(5510), + [anon_sym_long] = ACTIONS(5510), + [anon_sym_short] = ACTIONS(5510), + [sym_primitive_type] = ACTIONS(5510), + [anon_sym_enum] = ACTIONS(5510), + [anon_sym_struct] = ACTIONS(5510), + [anon_sym_union] = ACTIONS(5510), + [anon_sym_if] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5510), + [anon_sym_case] = ACTIONS(5510), + [anon_sym_default] = ACTIONS(5510), + [anon_sym_while] = ACTIONS(5510), + [anon_sym_do] = ACTIONS(5510), + [anon_sym_for] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5510), + [anon_sym_break] = ACTIONS(5510), + [anon_sym_continue] = ACTIONS(5510), + [anon_sym_goto] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_sizeof] = ACTIONS(5510), + [sym_number_literal] = ACTIONS(5508), + [sym_char_literal] = ACTIONS(5508), + [sym_string_literal] = ACTIONS(5508), + [sym_true] = ACTIONS(5510), + [sym_false] = ACTIONS(5510), + [sym_null] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5510), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5510), + [sym_auto] = ACTIONS(5510), + [anon_sym_typename] = ACTIONS(5510), + [anon_sym_new] = ACTIONS(5510), + [anon_sym_COLON_COLON] = ACTIONS(5508), + [anon_sym_delete] = ACTIONS(5510), + [sym_nullptr] = ACTIONS(5510), }, - [2515] = { - [sym_raw_string_literal] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5496), - [sym_preproc_directive] = ACTIONS(5496), - [anon_sym_SEMI] = ACTIONS(5494), - [anon_sym_typedef] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_explicit] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_unsigned] = ACTIONS(5496), - [anon_sym_long] = ACTIONS(5496), - [anon_sym_short] = ACTIONS(5496), - [sym_primitive_type] = ACTIONS(5496), - [anon_sym_enum] = ACTIONS(5496), - [anon_sym_struct] = ACTIONS(5496), - [anon_sym_union] = ACTIONS(5496), - [anon_sym_if] = ACTIONS(5496), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_case] = ACTIONS(5496), - [anon_sym_default] = ACTIONS(5496), - [anon_sym_while] = ACTIONS(5496), - [anon_sym_do] = ACTIONS(5496), - [anon_sym_for] = ACTIONS(5496), - [anon_sym_return] = ACTIONS(5496), - [anon_sym_break] = ACTIONS(5496), - [anon_sym_continue] = ACTIONS(5496), - [anon_sym_goto] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5494), - [anon_sym_sizeof] = ACTIONS(5496), - [sym_number_literal] = ACTIONS(5494), - [sym_char_literal] = ACTIONS(5494), - [sym_string_literal] = ACTIONS(5494), - [sym_true] = ACTIONS(5496), - [sym_false] = ACTIONS(5496), - [sym_null] = ACTIONS(5496), - [sym_identifier] = ACTIONS(5496), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5496), - [sym_auto] = ACTIONS(5496), - [anon_sym_typename] = ACTIONS(5496), - [anon_sym_new] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5494), - [anon_sym_delete] = ACTIONS(5496), - [sym_nullptr] = ACTIONS(5496), + [2525] = { + [sym_raw_string_literal] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5514), + [anon_sym_LPAREN] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5512), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5512), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym_mutable] = ACTIONS(5514), + [anon_sym_explicit] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [anon_sym_if] = ACTIONS(5514), + [anon_sym_switch] = ACTIONS(5514), + [anon_sym_case] = ACTIONS(5514), + [anon_sym_default] = ACTIONS(5514), + [anon_sym_while] = ACTIONS(5514), + [anon_sym_do] = ACTIONS(5514), + [anon_sym_for] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5514), + [anon_sym_break] = ACTIONS(5514), + [anon_sym_continue] = ACTIONS(5514), + [anon_sym_goto] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_sizeof] = ACTIONS(5514), + [sym_number_literal] = ACTIONS(5512), + [sym_char_literal] = ACTIONS(5512), + [sym_string_literal] = ACTIONS(5512), + [sym_true] = ACTIONS(5514), + [sym_false] = ACTIONS(5514), + [sym_null] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5514), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5514), + [sym_auto] = ACTIONS(5514), + [anon_sym_typename] = ACTIONS(5514), + [anon_sym_new] = ACTIONS(5514), + [anon_sym_COLON_COLON] = ACTIONS(5512), + [anon_sym_delete] = ACTIONS(5514), + [sym_nullptr] = ACTIONS(5514), }, - [2516] = { - [sym_raw_string_literal] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5500), - [anon_sym_LPAREN] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5500), - [sym_preproc_directive] = ACTIONS(5500), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_typedef] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_explicit] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_unsigned] = ACTIONS(5500), - [anon_sym_long] = ACTIONS(5500), - [anon_sym_short] = ACTIONS(5500), - [sym_primitive_type] = ACTIONS(5500), - [anon_sym_enum] = ACTIONS(5500), - [anon_sym_struct] = ACTIONS(5500), - [anon_sym_union] = ACTIONS(5500), - [anon_sym_if] = ACTIONS(5500), - [anon_sym_switch] = ACTIONS(5500), - [anon_sym_case] = ACTIONS(5500), - [anon_sym_default] = ACTIONS(5500), - [anon_sym_while] = ACTIONS(5500), - [anon_sym_do] = ACTIONS(5500), - [anon_sym_for] = ACTIONS(5500), - [anon_sym_return] = ACTIONS(5500), - [anon_sym_break] = ACTIONS(5500), - [anon_sym_continue] = ACTIONS(5500), - [anon_sym_goto] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_sizeof] = ACTIONS(5500), - [sym_number_literal] = ACTIONS(5498), - [sym_char_literal] = ACTIONS(5498), - [sym_string_literal] = ACTIONS(5498), - [sym_true] = ACTIONS(5500), - [sym_false] = ACTIONS(5500), - [sym_null] = ACTIONS(5500), - [sym_identifier] = ACTIONS(5500), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5500), - [sym_auto] = ACTIONS(5500), - [anon_sym_typename] = ACTIONS(5500), - [anon_sym_new] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_delete] = ACTIONS(5500), - [sym_nullptr] = ACTIONS(5500), + [2526] = { + [sym_raw_string_literal] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5518), + [anon_sym_LPAREN] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5518), + [sym_preproc_directive] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_typedef] = ACTIONS(5518), + [anon_sym_extern] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_static] = ACTIONS(5518), + [anon_sym_register] = ACTIONS(5518), + [anon_sym_inline] = ACTIONS(5518), + [anon_sym_const] = ACTIONS(5518), + [anon_sym_restrict] = ACTIONS(5518), + [anon_sym_volatile] = ACTIONS(5518), + [anon_sym__Atomic] = ACTIONS(5518), + [anon_sym_mutable] = ACTIONS(5518), + [anon_sym_explicit] = ACTIONS(5518), + [anon_sym_constexpr] = ACTIONS(5518), + [anon_sym_unsigned] = ACTIONS(5518), + [anon_sym_long] = ACTIONS(5518), + [anon_sym_short] = ACTIONS(5518), + [sym_primitive_type] = ACTIONS(5518), + [anon_sym_enum] = ACTIONS(5518), + [anon_sym_struct] = ACTIONS(5518), + [anon_sym_union] = ACTIONS(5518), + [anon_sym_if] = ACTIONS(5518), + [anon_sym_switch] = ACTIONS(5518), + [anon_sym_case] = ACTIONS(5518), + [anon_sym_default] = ACTIONS(5518), + [anon_sym_while] = ACTIONS(5518), + [anon_sym_do] = ACTIONS(5518), + [anon_sym_for] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5518), + [anon_sym_break] = ACTIONS(5518), + [anon_sym_continue] = ACTIONS(5518), + [anon_sym_goto] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_sizeof] = ACTIONS(5518), + [sym_number_literal] = ACTIONS(5516), + [sym_char_literal] = ACTIONS(5516), + [sym_string_literal] = ACTIONS(5516), + [sym_true] = ACTIONS(5518), + [sym_false] = ACTIONS(5518), + [sym_null] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5518), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5518), + [sym_auto] = ACTIONS(5518), + [anon_sym_typename] = ACTIONS(5518), + [anon_sym_new] = ACTIONS(5518), + [anon_sym_COLON_COLON] = ACTIONS(5516), + [anon_sym_delete] = ACTIONS(5518), + [sym_nullptr] = ACTIONS(5518), }, - [2517] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6399), + [2527] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6433), [sym_comment] = ACTIONS(49), }, - [2518] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6401), + [2528] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6435), [sym_comment] = ACTIONS(49), }, - [2519] = { - [sym_preproc_arg] = ACTIONS(6403), + [2529] = { + [sym_preproc_arg] = ACTIONS(6437), [sym_comment] = ACTIONS(83), }, - [2520] = { + [2530] = { [sym_raw_string_literal] = ACTIONS(825), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(827), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(827), @@ -99689,100 +100087,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(827), [sym_nullptr] = ACTIONS(827), }, - [2521] = { - [anon_sym_LF] = ACTIONS(6405), - [sym_preproc_arg] = ACTIONS(6407), + [2531] = { + [anon_sym_LF] = ACTIONS(6439), + [sym_preproc_arg] = ACTIONS(6441), [sym_comment] = ACTIONS(83), }, - [2522] = { - [sym_raw_string_literal] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4383), - [sym_preproc_directive] = ACTIONS(4383), - [anon_sym_SEMI] = ACTIONS(4381), - [anon_sym_typedef] = ACTIONS(4383), - [anon_sym_extern] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4381), - [anon_sym_STAR] = ACTIONS(4381), - [anon_sym_LBRACK] = ACTIONS(4381), - [anon_sym_static] = ACTIONS(4383), - [anon_sym_register] = ACTIONS(4383), - [anon_sym_inline] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_restrict] = ACTIONS(4383), - [anon_sym_volatile] = ACTIONS(4383), - [anon_sym__Atomic] = ACTIONS(4383), - [anon_sym_mutable] = ACTIONS(4383), - [anon_sym_explicit] = ACTIONS(4383), - [anon_sym_constexpr] = ACTIONS(4383), - [anon_sym_unsigned] = ACTIONS(4383), - [anon_sym_long] = ACTIONS(4383), - [anon_sym_short] = ACTIONS(4383), - [sym_primitive_type] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_switch] = ACTIONS(4383), - [anon_sym_case] = ACTIONS(4383), - [anon_sym_default] = ACTIONS(4383), - [anon_sym_while] = ACTIONS(4383), - [anon_sym_do] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4381), - [anon_sym_BANG] = ACTIONS(4381), - [anon_sym_TILDE] = ACTIONS(4381), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_DASH_DASH] = ACTIONS(4381), - [anon_sym_PLUS_PLUS] = ACTIONS(4381), - [anon_sym_sizeof] = ACTIONS(4383), - [sym_number_literal] = ACTIONS(4381), - [sym_char_literal] = ACTIONS(4381), - [sym_string_literal] = ACTIONS(4381), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_null] = ACTIONS(4383), - [sym_identifier] = ACTIONS(4383), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4383), - [sym_auto] = ACTIONS(4383), - [anon_sym_typename] = ACTIONS(4383), - [anon_sym_new] = ACTIONS(4383), - [anon_sym_COLON_COLON] = ACTIONS(4381), - [anon_sym_delete] = ACTIONS(4383), - [sym_nullptr] = ACTIONS(4383), + [2532] = { + [sym_raw_string_literal] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4389), + [anon_sym_LPAREN] = ACTIONS(4387), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4389), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4389), + [sym_preproc_directive] = ACTIONS(4389), + [anon_sym_SEMI] = ACTIONS(4387), + [anon_sym_typedef] = ACTIONS(4389), + [anon_sym_extern] = ACTIONS(4389), + [anon_sym_LBRACE] = ACTIONS(4387), + [anon_sym_STAR] = ACTIONS(4387), + [anon_sym_LBRACK] = ACTIONS(4387), + [anon_sym_static] = ACTIONS(4389), + [anon_sym_register] = ACTIONS(4389), + [anon_sym_inline] = ACTIONS(4389), + [anon_sym_const] = ACTIONS(4389), + [anon_sym_restrict] = ACTIONS(4389), + [anon_sym_volatile] = ACTIONS(4389), + [anon_sym__Atomic] = ACTIONS(4389), + [anon_sym_mutable] = ACTIONS(4389), + [anon_sym_explicit] = ACTIONS(4389), + [anon_sym_constexpr] = ACTIONS(4389), + [anon_sym_unsigned] = ACTIONS(4389), + [anon_sym_long] = ACTIONS(4389), + [anon_sym_short] = ACTIONS(4389), + [sym_primitive_type] = ACTIONS(4389), + [anon_sym_enum] = ACTIONS(4389), + [anon_sym_struct] = ACTIONS(4389), + [anon_sym_union] = ACTIONS(4389), + [anon_sym_if] = ACTIONS(4389), + [anon_sym_switch] = ACTIONS(4389), + [anon_sym_case] = ACTIONS(4389), + [anon_sym_default] = ACTIONS(4389), + [anon_sym_while] = ACTIONS(4389), + [anon_sym_do] = ACTIONS(4389), + [anon_sym_for] = ACTIONS(4389), + [anon_sym_return] = ACTIONS(4389), + [anon_sym_break] = ACTIONS(4389), + [anon_sym_continue] = ACTIONS(4389), + [anon_sym_goto] = ACTIONS(4389), + [anon_sym_AMP] = ACTIONS(4387), + [anon_sym_BANG] = ACTIONS(4387), + [anon_sym_TILDE] = ACTIONS(4387), + [anon_sym_PLUS] = ACTIONS(4389), + [anon_sym_DASH] = ACTIONS(4389), + [anon_sym_DASH_DASH] = ACTIONS(4387), + [anon_sym_PLUS_PLUS] = ACTIONS(4387), + [anon_sym_sizeof] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4387), + [sym_char_literal] = ACTIONS(4387), + [sym_string_literal] = ACTIONS(4387), + [sym_true] = ACTIONS(4389), + [sym_false] = ACTIONS(4389), + [sym_null] = ACTIONS(4389), + [sym_identifier] = ACTIONS(4389), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4389), + [sym_auto] = ACTIONS(4389), + [anon_sym_typename] = ACTIONS(4389), + [anon_sym_new] = ACTIONS(4389), + [anon_sym_COLON_COLON] = ACTIONS(4387), + [anon_sym_delete] = ACTIONS(4389), + [sym_nullptr] = ACTIONS(4389), }, - [2523] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6409), + [2533] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6443), [sym_comment] = ACTIONS(49), }, - [2524] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6411), + [2534] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6445), [sym_comment] = ACTIONS(49), }, - [2525] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2676), - [sym_preproc_elif_in_compound_statement] = STATE(2677), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2535] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2691), + [sym_preproc_elif_in_compound_statement] = STATE(2692), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -99790,70 +100188,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6413), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6447), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -99873,17 +100271,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -99892,13 +100290,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -99906,97 +100304,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2526] = { - [sym_raw_string_literal] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4489), - [anon_sym_LPAREN] = ACTIONS(4487), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4489), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4489), - [sym_preproc_directive] = ACTIONS(4489), - [anon_sym_SEMI] = ACTIONS(4487), - [anon_sym_typedef] = ACTIONS(4489), - [anon_sym_extern] = ACTIONS(4489), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_LBRACK] = ACTIONS(4487), - [anon_sym_static] = ACTIONS(4489), - [anon_sym_register] = ACTIONS(4489), - [anon_sym_inline] = ACTIONS(4489), - [anon_sym_const] = ACTIONS(4489), - [anon_sym_restrict] = ACTIONS(4489), - [anon_sym_volatile] = ACTIONS(4489), - [anon_sym__Atomic] = ACTIONS(4489), - [anon_sym_mutable] = ACTIONS(4489), - [anon_sym_explicit] = ACTIONS(4489), - [anon_sym_constexpr] = ACTIONS(4489), - [anon_sym_unsigned] = ACTIONS(4489), - [anon_sym_long] = ACTIONS(4489), - [anon_sym_short] = ACTIONS(4489), - [sym_primitive_type] = ACTIONS(4489), - [anon_sym_enum] = ACTIONS(4489), - [anon_sym_struct] = ACTIONS(4489), - [anon_sym_union] = ACTIONS(4489), - [anon_sym_if] = ACTIONS(4489), - [anon_sym_switch] = ACTIONS(4489), - [anon_sym_case] = ACTIONS(4489), - [anon_sym_default] = ACTIONS(4489), - [anon_sym_while] = ACTIONS(4489), - [anon_sym_do] = ACTIONS(4489), - [anon_sym_for] = ACTIONS(4489), - [anon_sym_return] = ACTIONS(4489), - [anon_sym_break] = ACTIONS(4489), - [anon_sym_continue] = ACTIONS(4489), - [anon_sym_goto] = ACTIONS(4489), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_TILDE] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4489), - [anon_sym_DASH] = ACTIONS(4489), - [anon_sym_DASH_DASH] = ACTIONS(4487), - [anon_sym_PLUS_PLUS] = ACTIONS(4487), - [anon_sym_sizeof] = ACTIONS(4489), - [sym_number_literal] = ACTIONS(4487), - [sym_char_literal] = ACTIONS(4487), - [sym_string_literal] = ACTIONS(4487), - [sym_true] = ACTIONS(4489), - [sym_false] = ACTIONS(4489), - [sym_null] = ACTIONS(4489), - [sym_identifier] = ACTIONS(4489), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4489), - [sym_auto] = ACTIONS(4489), - [anon_sym_typename] = ACTIONS(4489), - [anon_sym_new] = ACTIONS(4489), - [anon_sym_COLON_COLON] = ACTIONS(4487), - [anon_sym_delete] = ACTIONS(4489), - [sym_nullptr] = ACTIONS(4489), + [2536] = { + [sym_raw_string_literal] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4497), + [anon_sym_LPAREN] = ACTIONS(4495), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4497), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4497), + [sym_preproc_directive] = ACTIONS(4497), + [anon_sym_SEMI] = ACTIONS(4495), + [anon_sym_typedef] = ACTIONS(4497), + [anon_sym_extern] = ACTIONS(4497), + [anon_sym_LBRACE] = ACTIONS(4495), + [anon_sym_STAR] = ACTIONS(4495), + [anon_sym_LBRACK] = ACTIONS(4495), + [anon_sym_static] = ACTIONS(4497), + [anon_sym_register] = ACTIONS(4497), + [anon_sym_inline] = ACTIONS(4497), + [anon_sym_const] = ACTIONS(4497), + [anon_sym_restrict] = ACTIONS(4497), + [anon_sym_volatile] = ACTIONS(4497), + [anon_sym__Atomic] = ACTIONS(4497), + [anon_sym_mutable] = ACTIONS(4497), + [anon_sym_explicit] = ACTIONS(4497), + [anon_sym_constexpr] = ACTIONS(4497), + [anon_sym_unsigned] = ACTIONS(4497), + [anon_sym_long] = ACTIONS(4497), + [anon_sym_short] = ACTIONS(4497), + [sym_primitive_type] = ACTIONS(4497), + [anon_sym_enum] = ACTIONS(4497), + [anon_sym_struct] = ACTIONS(4497), + [anon_sym_union] = ACTIONS(4497), + [anon_sym_if] = ACTIONS(4497), + [anon_sym_switch] = ACTIONS(4497), + [anon_sym_case] = ACTIONS(4497), + [anon_sym_default] = ACTIONS(4497), + [anon_sym_while] = ACTIONS(4497), + [anon_sym_do] = ACTIONS(4497), + [anon_sym_for] = ACTIONS(4497), + [anon_sym_return] = ACTIONS(4497), + [anon_sym_break] = ACTIONS(4497), + [anon_sym_continue] = ACTIONS(4497), + [anon_sym_goto] = ACTIONS(4497), + [anon_sym_AMP] = ACTIONS(4495), + [anon_sym_BANG] = ACTIONS(4495), + [anon_sym_TILDE] = ACTIONS(4495), + [anon_sym_PLUS] = ACTIONS(4497), + [anon_sym_DASH] = ACTIONS(4497), + [anon_sym_DASH_DASH] = ACTIONS(4495), + [anon_sym_PLUS_PLUS] = ACTIONS(4495), + [anon_sym_sizeof] = ACTIONS(4497), + [sym_number_literal] = ACTIONS(4495), + [sym_char_literal] = ACTIONS(4495), + [sym_string_literal] = ACTIONS(4495), + [sym_true] = ACTIONS(4497), + [sym_false] = ACTIONS(4497), + [sym_null] = ACTIONS(4497), + [sym_identifier] = ACTIONS(4497), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4497), + [sym_auto] = ACTIONS(4497), + [anon_sym_typename] = ACTIONS(4497), + [anon_sym_new] = ACTIONS(4497), + [anon_sym_COLON_COLON] = ACTIONS(4495), + [anon_sym_delete] = ACTIONS(4497), + [sym_nullptr] = ACTIONS(4497), }, - [2527] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6415), + [2537] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6449), [sym_comment] = ACTIONS(49), }, - [2528] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6417), + [2538] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6451), [sym_comment] = ACTIONS(49), }, - [2529] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2681), - [sym_preproc_elif_in_compound_statement] = STATE(2682), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2539] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2696), + [sym_preproc_elif_in_compound_statement] = STATE(2697), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -100004,70 +100402,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6419), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6453), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -100087,17 +100485,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -100106,13 +100504,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -100120,97 +100518,97 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2530] = { - [sym_raw_string_literal] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4499), - [anon_sym_LPAREN] = ACTIONS(4497), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4499), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4499), - [sym_preproc_directive] = ACTIONS(4499), - [anon_sym_SEMI] = ACTIONS(4497), - [anon_sym_typedef] = ACTIONS(4499), - [anon_sym_extern] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4497), - [anon_sym_STAR] = ACTIONS(4497), - [anon_sym_LBRACK] = ACTIONS(4497), - [anon_sym_static] = ACTIONS(4499), - [anon_sym_register] = ACTIONS(4499), - [anon_sym_inline] = ACTIONS(4499), - [anon_sym_const] = ACTIONS(4499), - [anon_sym_restrict] = ACTIONS(4499), - [anon_sym_volatile] = ACTIONS(4499), - [anon_sym__Atomic] = ACTIONS(4499), - [anon_sym_mutable] = ACTIONS(4499), - [anon_sym_explicit] = ACTIONS(4499), - [anon_sym_constexpr] = ACTIONS(4499), - [anon_sym_unsigned] = ACTIONS(4499), - [anon_sym_long] = ACTIONS(4499), - [anon_sym_short] = ACTIONS(4499), - [sym_primitive_type] = ACTIONS(4499), - [anon_sym_enum] = ACTIONS(4499), - [anon_sym_struct] = ACTIONS(4499), - [anon_sym_union] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_switch] = ACTIONS(4499), - [anon_sym_case] = ACTIONS(4499), - [anon_sym_default] = ACTIONS(4499), - [anon_sym_while] = ACTIONS(4499), - [anon_sym_do] = ACTIONS(4499), - [anon_sym_for] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_goto] = ACTIONS(4499), - [anon_sym_AMP] = ACTIONS(4497), - [anon_sym_BANG] = ACTIONS(4497), - [anon_sym_TILDE] = ACTIONS(4497), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_DASH_DASH] = ACTIONS(4497), - [anon_sym_PLUS_PLUS] = ACTIONS(4497), - [anon_sym_sizeof] = ACTIONS(4499), - [sym_number_literal] = ACTIONS(4497), - [sym_char_literal] = ACTIONS(4497), - [sym_string_literal] = ACTIONS(4497), - [sym_true] = ACTIONS(4499), - [sym_false] = ACTIONS(4499), - [sym_null] = ACTIONS(4499), - [sym_identifier] = ACTIONS(4499), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4499), - [sym_auto] = ACTIONS(4499), - [anon_sym_typename] = ACTIONS(4499), - [anon_sym_new] = ACTIONS(4499), - [anon_sym_COLON_COLON] = ACTIONS(4497), - [anon_sym_delete] = ACTIONS(4499), - [sym_nullptr] = ACTIONS(4499), + [2540] = { + [sym_raw_string_literal] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4507), + [anon_sym_LPAREN] = ACTIONS(4505), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4507), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4507), + [sym_preproc_directive] = ACTIONS(4507), + [anon_sym_SEMI] = ACTIONS(4505), + [anon_sym_typedef] = ACTIONS(4507), + [anon_sym_extern] = ACTIONS(4507), + [anon_sym_LBRACE] = ACTIONS(4505), + [anon_sym_STAR] = ACTIONS(4505), + [anon_sym_LBRACK] = ACTIONS(4505), + [anon_sym_static] = ACTIONS(4507), + [anon_sym_register] = ACTIONS(4507), + [anon_sym_inline] = ACTIONS(4507), + [anon_sym_const] = ACTIONS(4507), + [anon_sym_restrict] = ACTIONS(4507), + [anon_sym_volatile] = ACTIONS(4507), + [anon_sym__Atomic] = ACTIONS(4507), + [anon_sym_mutable] = ACTIONS(4507), + [anon_sym_explicit] = ACTIONS(4507), + [anon_sym_constexpr] = ACTIONS(4507), + [anon_sym_unsigned] = ACTIONS(4507), + [anon_sym_long] = ACTIONS(4507), + [anon_sym_short] = ACTIONS(4507), + [sym_primitive_type] = ACTIONS(4507), + [anon_sym_enum] = ACTIONS(4507), + [anon_sym_struct] = ACTIONS(4507), + [anon_sym_union] = ACTIONS(4507), + [anon_sym_if] = ACTIONS(4507), + [anon_sym_switch] = ACTIONS(4507), + [anon_sym_case] = ACTIONS(4507), + [anon_sym_default] = ACTIONS(4507), + [anon_sym_while] = ACTIONS(4507), + [anon_sym_do] = ACTIONS(4507), + [anon_sym_for] = ACTIONS(4507), + [anon_sym_return] = ACTIONS(4507), + [anon_sym_break] = ACTIONS(4507), + [anon_sym_continue] = ACTIONS(4507), + [anon_sym_goto] = ACTIONS(4507), + [anon_sym_AMP] = ACTIONS(4505), + [anon_sym_BANG] = ACTIONS(4505), + [anon_sym_TILDE] = ACTIONS(4505), + [anon_sym_PLUS] = ACTIONS(4507), + [anon_sym_DASH] = ACTIONS(4507), + [anon_sym_DASH_DASH] = ACTIONS(4505), + [anon_sym_PLUS_PLUS] = ACTIONS(4505), + [anon_sym_sizeof] = ACTIONS(4507), + [sym_number_literal] = ACTIONS(4505), + [sym_char_literal] = ACTIONS(4505), + [sym_string_literal] = ACTIONS(4505), + [sym_true] = ACTIONS(4507), + [sym_false] = ACTIONS(4507), + [sym_null] = ACTIONS(4507), + [sym_identifier] = ACTIONS(4507), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4507), + [sym_auto] = ACTIONS(4507), + [anon_sym_typename] = ACTIONS(4507), + [anon_sym_new] = ACTIONS(4507), + [anon_sym_COLON_COLON] = ACTIONS(4505), + [anon_sym_delete] = ACTIONS(4507), + [sym_nullptr] = ACTIONS(4507), }, - [2531] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6421), + [2541] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6455), [sym_comment] = ACTIONS(49), }, - [2532] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6423), + [2542] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6457), [sym_comment] = ACTIONS(49), }, - [2533] = { - [sym_preproc_include] = STATE(1979), - [sym_preproc_def] = STATE(1979), - [sym_preproc_function_def] = STATE(1979), - [sym_preproc_call] = STATE(1979), - [sym_preproc_if_in_compound_statement] = STATE(1413), - [sym_preproc_ifdef_in_compound_statement] = STATE(1414), - [sym_preproc_else_in_compound_statement] = STATE(2686), - [sym_preproc_elif_in_compound_statement] = STATE(2687), - [sym_declaration] = STATE(1979), - [sym_type_definition] = STATE(1979), - [sym__declaration_specifiers] = STATE(1417), - [sym_compound_statement] = STATE(1979), + [2543] = { + [sym_preproc_include] = STATE(1983), + [sym_preproc_def] = STATE(1983), + [sym_preproc_function_def] = STATE(1983), + [sym_preproc_call] = STATE(1983), + [sym_preproc_if_in_compound_statement] = STATE(1414), + [sym_preproc_ifdef_in_compound_statement] = STATE(1415), + [sym_preproc_else_in_compound_statement] = STATE(2701), + [sym_preproc_elif_in_compound_statement] = STATE(2702), + [sym_declaration] = STATE(1983), + [sym_type_definition] = STATE(1983), + [sym__declaration_specifiers] = STATE(1418), + [sym_compound_statement] = STATE(1983), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -100218,70 +100616,70 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(1979), - [sym_expression_statement] = STATE(1979), - [sym_if_statement] = STATE(1979), - [sym_switch_statement] = STATE(1979), - [sym_case_statement] = STATE(1979), - [sym_while_statement] = STATE(1979), - [sym_do_statement] = STATE(1979), - [sym_for_statement] = STATE(1979), - [sym_return_statement] = STATE(1979), - [sym_break_statement] = STATE(1979), - [sym_continue_statement] = STATE(1979), - [sym_goto_statement] = STATE(1979), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym__empty_declaration] = STATE(1979), + [sym_labeled_statement] = STATE(1983), + [sym_expression_statement] = STATE(1983), + [sym_if_statement] = STATE(1983), + [sym_switch_statement] = STATE(1983), + [sym_case_statement] = STATE(1983), + [sym_while_statement] = STATE(1983), + [sym_do_statement] = STATE(1983), + [sym_for_statement] = STATE(1983), + [sym_return_statement] = STATE(1983), + [sym_break_statement] = STATE(1983), + [sym_continue_statement] = STATE(1983), + [sym_goto_statement] = STATE(1983), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym__empty_declaration] = STATE(1983), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(1979), + [sym_structured_binding_declaration] = STATE(1983), [sym_template_type] = STATE(415), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(1979), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(1983), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1979), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(1983), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), - [sym_raw_string_literal] = ACTIONS(2877), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2879), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2881), + [sym_raw_string_literal] = ACTIONS(2879), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2881), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2883), [anon_sym_LPAREN] = ACTIONS(626), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2883), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6425), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2887), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2889), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2891), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2893), - [sym_preproc_directive] = ACTIONS(2895), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_typedef] = ACTIONS(2899), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2885), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6459), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2889), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2891), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2893), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2895), + [sym_preproc_directive] = ACTIONS(2897), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_typedef] = ACTIONS(2901), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -100301,17 +100699,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -100320,13 +100718,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2929), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(33), @@ -100334,21 +100732,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(684), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2534] = { - [anon_sym_LF] = ACTIONS(6427), + [2544] = { + [anon_sym_LF] = ACTIONS(6461), [sym_comment] = ACTIONS(83), }, - [2535] = { + [2545] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6429), + [anon_sym_SEMI] = ACTIONS(6463), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2536] = { - [sym__type_declarator] = STATE(2690), + [2546] = { + [sym__type_declarator] = STATE(2705), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -100357,161 +100755,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2537] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), + [2547] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), }, - [2538] = { + [2548] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6431), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6465), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2539] = { + [2549] = { + [sym__expression] = STATE(2707), + [sym_conditional_expression] = STATE(2707), + [sym_assignment_expression] = STATE(2707), + [sym_pointer_expression] = STATE(2707), + [sym_logical_expression] = STATE(2707), + [sym_bitwise_expression] = STATE(2707), + [sym_equality_expression] = STATE(2707), + [sym_relational_expression] = STATE(2707), + [sym_shift_expression] = STATE(2707), + [sym_math_expression] = STATE(2707), + [sym_cast_expression] = STATE(2707), + [sym_sizeof_expression] = STATE(2707), + [sym_subscript_expression] = STATE(2707), + [sym_call_expression] = STATE(2707), + [sym_field_expression] = STATE(2707), + [sym_compound_literal_expression] = STATE(2707), + [sym_parenthesized_expression] = STATE(2707), + [sym_concatenated_string] = STATE(2707), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2707), + [sym_new_expression] = STATE(2707), + [sym_delete_expression] = STATE(2707), + [sym_lambda_expression] = STATE(2707), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6467), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6467), + [sym_char_literal] = ACTIONS(6467), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6469), + [sym_false] = ACTIONS(6469), + [sym_null] = ACTIONS(6469), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6469), + }, + [2550] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6433), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6471), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2540] = { - [sym_declaration] = STATE(2693), - [sym_type_definition] = STATE(2693), - [sym__declaration_specifiers] = STATE(2543), - [sym_compound_statement] = STATE(2693), + [2551] = { + [sym_declaration] = STATE(2709), + [sym_type_definition] = STATE(2709), + [sym__declaration_specifiers] = STATE(2554), + [sym_compound_statement] = STATE(2709), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -100519,58 +100970,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2693), - [sym_expression_statement] = STATE(2693), - [sym_if_statement] = STATE(2693), - [sym_switch_statement] = STATE(2693), - [sym_case_statement] = STATE(2693), - [sym_while_statement] = STATE(2693), - [sym_do_statement] = STATE(2693), - [sym_for_statement] = STATE(2693), - [sym_return_statement] = STATE(2693), - [sym_break_statement] = STATE(2693), - [sym_continue_statement] = STATE(2693), - [sym_goto_statement] = STATE(2693), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), + [sym_labeled_statement] = STATE(2709), + [sym_expression_statement] = STATE(2709), + [sym_if_statement] = STATE(2709), + [sym_switch_statement] = STATE(2709), + [sym_case_statement] = STATE(2709), + [sym_while_statement] = STATE(2709), + [sym_do_statement] = STATE(2709), + [sym_for_statement] = STATE(2709), + [sym_return_statement] = STATE(2709), + [sym_break_statement] = STATE(2709), + [sym_continue_statement] = STATE(2709), + [sym_goto_statement] = STATE(2709), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2693), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2709), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(4389), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_typedef] = ACTIONS(4407), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_typedef] = ACTIONS(4413), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -100590,17 +101041,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -100609,25 +101060,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6033), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6059), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2541] = { + [2552] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -100646,7 +101097,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(5333), + [anon_sym_COLON] = ACTIONS(5349), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -100682,87 +101133,87 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2542] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [2553] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [2543] = { - [sym__declarator] = STATE(2308), - [sym_pointer_declarator] = STATE(2308), - [sym_function_declarator] = STATE(2308), - [sym_array_declarator] = STATE(2308), - [sym_init_declarator] = STATE(2309), - [sym_reference_declarator] = STATE(2308), + [2554] = { + [sym__declarator] = STATE(2315), + [sym_pointer_declarator] = STATE(2315), + [sym_function_declarator] = STATE(2315), + [sym_array_declarator] = STATE(2315), + [sym_init_declarator] = STATE(2316), + [sym_reference_declarator] = STATE(2315), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2308), - [sym_destructor_name] = STATE(2308), + [sym_template_function] = STATE(2315), + [sym_destructor_name] = STATE(2315), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -100774,84 +101225,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(5337), + [sym_operator_name] = ACTIONS(5353), }, - [2544] = { + [2555] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6435), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6473), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2545] = { - [anon_sym_LPAREN] = ACTIONS(6437), + [2556] = { + [anon_sym_LPAREN] = ACTIONS(6475), [sym_comment] = ACTIONS(49), }, - [2546] = { - [sym__expression] = STATE(2697), - [sym_conditional_expression] = STATE(2697), - [sym_assignment_expression] = STATE(2697), - [sym_pointer_expression] = STATE(2697), - [sym_logical_expression] = STATE(2697), - [sym_bitwise_expression] = STATE(2697), - [sym_equality_expression] = STATE(2697), - [sym_relational_expression] = STATE(2697), - [sym_shift_expression] = STATE(2697), - [sym_math_expression] = STATE(2697), - [sym_cast_expression] = STATE(2697), - [sym_sizeof_expression] = STATE(2697), - [sym_subscript_expression] = STATE(2697), - [sym_call_expression] = STATE(2697), - [sym_field_expression] = STATE(2697), - [sym_compound_literal_expression] = STATE(2697), - [sym_parenthesized_expression] = STATE(2697), - [sym_concatenated_string] = STATE(2697), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2697), - [sym_new_expression] = STATE(2697), - [sym_delete_expression] = STATE(2697), - [sym_lambda_expression] = STATE(2697), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6439), + [2557] = { + [sym__expression] = STATE(2713), + [sym_conditional_expression] = STATE(2713), + [sym_assignment_expression] = STATE(2713), + [sym_pointer_expression] = STATE(2713), + [sym_logical_expression] = STATE(2713), + [sym_bitwise_expression] = STATE(2713), + [sym_equality_expression] = STATE(2713), + [sym_relational_expression] = STATE(2713), + [sym_shift_expression] = STATE(2713), + [sym_math_expression] = STATE(2713), + [sym_cast_expression] = STATE(2713), + [sym_sizeof_expression] = STATE(2713), + [sym_subscript_expression] = STATE(2713), + [sym_call_expression] = STATE(2713), + [sym_field_expression] = STATE(2713), + [sym_compound_literal_expression] = STATE(2713), + [sym_parenthesized_expression] = STATE(2713), + [sym_concatenated_string] = STATE(2713), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2713), + [sym_new_expression] = STATE(2713), + [sym_delete_expression] = STATE(2713), + [sym_lambda_expression] = STATE(2713), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6477), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6441), + [anon_sym_SEMI] = ACTIONS(6479), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -100862,203 +101313,203 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6439), - [sym_char_literal] = ACTIONS(6439), + [sym_number_literal] = ACTIONS(6477), + [sym_char_literal] = ACTIONS(6477), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6443), - [sym_false] = ACTIONS(6443), - [sym_null] = ACTIONS(6443), + [sym_true] = ACTIONS(6481), + [sym_false] = ACTIONS(6481), + [sym_null] = ACTIONS(6481), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6443), + [sym_nullptr] = ACTIONS(6481), }, - [2547] = { + [2558] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6445), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6483), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2548] = { - [anon_sym_COLON] = ACTIONS(6447), + [2559] = { + [anon_sym_COLON] = ACTIONS(6485), [sym_comment] = ACTIONS(49), }, - [2549] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [2560] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [2550] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [2561] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [2551] = { + [2562] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -101066,7 +101517,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(5333), + [anon_sym_COLON] = ACTIONS(5349), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -101100,77 +101551,77 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2552] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [2563] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [2553] = { + [2564] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -101238,42 +101689,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [2554] = { + [2565] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6449), + [anon_sym_SEMI] = ACTIONS(6487), [sym_comment] = ACTIONS(49), }, - [2555] = { - [sym__expression] = STATE(2701), - [sym_conditional_expression] = STATE(2701), - [sym_assignment_expression] = STATE(2701), - [sym_pointer_expression] = STATE(2701), - [sym_logical_expression] = STATE(2701), - [sym_bitwise_expression] = STATE(2701), - [sym_equality_expression] = STATE(2701), - [sym_relational_expression] = STATE(2701), - [sym_shift_expression] = STATE(2701), - [sym_math_expression] = STATE(2701), - [sym_cast_expression] = STATE(2701), - [sym_sizeof_expression] = STATE(2701), - [sym_subscript_expression] = STATE(2701), - [sym_call_expression] = STATE(2701), - [sym_field_expression] = STATE(2701), - [sym_compound_literal_expression] = STATE(2701), - [sym_parenthesized_expression] = STATE(2701), - [sym_initializer_list] = STATE(2702), - [sym_concatenated_string] = STATE(2701), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2701), - [sym_new_expression] = STATE(2701), - [sym_delete_expression] = STATE(2701), - [sym_lambda_expression] = STATE(2701), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6451), + [2566] = { + [sym__expression] = STATE(2717), + [sym_conditional_expression] = STATE(2717), + [sym_assignment_expression] = STATE(2717), + [sym_pointer_expression] = STATE(2717), + [sym_logical_expression] = STATE(2717), + [sym_bitwise_expression] = STATE(2717), + [sym_equality_expression] = STATE(2717), + [sym_relational_expression] = STATE(2717), + [sym_shift_expression] = STATE(2717), + [sym_math_expression] = STATE(2717), + [sym_cast_expression] = STATE(2717), + [sym_sizeof_expression] = STATE(2717), + [sym_subscript_expression] = STATE(2717), + [sym_call_expression] = STATE(2717), + [sym_field_expression] = STATE(2717), + [sym_compound_literal_expression] = STATE(2717), + [sym_parenthesized_expression] = STATE(2717), + [sym_initializer_list] = STATE(2718), + [sym_concatenated_string] = STATE(2717), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2717), + [sym_new_expression] = STATE(2717), + [sym_delete_expression] = STATE(2717), + [sym_lambda_expression] = STATE(2717), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6489), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -101286,53 +101737,53 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6451), - [sym_char_literal] = ACTIONS(6451), + [sym_number_literal] = ACTIONS(6489), + [sym_char_literal] = ACTIONS(6489), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6453), - [sym_false] = ACTIONS(6453), - [sym_null] = ACTIONS(6453), + [sym_true] = ACTIONS(6491), + [sym_false] = ACTIONS(6491), + [sym_null] = ACTIONS(6491), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6453), + [sym_nullptr] = ACTIONS(6491), }, - [2556] = { - [anon_sym_SEMI] = ACTIONS(6455), + [2567] = { + [anon_sym_SEMI] = ACTIONS(6493), [sym_comment] = ACTIONS(49), }, - [2557] = { - [sym__expression] = STATE(2704), - [sym_conditional_expression] = STATE(2704), - [sym_assignment_expression] = STATE(2704), - [sym_pointer_expression] = STATE(2704), - [sym_logical_expression] = STATE(2704), - [sym_bitwise_expression] = STATE(2704), - [sym_equality_expression] = STATE(2704), - [sym_relational_expression] = STATE(2704), - [sym_shift_expression] = STATE(2704), - [sym_math_expression] = STATE(2704), - [sym_cast_expression] = STATE(2704), - [sym_sizeof_expression] = STATE(2704), - [sym_subscript_expression] = STATE(2704), - [sym_call_expression] = STATE(2704), - [sym_field_expression] = STATE(2704), - [sym_compound_literal_expression] = STATE(2704), - [sym_parenthesized_expression] = STATE(2704), - [sym_initializer_list] = STATE(2705), - [sym_concatenated_string] = STATE(2704), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2704), - [sym_new_expression] = STATE(2704), - [sym_delete_expression] = STATE(2704), - [sym_lambda_expression] = STATE(2704), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6457), + [2568] = { + [sym__expression] = STATE(2720), + [sym_conditional_expression] = STATE(2720), + [sym_assignment_expression] = STATE(2720), + [sym_pointer_expression] = STATE(2720), + [sym_logical_expression] = STATE(2720), + [sym_bitwise_expression] = STATE(2720), + [sym_equality_expression] = STATE(2720), + [sym_relational_expression] = STATE(2720), + [sym_shift_expression] = STATE(2720), + [sym_math_expression] = STATE(2720), + [sym_cast_expression] = STATE(2720), + [sym_sizeof_expression] = STATE(2720), + [sym_subscript_expression] = STATE(2720), + [sym_call_expression] = STATE(2720), + [sym_field_expression] = STATE(2720), + [sym_compound_literal_expression] = STATE(2720), + [sym_parenthesized_expression] = STATE(2720), + [sym_initializer_list] = STATE(2721), + [sym_concatenated_string] = STATE(2720), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2720), + [sym_new_expression] = STATE(2720), + [sym_delete_expression] = STATE(2720), + [sym_lambda_expression] = STATE(2720), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6495), [anon_sym_LPAREN] = ACTIONS(1347), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), @@ -101345,238 +101796,238 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6457), - [sym_char_literal] = ACTIONS(6457), + [sym_number_literal] = ACTIONS(6495), + [sym_char_literal] = ACTIONS(6495), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6459), - [sym_false] = ACTIONS(6459), - [sym_null] = ACTIONS(6459), + [sym_true] = ACTIONS(6497), + [sym_false] = ACTIONS(6497), + [sym_null] = ACTIONS(6497), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6459), + [sym_nullptr] = ACTIONS(6497), }, - [2558] = { - [anon_sym_SEMI] = ACTIONS(6461), + [2569] = { + [anon_sym_SEMI] = ACTIONS(6499), [sym_comment] = ACTIONS(49), }, - [2559] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6463), + [2570] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6501), [sym_comment] = ACTIONS(49), }, - [2560] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6465), + [2571] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6503), [sym_comment] = ACTIONS(49), }, - [2561] = { - [sym_raw_string_literal] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_goto] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_sizeof] = ACTIONS(1972), - [sym_number_literal] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [sym_string_literal] = ACTIONS(1970), - [sym_true] = ACTIONS(1972), - [sym_false] = ACTIONS(1972), - [sym_null] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_delete] = ACTIONS(1972), - [sym_nullptr] = ACTIONS(1972), + [2572] = { + [sym_raw_string_literal] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [sym_string_literal] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_delete] = ACTIONS(1974), + [sym_nullptr] = ACTIONS(1974), }, - [2562] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [2573] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), }, - [2563] = { + [2574] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6467), + [anon_sym_SEMI] = ACTIONS(6505), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2564] = { - [sym_compound_statement] = STATE(2722), - [sym_labeled_statement] = STATE(2722), - [sym_expression_statement] = STATE(2722), - [sym_if_statement] = STATE(2722), - [sym_switch_statement] = STATE(2722), - [sym_case_statement] = STATE(2722), - [sym_while_statement] = STATE(2722), - [sym_do_statement] = STATE(2722), - [sym_for_statement] = STATE(2722), - [sym_return_statement] = STATE(2722), - [sym_break_statement] = STATE(2722), - [sym_continue_statement] = STATE(2722), - [sym_goto_statement] = STATE(2722), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(2722), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [2575] = { + [sym_compound_statement] = STATE(2738), + [sym_labeled_statement] = STATE(2738), + [sym_expression_statement] = STATE(2738), + [sym_if_statement] = STATE(2738), + [sym_switch_statement] = STATE(2738), + [sym_case_statement] = STATE(2738), + [sym_while_statement] = STATE(2738), + [sym_do_statement] = STATE(2738), + [sym_for_statement] = STATE(2738), + [sym_return_statement] = STATE(2738), + [sym_break_statement] = STATE(2738), + [sym_continue_statement] = STATE(2738), + [sym_goto_statement] = STATE(2738), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(2738), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -101585,79 +102036,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [2565] = { - [sym_compound_statement] = STATE(2725), - [sym_labeled_statement] = STATE(2725), - [sym_expression_statement] = STATE(2725), - [sym_if_statement] = STATE(2725), - [sym_switch_statement] = STATE(2725), - [sym_case_statement] = STATE(2725), - [sym_while_statement] = STATE(2725), - [sym_do_statement] = STATE(2725), - [sym_for_statement] = STATE(2725), - [sym_return_statement] = STATE(2725), - [sym_break_statement] = STATE(2725), - [sym_continue_statement] = STATE(2725), - [sym_goto_statement] = STATE(2725), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2725), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2576] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(6539), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2577] = { + [sym_compound_statement] = STATE(2742), + [sym_labeled_statement] = STATE(2742), + [sym_expression_statement] = STATE(2742), + [sym_if_statement] = STATE(2742), + [sym_switch_statement] = STATE(2742), + [sym_case_statement] = STATE(2742), + [sym_while_statement] = STATE(2742), + [sym_do_statement] = STATE(2742), + [sym_for_statement] = STATE(2742), + [sym_return_statement] = STATE(2742), + [sym_break_statement] = STATE(2742), + [sym_continue_statement] = STATE(2742), + [sym_goto_statement] = STATE(2742), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2742), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -101666,149 +102158,149 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2566] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [2578] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [2567] = { - [sym_compound_statement] = STATE(2726), - [sym_labeled_statement] = STATE(2726), - [sym_expression_statement] = STATE(2726), - [sym_if_statement] = STATE(2726), - [sym_switch_statement] = STATE(2726), - [sym_case_statement] = STATE(2726), - [sym_while_statement] = STATE(2726), - [sym_do_statement] = STATE(2726), - [sym_for_statement] = STATE(2726), - [sym_return_statement] = STATE(2726), - [sym_break_statement] = STATE(2726), - [sym_continue_statement] = STATE(2726), - [sym_goto_statement] = STATE(2726), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2726), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2579] = { + [sym_compound_statement] = STATE(2743), + [sym_labeled_statement] = STATE(2743), + [sym_expression_statement] = STATE(2743), + [sym_if_statement] = STATE(2743), + [sym_switch_statement] = STATE(2743), + [sym_case_statement] = STATE(2743), + [sym_while_statement] = STATE(2743), + [sym_do_statement] = STATE(2743), + [sym_for_statement] = STATE(2743), + [sym_return_statement] = STATE(2743), + [sym_break_statement] = STATE(2743), + [sym_continue_statement] = STATE(2743), + [sym_goto_statement] = STATE(2743), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2743), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -101817,103 +102309,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2568] = { - [sym__expression] = STATE(2727), - [sym_conditional_expression] = STATE(2727), - [sym_assignment_expression] = STATE(2727), - [sym_pointer_expression] = STATE(2727), - [sym_logical_expression] = STATE(2727), - [sym_bitwise_expression] = STATE(2727), - [sym_equality_expression] = STATE(2727), - [sym_relational_expression] = STATE(2727), - [sym_shift_expression] = STATE(2727), - [sym_math_expression] = STATE(2727), - [sym_cast_expression] = STATE(2727), - [sym_sizeof_expression] = STATE(2727), - [sym_subscript_expression] = STATE(2727), - [sym_call_expression] = STATE(2727), - [sym_field_expression] = STATE(2727), - [sym_compound_literal_expression] = STATE(2727), - [sym_parenthesized_expression] = STATE(2727), - [sym_concatenated_string] = STATE(2727), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2727), - [sym_new_expression] = STATE(2727), - [sym_delete_expression] = STATE(2727), - [sym_lambda_expression] = STATE(2727), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6501), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6501), - [sym_char_literal] = ACTIONS(6501), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6503), - [sym_false] = ACTIONS(6503), - [sym_null] = ACTIONS(6503), + [2580] = { + [sym__expression] = STATE(2744), + [sym_conditional_expression] = STATE(2744), + [sym_assignment_expression] = STATE(2744), + [sym_pointer_expression] = STATE(2744), + [sym_logical_expression] = STATE(2744), + [sym_bitwise_expression] = STATE(2744), + [sym_equality_expression] = STATE(2744), + [sym_relational_expression] = STATE(2744), + [sym_shift_expression] = STATE(2744), + [sym_math_expression] = STATE(2744), + [sym_cast_expression] = STATE(2744), + [sym_sizeof_expression] = STATE(2744), + [sym_subscript_expression] = STATE(2744), + [sym_call_expression] = STATE(2744), + [sym_field_expression] = STATE(2744), + [sym_compound_literal_expression] = STATE(2744), + [sym_parenthesized_expression] = STATE(2744), + [sym_concatenated_string] = STATE(2744), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2744), + [sym_new_expression] = STATE(2744), + [sym_delete_expression] = STATE(2744), + [sym_lambda_expression] = STATE(2744), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6541), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6541), + [sym_char_literal] = ACTIONS(6541), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6543), + [sym_false] = ACTIONS(6543), + [sym_null] = ACTIONS(6543), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6503), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6543), }, - [2569] = { - [sym__expression] = STATE(2729), - [sym_conditional_expression] = STATE(2729), - [sym_assignment_expression] = STATE(2729), - [sym_pointer_expression] = STATE(2729), - [sym_logical_expression] = STATE(2729), - [sym_bitwise_expression] = STATE(2729), - [sym_equality_expression] = STATE(2729), - [sym_relational_expression] = STATE(2729), - [sym_shift_expression] = STATE(2729), - [sym_math_expression] = STATE(2729), - [sym_cast_expression] = STATE(2729), - [sym_sizeof_expression] = STATE(2729), - [sym_subscript_expression] = STATE(2729), - [sym_call_expression] = STATE(2729), - [sym_field_expression] = STATE(2729), - [sym_compound_literal_expression] = STATE(2729), - [sym_parenthesized_expression] = STATE(2729), - [sym_concatenated_string] = STATE(2729), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2729), - [sym_new_expression] = STATE(2729), - [sym_delete_expression] = STATE(2729), - [sym_lambda_expression] = STATE(2729), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6505), + [2581] = { + [sym__expression] = STATE(2746), + [sym_conditional_expression] = STATE(2746), + [sym_assignment_expression] = STATE(2746), + [sym_pointer_expression] = STATE(2746), + [sym_logical_expression] = STATE(2746), + [sym_bitwise_expression] = STATE(2746), + [sym_equality_expression] = STATE(2746), + [sym_relational_expression] = STATE(2746), + [sym_shift_expression] = STATE(2746), + [sym_math_expression] = STATE(2746), + [sym_cast_expression] = STATE(2746), + [sym_sizeof_expression] = STATE(2746), + [sym_subscript_expression] = STATE(2746), + [sym_call_expression] = STATE(2746), + [sym_field_expression] = STATE(2746), + [sym_compound_literal_expression] = STATE(2746), + [sym_parenthesized_expression] = STATE(2746), + [sym_concatenated_string] = STATE(2746), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2746), + [sym_new_expression] = STATE(2746), + [sym_delete_expression] = STATE(2746), + [sym_lambda_expression] = STATE(2746), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6545), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6507), + [anon_sym_RPAREN] = ACTIONS(6547), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -101924,91 +102416,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6505), - [sym_char_literal] = ACTIONS(6505), + [sym_number_literal] = ACTIONS(6545), + [sym_char_literal] = ACTIONS(6545), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6509), - [sym_false] = ACTIONS(6509), - [sym_null] = ACTIONS(6509), + [sym_true] = ACTIONS(6549), + [sym_false] = ACTIONS(6549), + [sym_null] = ACTIONS(6549), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6509), + [sym_nullptr] = ACTIONS(6549), }, - [2570] = { + [2582] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6511), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6551), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2571] = { - [sym__expression] = STATE(2731), - [sym_conditional_expression] = STATE(2731), - [sym_assignment_expression] = STATE(2731), - [sym_pointer_expression] = STATE(2731), - [sym_logical_expression] = STATE(2731), - [sym_bitwise_expression] = STATE(2731), - [sym_equality_expression] = STATE(2731), - [sym_relational_expression] = STATE(2731), - [sym_shift_expression] = STATE(2731), - [sym_math_expression] = STATE(2731), - [sym_cast_expression] = STATE(2731), - [sym_sizeof_expression] = STATE(2731), - [sym_subscript_expression] = STATE(2731), - [sym_call_expression] = STATE(2731), - [sym_field_expression] = STATE(2731), - [sym_compound_literal_expression] = STATE(2731), - [sym_parenthesized_expression] = STATE(2731), - [sym_concatenated_string] = STATE(2731), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2731), - [sym_new_expression] = STATE(2731), - [sym_delete_expression] = STATE(2731), - [sym_lambda_expression] = STATE(2731), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6513), + [2583] = { + [sym__expression] = STATE(2748), + [sym_conditional_expression] = STATE(2748), + [sym_assignment_expression] = STATE(2748), + [sym_pointer_expression] = STATE(2748), + [sym_logical_expression] = STATE(2748), + [sym_bitwise_expression] = STATE(2748), + [sym_equality_expression] = STATE(2748), + [sym_relational_expression] = STATE(2748), + [sym_shift_expression] = STATE(2748), + [sym_math_expression] = STATE(2748), + [sym_cast_expression] = STATE(2748), + [sym_sizeof_expression] = STATE(2748), + [sym_subscript_expression] = STATE(2748), + [sym_call_expression] = STATE(2748), + [sym_field_expression] = STATE(2748), + [sym_compound_literal_expression] = STATE(2748), + [sym_parenthesized_expression] = STATE(2748), + [sym_concatenated_string] = STATE(2748), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2748), + [sym_new_expression] = STATE(2748), + [sym_delete_expression] = STATE(2748), + [sym_lambda_expression] = STATE(2748), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6553), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6511), + [anon_sym_SEMI] = ACTIONS(6551), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -102019,552 +102511,552 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6513), - [sym_char_literal] = ACTIONS(6513), + [sym_number_literal] = ACTIONS(6553), + [sym_char_literal] = ACTIONS(6553), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6515), - [sym_false] = ACTIONS(6515), - [sym_null] = ACTIONS(6515), + [sym_true] = ACTIONS(6555), + [sym_false] = ACTIONS(6555), + [sym_null] = ACTIONS(6555), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6515), + [sym_nullptr] = ACTIONS(6555), }, - [2572] = { - [sym__expression] = STATE(2732), - [sym_conditional_expression] = STATE(2732), - [sym_assignment_expression] = STATE(2732), - [sym_pointer_expression] = STATE(2732), - [sym_logical_expression] = STATE(2732), - [sym_bitwise_expression] = STATE(2732), - [sym_equality_expression] = STATE(2732), - [sym_relational_expression] = STATE(2732), - [sym_shift_expression] = STATE(2732), - [sym_math_expression] = STATE(2732), - [sym_cast_expression] = STATE(2732), - [sym_sizeof_expression] = STATE(2732), - [sym_subscript_expression] = STATE(2732), - [sym_call_expression] = STATE(2732), - [sym_field_expression] = STATE(2732), - [sym_compound_literal_expression] = STATE(2732), - [sym_parenthesized_expression] = STATE(2732), - [sym_concatenated_string] = STATE(2732), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2732), - [sym_new_expression] = STATE(2732), - [sym_delete_expression] = STATE(2732), - [sym_lambda_expression] = STATE(2732), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6517), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6517), - [sym_char_literal] = ACTIONS(6517), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6519), - [sym_false] = ACTIONS(6519), - [sym_null] = ACTIONS(6519), + [2584] = { + [sym__expression] = STATE(2749), + [sym_conditional_expression] = STATE(2749), + [sym_assignment_expression] = STATE(2749), + [sym_pointer_expression] = STATE(2749), + [sym_logical_expression] = STATE(2749), + [sym_bitwise_expression] = STATE(2749), + [sym_equality_expression] = STATE(2749), + [sym_relational_expression] = STATE(2749), + [sym_shift_expression] = STATE(2749), + [sym_math_expression] = STATE(2749), + [sym_cast_expression] = STATE(2749), + [sym_sizeof_expression] = STATE(2749), + [sym_subscript_expression] = STATE(2749), + [sym_call_expression] = STATE(2749), + [sym_field_expression] = STATE(2749), + [sym_compound_literal_expression] = STATE(2749), + [sym_parenthesized_expression] = STATE(2749), + [sym_concatenated_string] = STATE(2749), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2749), + [sym_new_expression] = STATE(2749), + [sym_delete_expression] = STATE(2749), + [sym_lambda_expression] = STATE(2749), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6557), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6557), + [sym_char_literal] = ACTIONS(6557), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6559), + [sym_false] = ACTIONS(6559), + [sym_null] = ACTIONS(6559), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6519), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6559), }, - [2573] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [2585] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [2574] = { + [2586] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6521), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6561), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2575] = { - [anon_sym_SEMI] = ACTIONS(6521), + [2587] = { + [anon_sym_SEMI] = ACTIONS(6561), [sym_comment] = ACTIONS(49), }, - [2576] = { - [sym_raw_string_literal] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_goto] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2581), - [sym_number_literal] = ACTIONS(2579), - [sym_char_literal] = ACTIONS(2579), - [sym_string_literal] = ACTIONS(2579), - [sym_true] = ACTIONS(2581), - [sym_false] = ACTIONS(2581), - [sym_null] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_delete] = ACTIONS(2581), - [sym_nullptr] = ACTIONS(2581), + [2588] = { + [sym_raw_string_literal] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2581), + [sym_char_literal] = ACTIONS(2581), + [sym_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), }, - [2577] = { + [2589] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6523), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6563), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2578] = { - [anon_sym_SEMI] = ACTIONS(6523), + [2590] = { + [anon_sym_SEMI] = ACTIONS(6563), [sym_comment] = ACTIONS(49), }, - [2579] = { - [sym_raw_string_literal] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [sym_string_literal] = ACTIONS(2585), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), + [2591] = { + [sym_raw_string_literal] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_sizeof] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [sym_string_literal] = ACTIONS(2587), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [sym_null] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2589), + [sym_nullptr] = ACTIONS(2589), }, - [2580] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_RPAREN] = ACTIONS(5196), + [2592] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_RPAREN] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(6525), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(6525), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(6527), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(6565), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(6565), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(6567), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(4141), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(4147), }, - [2581] = { - [sym__expression] = STATE(2735), - [sym_conditional_expression] = STATE(2735), - [sym_assignment_expression] = STATE(2735), - [sym_pointer_expression] = STATE(2735), - [sym_logical_expression] = STATE(2735), - [sym_bitwise_expression] = STATE(2735), - [sym_equality_expression] = STATE(2735), - [sym_relational_expression] = STATE(2735), - [sym_shift_expression] = STATE(2735), - [sym_math_expression] = STATE(2735), - [sym_cast_expression] = STATE(2735), - [sym_sizeof_expression] = STATE(2735), - [sym_subscript_expression] = STATE(2735), - [sym_call_expression] = STATE(2735), - [sym_field_expression] = STATE(2735), - [sym_compound_literal_expression] = STATE(2735), - [sym_parenthesized_expression] = STATE(2735), - [sym_concatenated_string] = STATE(2735), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2735), - [sym_new_expression] = STATE(2735), - [sym_delete_expression] = STATE(2735), - [sym_lambda_expression] = STATE(2735), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6529), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6529), - [sym_char_literal] = ACTIONS(6529), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6531), - [sym_false] = ACTIONS(6531), - [sym_null] = ACTIONS(6531), + [2593] = { + [sym__expression] = STATE(2752), + [sym_conditional_expression] = STATE(2752), + [sym_assignment_expression] = STATE(2752), + [sym_pointer_expression] = STATE(2752), + [sym_logical_expression] = STATE(2752), + [sym_bitwise_expression] = STATE(2752), + [sym_equality_expression] = STATE(2752), + [sym_relational_expression] = STATE(2752), + [sym_shift_expression] = STATE(2752), + [sym_math_expression] = STATE(2752), + [sym_cast_expression] = STATE(2752), + [sym_sizeof_expression] = STATE(2752), + [sym_subscript_expression] = STATE(2752), + [sym_call_expression] = STATE(2752), + [sym_field_expression] = STATE(2752), + [sym_compound_literal_expression] = STATE(2752), + [sym_parenthesized_expression] = STATE(2752), + [sym_concatenated_string] = STATE(2752), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2752), + [sym_new_expression] = STATE(2752), + [sym_delete_expression] = STATE(2752), + [sym_lambda_expression] = STATE(2752), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6569), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6569), + [sym_char_literal] = ACTIONS(6569), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6571), + [sym_false] = ACTIONS(6571), + [sym_null] = ACTIONS(6571), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6531), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6571), }, - [2582] = { + [2594] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2583] = { + [2595] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), @@ -102633,17 +103125,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [2584] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [2596] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -102651,18 +103143,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -102682,14 +103174,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -102697,7 +103189,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -102712,7 +103204,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6533), + [anon_sym_RBRACE] = ACTIONS(6573), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -102767,158 +103259,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2585] = { - [sym__expression] = STATE(2737), - [sym_conditional_expression] = STATE(2737), - [sym_assignment_expression] = STATE(2737), - [sym_pointer_expression] = STATE(2737), - [sym_logical_expression] = STATE(2737), - [sym_bitwise_expression] = STATE(2737), - [sym_equality_expression] = STATE(2737), - [sym_relational_expression] = STATE(2737), - [sym_shift_expression] = STATE(2737), - [sym_math_expression] = STATE(2737), - [sym_cast_expression] = STATE(2737), - [sym_sizeof_expression] = STATE(2737), - [sym_subscript_expression] = STATE(2737), - [sym_call_expression] = STATE(2737), - [sym_field_expression] = STATE(2737), - [sym_compound_literal_expression] = STATE(2737), - [sym_parenthesized_expression] = STATE(2737), - [sym_concatenated_string] = STATE(2737), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2737), - [sym_new_expression] = STATE(2737), - [sym_delete_expression] = STATE(2737), - [sym_lambda_expression] = STATE(2737), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6535), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6535), - [sym_char_literal] = ACTIONS(6535), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6537), - [sym_false] = ACTIONS(6537), - [sym_null] = ACTIONS(6537), + [2597] = { + [sym__expression] = STATE(2754), + [sym_conditional_expression] = STATE(2754), + [sym_assignment_expression] = STATE(2754), + [sym_pointer_expression] = STATE(2754), + [sym_logical_expression] = STATE(2754), + [sym_bitwise_expression] = STATE(2754), + [sym_equality_expression] = STATE(2754), + [sym_relational_expression] = STATE(2754), + [sym_shift_expression] = STATE(2754), + [sym_math_expression] = STATE(2754), + [sym_cast_expression] = STATE(2754), + [sym_sizeof_expression] = STATE(2754), + [sym_subscript_expression] = STATE(2754), + [sym_call_expression] = STATE(2754), + [sym_field_expression] = STATE(2754), + [sym_compound_literal_expression] = STATE(2754), + [sym_parenthesized_expression] = STATE(2754), + [sym_concatenated_string] = STATE(2754), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2754), + [sym_new_expression] = STATE(2754), + [sym_delete_expression] = STATE(2754), + [sym_lambda_expression] = STATE(2754), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6575), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6575), + [sym_char_literal] = ACTIONS(6575), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6577), + [sym_false] = ACTIONS(6577), + [sym_null] = ACTIONS(6577), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6537), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6577), }, - [2586] = { - [sym__expression] = STATE(2738), - [sym_conditional_expression] = STATE(2738), - [sym_assignment_expression] = STATE(2738), - [sym_pointer_expression] = STATE(2738), - [sym_logical_expression] = STATE(2738), - [sym_bitwise_expression] = STATE(2738), - [sym_equality_expression] = STATE(2738), - [sym_relational_expression] = STATE(2738), - [sym_shift_expression] = STATE(2738), - [sym_math_expression] = STATE(2738), - [sym_cast_expression] = STATE(2738), - [sym_sizeof_expression] = STATE(2738), - [sym_subscript_expression] = STATE(2738), - [sym_call_expression] = STATE(2738), - [sym_field_expression] = STATE(2738), - [sym_compound_literal_expression] = STATE(2738), - [sym_parenthesized_expression] = STATE(2738), - [sym_concatenated_string] = STATE(2738), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2738), - [sym_new_expression] = STATE(2738), - [sym_delete_expression] = STATE(2738), - [sym_lambda_expression] = STATE(2738), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6539), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6539), - [sym_char_literal] = ACTIONS(6539), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6541), - [sym_false] = ACTIONS(6541), - [sym_null] = ACTIONS(6541), + [2598] = { + [anon_sym_LPAREN] = ACTIONS(6579), + [sym_comment] = ACTIONS(49), + }, + [2599] = { + [sym__expression] = STATE(2756), + [sym_conditional_expression] = STATE(2756), + [sym_assignment_expression] = STATE(2756), + [sym_pointer_expression] = STATE(2756), + [sym_logical_expression] = STATE(2756), + [sym_bitwise_expression] = STATE(2756), + [sym_equality_expression] = STATE(2756), + [sym_relational_expression] = STATE(2756), + [sym_shift_expression] = STATE(2756), + [sym_math_expression] = STATE(2756), + [sym_cast_expression] = STATE(2756), + [sym_sizeof_expression] = STATE(2756), + [sym_subscript_expression] = STATE(2756), + [sym_call_expression] = STATE(2756), + [sym_field_expression] = STATE(2756), + [sym_compound_literal_expression] = STATE(2756), + [sym_parenthesized_expression] = STATE(2756), + [sym_concatenated_string] = STATE(2756), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2756), + [sym_new_expression] = STATE(2756), + [sym_delete_expression] = STATE(2756), + [sym_lambda_expression] = STATE(2756), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6581), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6581), + [sym_char_literal] = ACTIONS(6581), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6583), + [sym_false] = ACTIONS(6583), + [sym_null] = ACTIONS(6583), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6541), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6583), }, - [2587] = { + [2600] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6543), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(6585), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2588] = { - [sym_declaration] = STATE(2742), - [sym_type_definition] = STATE(2742), - [sym__declaration_specifiers] = STATE(2743), - [sym_compound_statement] = STATE(2742), + [2601] = { + [sym_declaration] = STATE(2760), + [sym_type_definition] = STATE(2760), + [sym__declaration_specifiers] = STATE(2761), + [sym_compound_statement] = STATE(2760), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -102926,58 +103422,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2742), - [sym_expression_statement] = STATE(2742), - [sym_if_statement] = STATE(2742), - [sym_switch_statement] = STATE(2742), - [sym_case_statement] = STATE(2742), - [sym_while_statement] = STATE(2742), - [sym_do_statement] = STATE(2742), - [sym_for_statement] = STATE(2742), - [sym_return_statement] = STATE(2742), - [sym_break_statement] = STATE(2742), - [sym_continue_statement] = STATE(2742), - [sym_goto_statement] = STATE(2742), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), + [sym_labeled_statement] = STATE(2760), + [sym_expression_statement] = STATE(2760), + [sym_if_statement] = STATE(2760), + [sym_switch_statement] = STATE(2760), + [sym_case_statement] = STATE(2760), + [sym_while_statement] = STATE(2760), + [sym_do_statement] = STATE(2760), + [sym_for_statement] = STATE(2760), + [sym_return_statement] = STATE(2760), + [sym_break_statement] = STATE(2760), + [sym_continue_statement] = STATE(2760), + [sym_goto_statement] = STATE(2760), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2742), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2760), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(5520), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_typedef] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_typedef] = ACTIONS(6587), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -102997,17 +103493,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -103016,82 +103512,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(6547), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(6589), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2589] = { - [sym__expression] = STATE(2744), - [sym_conditional_expression] = STATE(2744), - [sym_assignment_expression] = STATE(2744), - [sym_pointer_expression] = STATE(2744), - [sym_logical_expression] = STATE(2744), - [sym_bitwise_expression] = STATE(2744), - [sym_equality_expression] = STATE(2744), - [sym_relational_expression] = STATE(2744), - [sym_shift_expression] = STATE(2744), - [sym_math_expression] = STATE(2744), - [sym_cast_expression] = STATE(2744), - [sym_sizeof_expression] = STATE(2744), - [sym_subscript_expression] = STATE(2744), - [sym_call_expression] = STATE(2744), - [sym_field_expression] = STATE(2744), - [sym_compound_literal_expression] = STATE(2744), - [sym_parenthesized_expression] = STATE(2744), - [sym_concatenated_string] = STATE(2744), + [2602] = { + [sym__expression] = STATE(2762), + [sym_conditional_expression] = STATE(2762), + [sym_assignment_expression] = STATE(2762), + [sym_pointer_expression] = STATE(2762), + [sym_logical_expression] = STATE(2762), + [sym_bitwise_expression] = STATE(2762), + [sym_equality_expression] = STATE(2762), + [sym_relational_expression] = STATE(2762), + [sym_shift_expression] = STATE(2762), + [sym_math_expression] = STATE(2762), + [sym_cast_expression] = STATE(2762), + [sym_sizeof_expression] = STATE(2762), + [sym_subscript_expression] = STATE(2762), + [sym_call_expression] = STATE(2762), + [sym_field_expression] = STATE(2762), + [sym_compound_literal_expression] = STATE(2762), + [sym_parenthesized_expression] = STATE(2762), + [sym_concatenated_string] = STATE(2762), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2744), - [sym_new_expression] = STATE(2744), - [sym_delete_expression] = STATE(2744), - [sym_lambda_expression] = STATE(2744), + [sym_template_function] = STATE(2762), + [sym_new_expression] = STATE(2762), + [sym_delete_expression] = STATE(2762), + [sym_lambda_expression] = STATE(2762), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6549), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6549), - [sym_char_literal] = ACTIONS(6549), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6551), - [sym_false] = ACTIONS(6551), - [sym_null] = ACTIONS(6551), + [sym_raw_string_literal] = ACTIONS(6591), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6591), + [sym_char_literal] = ACTIONS(6591), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6593), + [sym_false] = ACTIONS(6593), + [sym_null] = ACTIONS(6593), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6551), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6593), }, - [2590] = { - [anon_sym_while] = ACTIONS(6553), + [2603] = { + [anon_sym_while] = ACTIONS(6595), [sym_comment] = ACTIONS(49), }, - [2591] = { - [sym_declaration] = STATE(2746), - [sym__declaration_specifiers] = STATE(1497), + [2604] = { + [sym_declaration] = STATE(2764), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -103099,42 +103595,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2747), - [sym_conditional_expression] = STATE(2747), - [sym_assignment_expression] = STATE(2747), - [sym_pointer_expression] = STATE(2747), - [sym_logical_expression] = STATE(2747), - [sym_bitwise_expression] = STATE(2747), - [sym_equality_expression] = STATE(2747), - [sym_relational_expression] = STATE(2747), - [sym_shift_expression] = STATE(2747), - [sym_math_expression] = STATE(2747), - [sym_cast_expression] = STATE(2747), - [sym_sizeof_expression] = STATE(2747), - [sym_subscript_expression] = STATE(2747), - [sym_call_expression] = STATE(2747), - [sym_field_expression] = STATE(2747), - [sym_compound_literal_expression] = STATE(2747), - [sym_parenthesized_expression] = STATE(2747), - [sym_concatenated_string] = STATE(2747), + [sym__expression] = STATE(2765), + [sym_conditional_expression] = STATE(2765), + [sym_assignment_expression] = STATE(2765), + [sym_pointer_expression] = STATE(2765), + [sym_logical_expression] = STATE(2765), + [sym_bitwise_expression] = STATE(2765), + [sym_equality_expression] = STATE(2765), + [sym_relational_expression] = STATE(2765), + [sym_shift_expression] = STATE(2765), + [sym_math_expression] = STATE(2765), + [sym_cast_expression] = STATE(2765), + [sym_sizeof_expression] = STATE(2765), + [sym_subscript_expression] = STATE(2765), + [sym_call_expression] = STATE(2765), + [sym_field_expression] = STATE(2765), + [sym_compound_literal_expression] = STATE(2765), + [sym_parenthesized_expression] = STATE(2765), + [sym_concatenated_string] = STATE(2765), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2747), - [sym_for_range_declaration] = STATE(2748), - [sym_new_expression] = STATE(2747), - [sym_delete_expression] = STATE(2747), - [sym_lambda_expression] = STATE(2747), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2765), + [sym_for_range_declaration] = STATE(2766), + [sym_new_expression] = STATE(2765), + [sym_delete_expression] = STATE(2765), + [sym_lambda_expression] = STATE(2765), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6555), + [sym_raw_string_literal] = ACTIONS(6597), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6557), + [anon_sym_SEMI] = ACTIONS(6599), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -103163,137 +103659,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6555), - [sym_char_literal] = ACTIONS(6555), + [sym_number_literal] = ACTIONS(6597), + [sym_char_literal] = ACTIONS(6597), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6559), - [sym_false] = ACTIONS(6559), - [sym_null] = ACTIONS(6559), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(6601), + [sym_false] = ACTIONS(6601), + [sym_null] = ACTIONS(6601), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6559), - }, - [2592] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_RBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), - }, - [2593] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6561), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [2594] = { - [anon_sym_SEMI] = ACTIONS(6561), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(6601), }, - [2595] = { + [2605] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -103362,139 +103744,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [2596] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), + [2606] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(6603), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), }, - [2597] = { - [anon_sym_SEMI] = ACTIONS(6563), + [2607] = { + [anon_sym_SEMI] = ACTIONS(6603), [sym_comment] = ACTIONS(49), }, - [2598] = { - [sym_compound_statement] = STATE(2751), - [sym_labeled_statement] = STATE(2751), - [sym_expression_statement] = STATE(2751), - [sym_if_statement] = STATE(2751), - [sym_switch_statement] = STATE(2751), - [sym_case_statement] = STATE(2751), - [sym_while_statement] = STATE(2751), - [sym_do_statement] = STATE(2751), - [sym_for_statement] = STATE(2751), - [sym_return_statement] = STATE(2751), - [sym_break_statement] = STATE(2751), - [sym_continue_statement] = STATE(2751), - [sym_goto_statement] = STATE(2751), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2751), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [2608] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), + }, + [2609] = { + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), + }, + [2610] = { + [anon_sym_SEMI] = ACTIONS(6605), + [sym_comment] = ACTIONS(49), + }, + [2611] = { + [sym_compound_statement] = STATE(2769), + [sym_labeled_statement] = STATE(2769), + [sym_expression_statement] = STATE(2769), + [sym_if_statement] = STATE(2769), + [sym_switch_statement] = STATE(2769), + [sym_case_statement] = STATE(2769), + [sym_while_statement] = STATE(2769), + [sym_do_statement] = STATE(2769), + [sym_for_statement] = STATE(2769), + [sym_return_statement] = STATE(2769), + [sym_break_statement] = STATE(2769), + [sym_continue_statement] = STATE(2769), + [sym_goto_statement] = STATE(2769), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2769), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -103503,33 +103999,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2599] = { - [sym_compound_statement] = STATE(2752), - [sym_labeled_statement] = STATE(2752), - [sym_expression_statement] = STATE(2752), - [sym_if_statement] = STATE(2752), - [sym_switch_statement] = STATE(2752), - [sym_case_statement] = STATE(2752), - [sym_while_statement] = STATE(2752), - [sym_do_statement] = STATE(2752), - [sym_for_statement] = STATE(2752), - [sym_return_statement] = STATE(2752), - [sym_break_statement] = STATE(2752), - [sym_continue_statement] = STATE(2752), - [sym_goto_statement] = STATE(2752), + [2612] = { + [sym_compound_statement] = STATE(2770), + [sym_labeled_statement] = STATE(2770), + [sym_expression_statement] = STATE(2770), + [sym_if_statement] = STATE(2770), + [sym_switch_statement] = STATE(2770), + [sym_case_statement] = STATE(2770), + [sym_while_statement] = STATE(2770), + [sym_do_statement] = STATE(2770), + [sym_for_statement] = STATE(2770), + [sym_return_statement] = STATE(2770), + [sym_break_statement] = STATE(2770), + [sym_continue_statement] = STATE(2770), + [sym_goto_statement] = STATE(2770), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -103551,7 +104047,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2752), + [sym_for_range_loop] = STATE(2770), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -103590,293 +104086,363 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2600] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), + [2613] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), }, - [2601] = { - [sym__expression] = STATE(2753), - [sym_conditional_expression] = STATE(2753), - [sym_assignment_expression] = STATE(2753), - [sym_pointer_expression] = STATE(2753), - [sym_logical_expression] = STATE(2753), - [sym_bitwise_expression] = STATE(2753), - [sym_equality_expression] = STATE(2753), - [sym_relational_expression] = STATE(2753), - [sym_shift_expression] = STATE(2753), - [sym_math_expression] = STATE(2753), - [sym_cast_expression] = STATE(2753), - [sym_sizeof_expression] = STATE(2753), - [sym_subscript_expression] = STATE(2753), - [sym_call_expression] = STATE(2753), - [sym_field_expression] = STATE(2753), - [sym_compound_literal_expression] = STATE(2753), - [sym_parenthesized_expression] = STATE(2753), - [sym_concatenated_string] = STATE(2753), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2753), - [sym_new_expression] = STATE(2753), - [sym_delete_expression] = STATE(2753), - [sym_lambda_expression] = STATE(2753), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6565), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6565), - [sym_char_literal] = ACTIONS(6565), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6567), - [sym_false] = ACTIONS(6567), - [sym_null] = ACTIONS(6567), + [2614] = { + [sym__expression] = STATE(2771), + [sym_conditional_expression] = STATE(2771), + [sym_assignment_expression] = STATE(2771), + [sym_pointer_expression] = STATE(2771), + [sym_logical_expression] = STATE(2771), + [sym_bitwise_expression] = STATE(2771), + [sym_equality_expression] = STATE(2771), + [sym_relational_expression] = STATE(2771), + [sym_shift_expression] = STATE(2771), + [sym_math_expression] = STATE(2771), + [sym_cast_expression] = STATE(2771), + [sym_sizeof_expression] = STATE(2771), + [sym_subscript_expression] = STATE(2771), + [sym_call_expression] = STATE(2771), + [sym_field_expression] = STATE(2771), + [sym_compound_literal_expression] = STATE(2771), + [sym_parenthesized_expression] = STATE(2771), + [sym_concatenated_string] = STATE(2771), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2771), + [sym_new_expression] = STATE(2771), + [sym_delete_expression] = STATE(2771), + [sym_lambda_expression] = STATE(2771), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6607), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6607), + [sym_char_literal] = ACTIONS(6607), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6609), + [sym_false] = ACTIONS(6609), + [sym_null] = ACTIONS(6609), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6567), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6609), }, - [2602] = { + [2615] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_RBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(6615), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), + }, + [2616] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_COLON] = ACTIONS(5960), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_COLON] = ACTIONS(5984), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2603] = { + [2617] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(5964), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(5988), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2604] = { - [anon_sym_LPAREN] = ACTIONS(6569), + [2618] = { + [anon_sym_LPAREN] = ACTIONS(6617), + [anon_sym_constexpr] = ACTIONS(6619), [sym_comment] = ACTIONS(49), }, - [2605] = { - [anon_sym_LPAREN] = ACTIONS(6571), + [2619] = { + [anon_sym_LPAREN] = ACTIONS(6621), [sym_comment] = ACTIONS(49), }, - [2606] = { - [sym__expression] = STATE(2756), - [sym_conditional_expression] = STATE(2756), - [sym_assignment_expression] = STATE(2756), - [sym_pointer_expression] = STATE(2756), - [sym_logical_expression] = STATE(2756), - [sym_bitwise_expression] = STATE(2756), - [sym_equality_expression] = STATE(2756), - [sym_relational_expression] = STATE(2756), - [sym_shift_expression] = STATE(2756), - [sym_math_expression] = STATE(2756), - [sym_cast_expression] = STATE(2756), - [sym_sizeof_expression] = STATE(2756), - [sym_subscript_expression] = STATE(2756), - [sym_call_expression] = STATE(2756), - [sym_field_expression] = STATE(2756), - [sym_compound_literal_expression] = STATE(2756), - [sym_parenthesized_expression] = STATE(2756), - [sym_concatenated_string] = STATE(2756), + [2620] = { + [sym__expression] = STATE(2776), + [sym_conditional_expression] = STATE(2776), + [sym_assignment_expression] = STATE(2776), + [sym_pointer_expression] = STATE(2776), + [sym_logical_expression] = STATE(2776), + [sym_bitwise_expression] = STATE(2776), + [sym_equality_expression] = STATE(2776), + [sym_relational_expression] = STATE(2776), + [sym_shift_expression] = STATE(2776), + [sym_math_expression] = STATE(2776), + [sym_cast_expression] = STATE(2776), + [sym_sizeof_expression] = STATE(2776), + [sym_subscript_expression] = STATE(2776), + [sym_call_expression] = STATE(2776), + [sym_field_expression] = STATE(2776), + [sym_compound_literal_expression] = STATE(2776), + [sym_parenthesized_expression] = STATE(2776), + [sym_concatenated_string] = STATE(2776), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2756), - [sym_new_expression] = STATE(2756), - [sym_delete_expression] = STATE(2756), - [sym_lambda_expression] = STATE(2756), + [sym_template_function] = STATE(2776), + [sym_new_expression] = STATE(2776), + [sym_delete_expression] = STATE(2776), + [sym_lambda_expression] = STATE(2776), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6573), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6573), - [sym_char_literal] = ACTIONS(6573), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6575), - [sym_false] = ACTIONS(6575), - [sym_null] = ACTIONS(6575), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6623), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6623), + [sym_char_literal] = ACTIONS(6623), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6625), + [sym_false] = ACTIONS(6625), + [sym_null] = ACTIONS(6625), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6575), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6625), }, - [2607] = { - [anon_sym_COLON] = ACTIONS(6577), + [2621] = { + [anon_sym_COLON] = ACTIONS(6627), [sym_comment] = ACTIONS(49), }, - [2608] = { - [anon_sym_LPAREN] = ACTIONS(6579), + [2622] = { + [anon_sym_LPAREN] = ACTIONS(6629), [sym_comment] = ACTIONS(49), }, - [2609] = { - [anon_sym_LPAREN] = ACTIONS(6581), + [2623] = { + [anon_sym_LPAREN] = ACTIONS(6631), [sym_comment] = ACTIONS(49), }, - [2610] = { + [2624] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -103884,7 +104450,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(6583), + [anon_sym_COLON] = ACTIONS(6633), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -103918,27 +104484,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2611] = { - [anon_sym_else] = ACTIONS(6585), - [anon_sym_while] = ACTIONS(6235), + [2625] = { + [anon_sym_else] = ACTIONS(6635), + [anon_sym_while] = ACTIONS(6267), [sym_comment] = ACTIONS(49), }, - [2612] = { - [anon_sym_else] = ACTIONS(6245), - [anon_sym_while] = ACTIONS(6245), + [2626] = { + [sym_compound_statement] = STATE(2782), + [sym_labeled_statement] = STATE(2782), + [sym_expression_statement] = STATE(2782), + [sym_if_statement] = STATE(2782), + [sym_switch_statement] = STATE(2782), + [sym_case_statement] = STATE(2782), + [sym_while_statement] = STATE(2782), + [sym_do_statement] = STATE(2782), + [sym_for_statement] = STATE(2782), + [sym_return_statement] = STATE(2782), + [sym_break_statement] = STATE(2782), + [sym_continue_statement] = STATE(2782), + [sym_goto_statement] = STATE(2782), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2782), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(1688), }, - [2613] = { + [2627] = { + [anon_sym_else] = ACTIONS(6277), + [anon_sym_while] = ACTIONS(6277), + [sym_comment] = ACTIONS(49), + }, + [2628] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6587), + [anon_sym_SEMI] = ACTIONS(6637), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2614] = { - [sym__type_declarator] = STATE(2763), + [2629] = { + [sym__type_declarator] = STATE(2784), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -103947,123 +104594,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2615] = { + [2630] = { [anon_sym_else] = ACTIONS(1261), [anon_sym_while] = ACTIONS(1261), [sym_comment] = ACTIONS(49), }, - [2616] = { + [2631] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6589), + [anon_sym_SEMI] = ACTIONS(6639), [sym_comment] = ACTIONS(49), }, - [2617] = { - [anon_sym_else] = ACTIONS(6261), - [anon_sym_while] = ACTIONS(6261), + [2632] = { + [anon_sym_else] = ACTIONS(6293), + [anon_sym_while] = ACTIONS(6293), [sym_comment] = ACTIONS(49), }, - [2618] = { + [2633] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6591), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6641), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2619] = { - [sym_compound_statement] = STATE(2766), - [sym_labeled_statement] = STATE(2766), - [sym_expression_statement] = STATE(2766), - [sym_if_statement] = STATE(2766), - [sym_switch_statement] = STATE(2766), - [sym_case_statement] = STATE(2766), - [sym_while_statement] = STATE(2766), - [sym_do_statement] = STATE(2766), - [sym_for_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_break_statement] = STATE(2766), - [sym_continue_statement] = STATE(2766), - [sym_goto_statement] = STATE(2766), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2766), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2634] = { + [sym_compound_statement] = STATE(2787), + [sym_labeled_statement] = STATE(2787), + [sym_expression_statement] = STATE(2787), + [sym_if_statement] = STATE(2787), + [sym_switch_statement] = STATE(2787), + [sym_case_statement] = STATE(2787), + [sym_while_statement] = STATE(2787), + [sym_do_statement] = STATE(2787), + [sym_for_statement] = STATE(2787), + [sym_return_statement] = STATE(2787), + [sym_break_statement] = STATE(2787), + [sym_continue_statement] = STATE(2787), + [sym_goto_statement] = STATE(2787), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2787), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -104072,93 +104719,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2620] = { + [2635] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2768), + [aux_sym_for_statement_repeat1] = STATE(2789), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6593), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6643), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2621] = { - [sym__expression] = STATE(2769), - [sym_conditional_expression] = STATE(2769), - [sym_assignment_expression] = STATE(2769), - [sym_pointer_expression] = STATE(2769), - [sym_logical_expression] = STATE(2769), - [sym_bitwise_expression] = STATE(2769), - [sym_equality_expression] = STATE(2769), - [sym_relational_expression] = STATE(2769), - [sym_shift_expression] = STATE(2769), - [sym_math_expression] = STATE(2769), - [sym_cast_expression] = STATE(2769), - [sym_sizeof_expression] = STATE(2769), - [sym_subscript_expression] = STATE(2769), - [sym_call_expression] = STATE(2769), - [sym_field_expression] = STATE(2769), - [sym_compound_literal_expression] = STATE(2769), - [sym_parenthesized_expression] = STATE(2769), - [sym_concatenated_string] = STATE(2769), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2769), - [sym_new_expression] = STATE(2769), - [sym_delete_expression] = STATE(2769), - [sym_lambda_expression] = STATE(2769), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6595), + [2636] = { + [sym__expression] = STATE(2790), + [sym_conditional_expression] = STATE(2790), + [sym_assignment_expression] = STATE(2790), + [sym_pointer_expression] = STATE(2790), + [sym_logical_expression] = STATE(2790), + [sym_bitwise_expression] = STATE(2790), + [sym_equality_expression] = STATE(2790), + [sym_relational_expression] = STATE(2790), + [sym_shift_expression] = STATE(2790), + [sym_math_expression] = STATE(2790), + [sym_cast_expression] = STATE(2790), + [sym_sizeof_expression] = STATE(2790), + [sym_subscript_expression] = STATE(2790), + [sym_call_expression] = STATE(2790), + [sym_field_expression] = STATE(2790), + [sym_compound_literal_expression] = STATE(2790), + [sym_parenthesized_expression] = STATE(2790), + [sym_concatenated_string] = STATE(2790), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2790), + [sym_new_expression] = STATE(2790), + [sym_delete_expression] = STATE(2790), + [sym_lambda_expression] = STATE(2790), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6645), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6593), + [anon_sym_RPAREN] = ACTIONS(6643), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -104169,266 +104816,266 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6595), - [sym_char_literal] = ACTIONS(6595), + [sym_number_literal] = ACTIONS(6645), + [sym_char_literal] = ACTIONS(6645), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6597), - [sym_false] = ACTIONS(6597), - [sym_null] = ACTIONS(6597), + [sym_true] = ACTIONS(6647), + [sym_false] = ACTIONS(6647), + [sym_null] = ACTIONS(6647), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6597), + [sym_nullptr] = ACTIONS(6647), }, - [2622] = { + [2637] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6599), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6649), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2623] = { + [2638] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6601), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6651), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2624] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_RBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), + [2639] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), }, - [2625] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_RBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), + [2640] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_RBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), }, - [2626] = { - [sym__expression] = STATE(2772), - [sym_conditional_expression] = STATE(2772), - [sym_assignment_expression] = STATE(2772), - [sym_pointer_expression] = STATE(2772), - [sym_logical_expression] = STATE(2772), - [sym_bitwise_expression] = STATE(2772), - [sym_equality_expression] = STATE(2772), - [sym_relational_expression] = STATE(2772), - [sym_shift_expression] = STATE(2772), - [sym_math_expression] = STATE(2772), - [sym_cast_expression] = STATE(2772), - [sym_sizeof_expression] = STATE(2772), - [sym_subscript_expression] = STATE(2772), - [sym_call_expression] = STATE(2772), - [sym_field_expression] = STATE(2772), - [sym_compound_literal_expression] = STATE(2772), - [sym_parenthesized_expression] = STATE(2772), - [sym_concatenated_string] = STATE(2772), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2772), - [sym_new_expression] = STATE(2772), - [sym_delete_expression] = STATE(2772), - [sym_lambda_expression] = STATE(2772), + [2641] = { + [sym__expression] = STATE(2793), + [sym_conditional_expression] = STATE(2793), + [sym_assignment_expression] = STATE(2793), + [sym_pointer_expression] = STATE(2793), + [sym_logical_expression] = STATE(2793), + [sym_bitwise_expression] = STATE(2793), + [sym_equality_expression] = STATE(2793), + [sym_relational_expression] = STATE(2793), + [sym_shift_expression] = STATE(2793), + [sym_math_expression] = STATE(2793), + [sym_cast_expression] = STATE(2793), + [sym_sizeof_expression] = STATE(2793), + [sym_subscript_expression] = STATE(2793), + [sym_call_expression] = STATE(2793), + [sym_field_expression] = STATE(2793), + [sym_compound_literal_expression] = STATE(2793), + [sym_parenthesized_expression] = STATE(2793), + [sym_concatenated_string] = STATE(2793), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2793), + [sym_new_expression] = STATE(2793), + [sym_delete_expression] = STATE(2793), + [sym_lambda_expression] = STATE(2793), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6611), + [sym_raw_string_literal] = ACTIONS(6661), [anon_sym_LPAREN] = ACTIONS(1087), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), @@ -104440,33 +105087,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6611), - [sym_char_literal] = ACTIONS(6611), + [sym_number_literal] = ACTIONS(6661), + [sym_char_literal] = ACTIONS(6661), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6613), - [sym_false] = ACTIONS(6613), - [sym_null] = ACTIONS(6613), + [sym_true] = ACTIONS(6663), + [sym_false] = ACTIONS(6663), + [sym_null] = ACTIONS(6663), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6663), }, - [2627] = { - [sym_compound_statement] = STATE(2773), - [sym_labeled_statement] = STATE(2773), - [sym_expression_statement] = STATE(2773), - [sym_if_statement] = STATE(2773), - [sym_switch_statement] = STATE(2773), - [sym_case_statement] = STATE(2773), - [sym_while_statement] = STATE(2773), - [sym_do_statement] = STATE(2773), - [sym_for_statement] = STATE(2773), - [sym_return_statement] = STATE(2773), - [sym_break_statement] = STATE(2773), - [sym_continue_statement] = STATE(2773), - [sym_goto_statement] = STATE(2773), + [2642] = { + [sym_compound_statement] = STATE(2794), + [sym_labeled_statement] = STATE(2794), + [sym_expression_statement] = STATE(2794), + [sym_if_statement] = STATE(2794), + [sym_switch_statement] = STATE(2794), + [sym_case_statement] = STATE(2794), + [sym_while_statement] = STATE(2794), + [sym_do_statement] = STATE(2794), + [sym_for_statement] = STATE(2794), + [sym_return_statement] = STATE(2794), + [sym_break_statement] = STATE(2794), + [sym_continue_statement] = STATE(2794), + [sym_goto_statement] = STATE(2794), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -104488,7 +105135,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2773), + [sym_for_range_loop] = STATE(2794), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -104527,93 +105174,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2628] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6615), + [2643] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6665), [sym_comment] = ACTIONS(49), }, - [2629] = { + [2644] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2776), + [aux_sym_for_statement_repeat1] = STATE(2797), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6615), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6665), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2630] = { - [sym__type_specifier] = STATE(2778), - [sym_sized_type_specifier] = STATE(2778), - [sym_enum_specifier] = STATE(2778), - [sym_struct_specifier] = STATE(2778), - [sym_union_specifier] = STATE(2778), - [sym_macro_type_specifier] = STATE(2778), - [sym_class_specifier] = STATE(2778), - [sym_dependent_type] = STATE(2778), + [2645] = { + [sym__type_specifier] = STATE(2799), + [sym_sized_type_specifier] = STATE(2799), + [sym_enum_specifier] = STATE(2799), + [sym_struct_specifier] = STATE(2799), + [sym_union_specifier] = STATE(2799), + [sym_macro_type_specifier] = STATE(2799), + [sym_class_specifier] = STATE(2799), + [sym_dependent_type] = STATE(2799), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2779), - [anon_sym_unsigned] = ACTIONS(6617), - [anon_sym_long] = ACTIONS(6617), - [anon_sym_short] = ACTIONS(6617), - [sym_primitive_type] = ACTIONS(6619), + [aux_sym_sized_type_specifier_repeat1] = STATE(2800), + [anon_sym_unsigned] = ACTIONS(6667), + [anon_sym_long] = ACTIONS(6667), + [anon_sym_short] = ACTIONS(6667), + [sym_primitive_type] = ACTIONS(6669), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(6619), - [anon_sym_typename] = ACTIONS(6621), + [sym_auto] = ACTIONS(6669), + [anon_sym_typename] = ACTIONS(6671), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2631] = { - [sym_type_qualifier] = STATE(2780), - [sym_trailing_return_type] = STATE(2780), - [aux_sym_function_declarator_repeat1] = STATE(2780), + [2646] = { + [sym_type_qualifier] = STATE(2801), + [sym_trailing_return_type] = STATE(2801), + [aux_sym_function_declarator_repeat1] = STATE(2801), [anon_sym_LPAREN] = ACTIONS(1596), [anon_sym_COMMA] = ACTIONS(1596), [anon_sym_SEMI] = ACTIONS(1596), @@ -104628,68 +105275,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), [anon_sym_COLON] = ACTIONS(1596), - [anon_sym_DASH_GT] = ACTIONS(6313), + [anon_sym_DASH_GT] = ACTIONS(6347), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6623), + [sym_noexcept] = ACTIONS(6673), }, - [2632] = { - [sym_raw_string_literal] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [2647] = { + [sym_raw_string_literal] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [2633] = { - [sym__expression] = STATE(2781), - [sym_conditional_expression] = STATE(2781), - [sym_assignment_expression] = STATE(2781), - [sym_pointer_expression] = STATE(2781), - [sym_logical_expression] = STATE(2781), - [sym_bitwise_expression] = STATE(2781), - [sym_equality_expression] = STATE(2781), - [sym_relational_expression] = STATE(2781), - [sym_shift_expression] = STATE(2781), - [sym_math_expression] = STATE(2781), - [sym_cast_expression] = STATE(2781), - [sym_sizeof_expression] = STATE(2781), - [sym_subscript_expression] = STATE(2781), - [sym_call_expression] = STATE(2781), - [sym_field_expression] = STATE(2781), - [sym_compound_literal_expression] = STATE(2781), - [sym_parenthesized_expression] = STATE(2781), - [sym_concatenated_string] = STATE(2781), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2781), - [sym_new_expression] = STATE(2781), - [sym_delete_expression] = STATE(2781), - [sym_lambda_expression] = STATE(2781), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6625), + [2648] = { + [sym__expression] = STATE(2802), + [sym_conditional_expression] = STATE(2802), + [sym_assignment_expression] = STATE(2802), + [sym_pointer_expression] = STATE(2802), + [sym_logical_expression] = STATE(2802), + [sym_bitwise_expression] = STATE(2802), + [sym_equality_expression] = STATE(2802), + [sym_relational_expression] = STATE(2802), + [sym_shift_expression] = STATE(2802), + [sym_math_expression] = STATE(2802), + [sym_cast_expression] = STATE(2802), + [sym_sizeof_expression] = STATE(2802), + [sym_subscript_expression] = STATE(2802), + [sym_call_expression] = STATE(2802), + [sym_field_expression] = STATE(2802), + [sym_compound_literal_expression] = STATE(2802), + [sym_parenthesized_expression] = STATE(2802), + [sym_concatenated_string] = STATE(2802), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2802), + [sym_new_expression] = STATE(2802), + [sym_delete_expression] = STATE(2802), + [sym_lambda_expression] = STATE(2802), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6675), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6615), + [anon_sym_RPAREN] = ACTIONS(6665), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -104700,33 +105347,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6625), - [sym_char_literal] = ACTIONS(6625), + [sym_number_literal] = ACTIONS(6675), + [sym_char_literal] = ACTIONS(6675), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6627), - [sym_false] = ACTIONS(6627), - [sym_null] = ACTIONS(6627), + [sym_true] = ACTIONS(6677), + [sym_false] = ACTIONS(6677), + [sym_null] = ACTIONS(6677), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6627), + [sym_nullptr] = ACTIONS(6677), }, - [2634] = { - [sym_compound_statement] = STATE(2782), - [sym_labeled_statement] = STATE(2782), - [sym_expression_statement] = STATE(2782), - [sym_if_statement] = STATE(2782), - [sym_switch_statement] = STATE(2782), - [sym_case_statement] = STATE(2782), - [sym_while_statement] = STATE(2782), - [sym_do_statement] = STATE(2782), - [sym_for_statement] = STATE(2782), - [sym_return_statement] = STATE(2782), - [sym_break_statement] = STATE(2782), - [sym_continue_statement] = STATE(2782), - [sym_goto_statement] = STATE(2782), + [2649] = { + [sym_compound_statement] = STATE(2803), + [sym_labeled_statement] = STATE(2803), + [sym_expression_statement] = STATE(2803), + [sym_if_statement] = STATE(2803), + [sym_switch_statement] = STATE(2803), + [sym_case_statement] = STATE(2803), + [sym_while_statement] = STATE(2803), + [sym_do_statement] = STATE(2803), + [sym_for_statement] = STATE(2803), + [sym_return_statement] = STATE(2803), + [sym_break_statement] = STATE(2803), + [sym_continue_statement] = STATE(2803), + [sym_goto_statement] = STATE(2803), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -104748,7 +105395,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2782), + [sym_for_range_loop] = STATE(2803), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -104787,107 +105434,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2635] = { - [sym_field_declaration_list] = STATE(1360), - [sym__class_name] = STATE(2783), - [sym_base_class_clause] = STATE(1362), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [2650] = { + [sym_field_declaration_list] = STATE(1361), + [sym__class_name] = STATE(2804), + [sym_base_class_clause] = STATE(1363), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2636] = { - [sym_field_declaration_list] = STATE(1365), - [sym__class_name] = STATE(2784), - [sym_base_class_clause] = STATE(1367), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [2651] = { + [sym_field_declaration_list] = STATE(1366), + [sym__class_name] = STATE(2805), + [sym_base_class_clause] = STATE(1368), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2637] = { - [sym_field_declaration_list] = STATE(1371), - [sym__class_name] = STATE(2785), - [sym_base_class_clause] = STATE(1373), - [sym_template_type] = STATE(1363), - [sym_scoped_type_identifier] = STATE(1364), + [2652] = { + [sym_field_declaration_list] = STATE(1372), + [sym__class_name] = STATE(2806), + [sym_base_class_clause] = STATE(1374), + [sym_template_type] = STATE(1364), + [sym_scoped_type_identifier] = STATE(1365), [sym_scoped_namespace_identifier] = STATE(827), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_COLON] = ACTIONS(131), - [sym_identifier] = ACTIONS(2829), + [sym_identifier] = ACTIONS(2831), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2638] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [2653] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2640), - [anon_sym_unsigned] = ACTIONS(6327), - [anon_sym_long] = ACTIONS(6327), - [anon_sym_short] = ACTIONS(6327), - [sym_primitive_type] = ACTIONS(2835), - [anon_sym_enum] = ACTIONS(1831), - [anon_sym_struct] = ACTIONS(6331), - [anon_sym_union] = ACTIONS(6333), + [aux_sym_sized_type_specifier_repeat1] = STATE(2655), + [anon_sym_unsigned] = ACTIONS(6361), + [anon_sym_long] = ACTIONS(6361), + [anon_sym_short] = ACTIONS(6361), + [sym_primitive_type] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(1833), + [anon_sym_struct] = ACTIONS(6365), + [anon_sym_union] = ACTIONS(6367), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6335), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(6337), + [anon_sym_class] = ACTIONS(6369), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(6371), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2639] = { - [sym__abstract_declarator] = STATE(2788), - [sym_abstract_pointer_declarator] = STATE(2788), - [sym_abstract_function_declarator] = STATE(2788), - [sym_abstract_array_declarator] = STATE(2788), - [sym_parameter_list] = STATE(2789), - [sym_abstract_reference_declarator] = STATE(2788), + [2654] = { + [sym__abstract_declarator] = STATE(2809), + [sym_abstract_pointer_declarator] = STATE(2809), + [sym_abstract_function_declarator] = STATE(2809), + [sym_abstract_array_declarator] = STATE(2809), + [sym_parameter_list] = STATE(2810), + [sym_abstract_reference_declarator] = STATE(2809), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(6679), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(6631), - [anon_sym_AMP_AMP] = ACTIONS(6633), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(6681), + [anon_sym_AMP_AMP] = ACTIONS(6683), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [2640] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2790), + [2655] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2811), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), @@ -104900,106 +105547,106 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(6635), - [anon_sym_long] = ACTIONS(6635), - [anon_sym_short] = ACTIONS(6635), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(6685), + [anon_sym_long] = ACTIONS(6685), + [anon_sym_short] = ACTIONS(6685), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_COLON] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [2641] = { - [sym_type_qualifier] = STATE(2641), - [sym_trailing_return_type] = STATE(2641), - [aux_sym_function_declarator_repeat1] = STATE(2641), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(6637), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6640), + [2656] = { + [sym_type_qualifier] = STATE(2656), + [sym_trailing_return_type] = STATE(2656), + [aux_sym_function_declarator_repeat1] = STATE(2656), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(6687), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6690), }, - [2642] = { - [sym_parameter_list] = STATE(2644), + [2657] = { + [sym_parameter_list] = STATE(2659), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2643] = { - [sym_parameter_list] = STATE(2644), + [2658] = { + [sym_parameter_list] = STATE(2659), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2644] = { - [sym_type_qualifier] = STATE(2791), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2791), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2659] = { + [sym_type_qualifier] = STATE(2812), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2812), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2645] = { - [sym_type_qualifier] = STATE(2792), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2792), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2660] = { + [sym_type_qualifier] = STATE(2813), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2813), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -105007,19 +105654,19 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3641), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3647), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6643), + [sym_noexcept] = ACTIONS(6693), }, - [2646] = { - [sym_type_qualifier] = STATE(2647), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2647), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2661] = { + [sym_type_qualifier] = STATE(2662), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2662), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -105027,335 +105674,335 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(2100), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(2102), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6350), + [sym_noexcept] = ACTIONS(6384), }, - [2647] = { - [sym_type_qualifier] = STATE(2647), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2647), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6645), + [2662] = { + [sym_type_qualifier] = STATE(2662), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2662), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6695), }, - [2648] = { - [anon_sym_COMMA] = ACTIONS(5889), - [anon_sym_GT] = ACTIONS(5889), + [2663] = { + [anon_sym_COMMA] = ACTIONS(5913), + [anon_sym_GT] = ACTIONS(5913), [sym_comment] = ACTIONS(49), }, - [2649] = { - [sym__expression] = STATE(1831), - [sym_conditional_expression] = STATE(1831), - [sym_assignment_expression] = STATE(1831), - [sym_pointer_expression] = STATE(1831), - [sym_logical_expression] = STATE(1831), - [sym_bitwise_expression] = STATE(1831), - [sym_equality_expression] = STATE(1831), - [sym_relational_expression] = STATE(1831), - [sym_shift_expression] = STATE(1831), - [sym_math_expression] = STATE(1831), - [sym_cast_expression] = STATE(1831), - [sym_sizeof_expression] = STATE(1831), - [sym_subscript_expression] = STATE(1831), - [sym_call_expression] = STATE(1831), - [sym_field_expression] = STATE(1831), - [sym_compound_literal_expression] = STATE(1831), - [sym_parenthesized_expression] = STATE(1831), - [sym_initializer_list] = STATE(1832), - [sym_concatenated_string] = STATE(1831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1831), - [sym_new_expression] = STATE(1831), - [sym_delete_expression] = STATE(1831), - [sym_lambda_expression] = STATE(1831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_COMMA] = ACTIONS(5196), + [2664] = { + [sym__expression] = STATE(1834), + [sym_conditional_expression] = STATE(1834), + [sym_assignment_expression] = STATE(1834), + [sym_pointer_expression] = STATE(1834), + [sym_logical_expression] = STATE(1834), + [sym_bitwise_expression] = STATE(1834), + [sym_equality_expression] = STATE(1834), + [sym_relational_expression] = STATE(1834), + [sym_shift_expression] = STATE(1834), + [sym_math_expression] = STATE(1834), + [sym_cast_expression] = STATE(1834), + [sym_sizeof_expression] = STATE(1834), + [sym_subscript_expression] = STATE(1834), + [sym_call_expression] = STATE(1834), + [sym_field_expression] = STATE(1834), + [sym_compound_literal_expression] = STATE(1834), + [sym_parenthesized_expression] = STATE(1834), + [sym_initializer_list] = STATE(1835), + [sym_concatenated_string] = STATE(1834), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1834), + [sym_new_expression] = STATE(1834), + [sym_delete_expression] = STATE(1834), + [sym_lambda_expression] = STATE(1834), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4145), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_COMMA] = ACTIONS(5210), [anon_sym_LBRACE] = ACTIONS(548), - [anon_sym_STAR] = ACTIONS(6648), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_EQ] = ACTIONS(5198), - [anon_sym_QMARK] = ACTIONS(5196), - [anon_sym_STAR_EQ] = ACTIONS(5196), - [anon_sym_SLASH_EQ] = ACTIONS(5196), - [anon_sym_PERCENT_EQ] = ACTIONS(5196), - [anon_sym_PLUS_EQ] = ACTIONS(5196), - [anon_sym_DASH_EQ] = ACTIONS(5196), - [anon_sym_LT_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_GT_EQ] = ACTIONS(5196), - [anon_sym_AMP_EQ] = ACTIONS(5196), - [anon_sym_CARET_EQ] = ACTIONS(5196), - [anon_sym_PIPE_EQ] = ACTIONS(5196), - [anon_sym_AMP] = ACTIONS(6648), - [anon_sym_PIPE_PIPE] = ACTIONS(5196), - [anon_sym_AMP_AMP] = ACTIONS(5196), - [anon_sym_BANG] = ACTIONS(6650), - [anon_sym_PIPE] = ACTIONS(5198), - [anon_sym_CARET] = ACTIONS(5198), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_EQ_EQ] = ACTIONS(5196), - [anon_sym_BANG_EQ] = ACTIONS(5196), - [anon_sym_LT] = ACTIONS(5198), - [anon_sym_GT] = ACTIONS(5198), - [anon_sym_LT_EQ] = ACTIONS(5196), - [anon_sym_GT_EQ] = ACTIONS(5196), - [anon_sym_LT_LT] = ACTIONS(5198), - [anon_sym_GT_GT] = ACTIONS(5198), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_SLASH] = ACTIONS(5198), - [anon_sym_PERCENT] = ACTIONS(5198), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [anon_sym_DOT] = ACTIONS(5196), - [anon_sym_DASH_GT] = ACTIONS(5196), - [sym_number_literal] = ACTIONS(4139), - [sym_char_literal] = ACTIONS(4139), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(4141), - [sym_false] = ACTIONS(4141), - [sym_null] = ACTIONS(4141), + [anon_sym_STAR] = ACTIONS(6698), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_EQ] = ACTIONS(5212), + [anon_sym_QMARK] = ACTIONS(5210), + [anon_sym_STAR_EQ] = ACTIONS(5210), + [anon_sym_SLASH_EQ] = ACTIONS(5210), + [anon_sym_PERCENT_EQ] = ACTIONS(5210), + [anon_sym_PLUS_EQ] = ACTIONS(5210), + [anon_sym_DASH_EQ] = ACTIONS(5210), + [anon_sym_LT_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_GT_EQ] = ACTIONS(5210), + [anon_sym_AMP_EQ] = ACTIONS(5210), + [anon_sym_CARET_EQ] = ACTIONS(5210), + [anon_sym_PIPE_EQ] = ACTIONS(5210), + [anon_sym_AMP] = ACTIONS(6698), + [anon_sym_PIPE_PIPE] = ACTIONS(5210), + [anon_sym_AMP_AMP] = ACTIONS(5210), + [anon_sym_BANG] = ACTIONS(6700), + [anon_sym_PIPE] = ACTIONS(5212), + [anon_sym_CARET] = ACTIONS(5212), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_EQ_EQ] = ACTIONS(5210), + [anon_sym_BANG_EQ] = ACTIONS(5210), + [anon_sym_LT] = ACTIONS(5212), + [anon_sym_GT] = ACTIONS(5212), + [anon_sym_LT_EQ] = ACTIONS(5210), + [anon_sym_GT_EQ] = ACTIONS(5210), + [anon_sym_LT_LT] = ACTIONS(5212), + [anon_sym_GT_GT] = ACTIONS(5212), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_SLASH] = ACTIONS(5212), + [anon_sym_PERCENT] = ACTIONS(5212), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [anon_sym_DOT] = ACTIONS(5210), + [anon_sym_DASH_GT] = ACTIONS(5210), + [sym_number_literal] = ACTIONS(4145), + [sym_char_literal] = ACTIONS(4145), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(4147), + [sym_false] = ACTIONS(4147), + [sym_null] = ACTIONS(4147), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(4141), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(4147), }, - [2650] = { - [sym__expression] = STATE(2793), - [sym_conditional_expression] = STATE(2793), - [sym_assignment_expression] = STATE(2793), - [sym_pointer_expression] = STATE(2793), - [sym_logical_expression] = STATE(2793), - [sym_bitwise_expression] = STATE(2793), - [sym_equality_expression] = STATE(2793), - [sym_relational_expression] = STATE(2793), - [sym_shift_expression] = STATE(2793), - [sym_math_expression] = STATE(2793), - [sym_cast_expression] = STATE(2793), - [sym_sizeof_expression] = STATE(2793), - [sym_subscript_expression] = STATE(2793), - [sym_call_expression] = STATE(2793), - [sym_field_expression] = STATE(2793), - [sym_compound_literal_expression] = STATE(2793), - [sym_parenthesized_expression] = STATE(2793), - [sym_concatenated_string] = STATE(2793), + [2665] = { + [sym__expression] = STATE(2814), + [sym_conditional_expression] = STATE(2814), + [sym_assignment_expression] = STATE(2814), + [sym_pointer_expression] = STATE(2814), + [sym_logical_expression] = STATE(2814), + [sym_bitwise_expression] = STATE(2814), + [sym_equality_expression] = STATE(2814), + [sym_relational_expression] = STATE(2814), + [sym_shift_expression] = STATE(2814), + [sym_math_expression] = STATE(2814), + [sym_cast_expression] = STATE(2814), + [sym_sizeof_expression] = STATE(2814), + [sym_subscript_expression] = STATE(2814), + [sym_call_expression] = STATE(2814), + [sym_field_expression] = STATE(2814), + [sym_compound_literal_expression] = STATE(2814), + [sym_parenthesized_expression] = STATE(2814), + [sym_concatenated_string] = STATE(2814), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2793), - [sym_new_expression] = STATE(2793), - [sym_delete_expression] = STATE(2793), - [sym_lambda_expression] = STATE(2793), + [sym_template_function] = STATE(2814), + [sym_new_expression] = STATE(2814), + [sym_delete_expression] = STATE(2814), + [sym_lambda_expression] = STATE(2814), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6652), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2624), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(6652), - [sym_char_literal] = ACTIONS(6652), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(6654), - [sym_false] = ACTIONS(6654), - [sym_null] = ACTIONS(6654), + [sym_raw_string_literal] = ACTIONS(6702), + [anon_sym_LPAREN] = ACTIONS(2624), + [anon_sym_STAR] = ACTIONS(2624), + [anon_sym_LBRACK] = ACTIONS(2624), + [anon_sym_AMP] = ACTIONS(2626), + [anon_sym_AMP_AMP] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(6702), + [sym_char_literal] = ACTIONS(6702), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(6704), + [sym_false] = ACTIONS(6704), + [sym_null] = ACTIONS(6704), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(6654), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(6704), }, - [2651] = { + [2666] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5222), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5236), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5224), - [anon_sym_QMARK] = ACTIONS(5222), - [anon_sym_STAR_EQ] = ACTIONS(5222), - [anon_sym_SLASH_EQ] = ACTIONS(5222), - [anon_sym_PERCENT_EQ] = ACTIONS(5222), - [anon_sym_PLUS_EQ] = ACTIONS(5222), - [anon_sym_DASH_EQ] = ACTIONS(5222), - [anon_sym_LT_LT_EQ] = ACTIONS(5222), - [anon_sym_GT_GT_EQ] = ACTIONS(5222), - [anon_sym_AMP_EQ] = ACTIONS(5222), - [anon_sym_CARET_EQ] = ACTIONS(5222), - [anon_sym_PIPE_EQ] = ACTIONS(5222), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(5238), + [anon_sym_QMARK] = ACTIONS(5236), + [anon_sym_STAR_EQ] = ACTIONS(5236), + [anon_sym_SLASH_EQ] = ACTIONS(5236), + [anon_sym_PERCENT_EQ] = ACTIONS(5236), + [anon_sym_PLUS_EQ] = ACTIONS(5236), + [anon_sym_DASH_EQ] = ACTIONS(5236), + [anon_sym_LT_LT_EQ] = ACTIONS(5236), + [anon_sym_GT_GT_EQ] = ACTIONS(5236), + [anon_sym_AMP_EQ] = ACTIONS(5236), + [anon_sym_CARET_EQ] = ACTIONS(5236), + [anon_sym_PIPE_EQ] = ACTIONS(5236), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2652] = { - [sym__expression] = STATE(2794), - [sym_conditional_expression] = STATE(2794), - [sym_assignment_expression] = STATE(2794), - [sym_pointer_expression] = STATE(2794), - [sym_logical_expression] = STATE(2794), - [sym_bitwise_expression] = STATE(2794), - [sym_equality_expression] = STATE(2794), - [sym_relational_expression] = STATE(2794), - [sym_shift_expression] = STATE(2794), - [sym_math_expression] = STATE(2794), - [sym_cast_expression] = STATE(2794), - [sym_sizeof_expression] = STATE(2794), - [sym_subscript_expression] = STATE(2794), - [sym_call_expression] = STATE(2794), - [sym_field_expression] = STATE(2794), - [sym_compound_literal_expression] = STATE(2794), - [sym_parenthesized_expression] = STATE(2794), - [sym_concatenated_string] = STATE(2794), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2794), - [sym_new_expression] = STATE(2794), - [sym_delete_expression] = STATE(2794), - [sym_lambda_expression] = STATE(2794), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6656), - [anon_sym_LPAREN] = ACTIONS(3801), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3809), - [anon_sym_DASH] = ACTIONS(3809), - [anon_sym_DASH_DASH] = ACTIONS(3811), - [anon_sym_PLUS_PLUS] = ACTIONS(3811), - [anon_sym_sizeof] = ACTIONS(3813), - [sym_number_literal] = ACTIONS(6656), - [sym_char_literal] = ACTIONS(6656), - [sym_string_literal] = ACTIONS(3815), - [sym_true] = ACTIONS(6658), - [sym_false] = ACTIONS(6658), - [sym_null] = ACTIONS(6658), + [2667] = { + [sym__expression] = STATE(2815), + [sym_conditional_expression] = STATE(2815), + [sym_assignment_expression] = STATE(2815), + [sym_pointer_expression] = STATE(2815), + [sym_logical_expression] = STATE(2815), + [sym_bitwise_expression] = STATE(2815), + [sym_equality_expression] = STATE(2815), + [sym_relational_expression] = STATE(2815), + [sym_shift_expression] = STATE(2815), + [sym_math_expression] = STATE(2815), + [sym_cast_expression] = STATE(2815), + [sym_sizeof_expression] = STATE(2815), + [sym_subscript_expression] = STATE(2815), + [sym_call_expression] = STATE(2815), + [sym_field_expression] = STATE(2815), + [sym_compound_literal_expression] = STATE(2815), + [sym_parenthesized_expression] = STATE(2815), + [sym_concatenated_string] = STATE(2815), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2815), + [sym_new_expression] = STATE(2815), + [sym_delete_expression] = STATE(2815), + [sym_lambda_expression] = STATE(2815), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6706), + [anon_sym_LPAREN] = ACTIONS(3807), + [anon_sym_STAR] = ACTIONS(3809), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(3809), + [anon_sym_BANG] = ACTIONS(3811), + [anon_sym_TILDE] = ACTIONS(3813), + [anon_sym_PLUS] = ACTIONS(3815), + [anon_sym_DASH] = ACTIONS(3815), + [anon_sym_DASH_DASH] = ACTIONS(3817), + [anon_sym_PLUS_PLUS] = ACTIONS(3817), + [anon_sym_sizeof] = ACTIONS(3819), + [sym_number_literal] = ACTIONS(6706), + [sym_char_literal] = ACTIONS(6706), + [sym_string_literal] = ACTIONS(3821), + [sym_true] = ACTIONS(6708), + [sym_false] = ACTIONS(6708), + [sym_null] = ACTIONS(6708), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3819), - [anon_sym_delete] = ACTIONS(3821), - [sym_nullptr] = ACTIONS(6658), + [anon_sym_COLON_COLON] = ACTIONS(3825), + [anon_sym_delete] = ACTIONS(3827), + [sym_nullptr] = ACTIONS(6708), }, - [2653] = { - [sym_parameter_list] = STATE(2655), + [2668] = { + [sym_parameter_list] = STATE(2670), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_GT] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_GT] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2654] = { - [sym_parameter_list] = STATE(2655), + [2669] = { + [sym_parameter_list] = STATE(2670), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3756), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_GT] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_GT] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2655] = { - [sym_type_qualifier] = STATE(2795), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2795), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2670] = { + [sym_type_qualifier] = STATE(2816), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2816), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2656] = { - [sym_type_qualifier] = STATE(2796), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2796), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), + [2671] = { + [sym_type_qualifier] = STATE(2817), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2817), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -105363,80 +106010,80 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3823), + [anon_sym_GT] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3829), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6660), + [sym_noexcept] = ACTIONS(6710), }, - [2657] = { - [sym_parameter_list] = STATE(2659), + [2672] = { + [sym_parameter_list] = STATE(2674), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_RPAREN] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_RPAREN] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2658] = { - [sym_parameter_list] = STATE(2659), + [2673] = { + [sym_parameter_list] = STATE(2674), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_RPAREN] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3756), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_RPAREN] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2659] = { - [sym_type_qualifier] = STATE(2797), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2797), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2674] = { + [sym_type_qualifier] = STATE(2818), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2818), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2660] = { - [sym_type_qualifier] = STATE(2798), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2798), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_RPAREN] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), + [2675] = { + [sym_type_qualifier] = STATE(2819), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2819), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -105444,1509 +106091,1509 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4129), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6662), + [sym_noexcept] = ACTIONS(6712), }, - [2661] = { - [anon_sym_LPAREN] = ACTIONS(4822), - [anon_sym_COMMA] = ACTIONS(4822), - [anon_sym_RPAREN] = ACTIONS(4822), - [anon_sym_SEMI] = ACTIONS(4822), - [anon_sym_LBRACE] = ACTIONS(4822), - [anon_sym_STAR] = ACTIONS(4822), - [anon_sym_LBRACK] = ACTIONS(4822), - [anon_sym_EQ] = ACTIONS(4822), - [anon_sym_const] = ACTIONS(4824), - [anon_sym_restrict] = ACTIONS(4822), - [anon_sym_volatile] = ACTIONS(4822), - [anon_sym__Atomic] = ACTIONS(4822), - [anon_sym_mutable] = ACTIONS(4822), - [anon_sym_explicit] = ACTIONS(4822), - [anon_sym_constexpr] = ACTIONS(4822), - [anon_sym_COLON] = ACTIONS(4822), - [anon_sym_AMP] = ACTIONS(4824), - [anon_sym_AMP_AMP] = ACTIONS(4822), - [anon_sym_GT] = ACTIONS(4822), - [anon_sym_DASH_GT] = ACTIONS(4822), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4822), + [2676] = { + [anon_sym_LPAREN] = ACTIONS(4836), + [anon_sym_COMMA] = ACTIONS(4836), + [anon_sym_RPAREN] = ACTIONS(4836), + [anon_sym_SEMI] = ACTIONS(4836), + [anon_sym_LBRACE] = ACTIONS(4836), + [anon_sym_STAR] = ACTIONS(4836), + [anon_sym_LBRACK] = ACTIONS(4836), + [anon_sym_EQ] = ACTIONS(4836), + [anon_sym_const] = ACTIONS(4838), + [anon_sym_restrict] = ACTIONS(4836), + [anon_sym_volatile] = ACTIONS(4836), + [anon_sym__Atomic] = ACTIONS(4836), + [anon_sym_mutable] = ACTIONS(4836), + [anon_sym_explicit] = ACTIONS(4836), + [anon_sym_constexpr] = ACTIONS(4836), + [anon_sym_COLON] = ACTIONS(4836), + [anon_sym_AMP] = ACTIONS(4838), + [anon_sym_AMP_AMP] = ACTIONS(4836), + [anon_sym_GT] = ACTIONS(4836), + [anon_sym_DASH_GT] = ACTIONS(4836), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4836), }, - [2662] = { - [sym_raw_string_literal] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_goto] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_sizeof] = ACTIONS(3338), - [sym_number_literal] = ACTIONS(3336), - [sym_char_literal] = ACTIONS(3336), - [sym_string_literal] = ACTIONS(3336), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3338), - [sym_nullptr] = ACTIONS(3338), + [2677] = { + [sym_raw_string_literal] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_goto] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_sizeof] = ACTIONS(3344), + [sym_number_literal] = ACTIONS(3342), + [sym_char_literal] = ACTIONS(3342), + [sym_string_literal] = ACTIONS(3342), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3344), + [sym_nullptr] = ACTIONS(3344), }, - [2663] = { - [sym_raw_string_literal] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_sizeof] = ACTIONS(3348), - [sym_number_literal] = ACTIONS(3346), - [sym_char_literal] = ACTIONS(3346), - [sym_string_literal] = ACTIONS(3346), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3348), - [sym_nullptr] = ACTIONS(3348), + [2678] = { + [sym_raw_string_literal] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_sizeof] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3352), + [sym_char_literal] = ACTIONS(3352), + [sym_string_literal] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3354), + [sym_nullptr] = ACTIONS(3354), }, - [2664] = { - [sym_raw_string_literal] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6172), - [anon_sym_LPAREN] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6172), - [sym_preproc_directive] = ACTIONS(6172), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_typedef] = ACTIONS(6172), - [anon_sym_extern] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_static] = ACTIONS(6172), - [anon_sym_register] = ACTIONS(6172), - [anon_sym_inline] = ACTIONS(6172), - [anon_sym_const] = ACTIONS(6172), - [anon_sym_restrict] = ACTIONS(6172), - [anon_sym_volatile] = ACTIONS(6172), - [anon_sym__Atomic] = ACTIONS(6172), - [anon_sym_mutable] = ACTIONS(6172), - [anon_sym_explicit] = ACTIONS(6172), - [anon_sym_constexpr] = ACTIONS(6172), - [anon_sym_unsigned] = ACTIONS(6172), - [anon_sym_long] = ACTIONS(6172), - [anon_sym_short] = ACTIONS(6172), - [sym_primitive_type] = ACTIONS(6172), - [anon_sym_enum] = ACTIONS(6172), - [anon_sym_struct] = ACTIONS(6172), - [anon_sym_union] = ACTIONS(6172), - [anon_sym_if] = ACTIONS(6172), - [anon_sym_switch] = ACTIONS(6172), - [anon_sym_case] = ACTIONS(6172), - [anon_sym_default] = ACTIONS(6172), - [anon_sym_while] = ACTIONS(6172), - [anon_sym_do] = ACTIONS(6172), - [anon_sym_for] = ACTIONS(6172), - [anon_sym_return] = ACTIONS(6172), - [anon_sym_break] = ACTIONS(6172), - [anon_sym_continue] = ACTIONS(6172), - [anon_sym_goto] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6170), - [anon_sym_BANG] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_sizeof] = ACTIONS(6172), - [sym_number_literal] = ACTIONS(6170), - [sym_char_literal] = ACTIONS(6170), - [sym_string_literal] = ACTIONS(6170), - [sym_true] = ACTIONS(6172), - [sym_false] = ACTIONS(6172), - [sym_null] = ACTIONS(6172), - [sym_identifier] = ACTIONS(6172), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6172), - [sym_auto] = ACTIONS(6172), - [anon_sym_typename] = ACTIONS(6172), - [anon_sym_new] = ACTIONS(6172), - [anon_sym_COLON_COLON] = ACTIONS(6170), - [anon_sym_delete] = ACTIONS(6172), - [sym_nullptr] = ACTIONS(6172), + [2679] = { + [sym_raw_string_literal] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6202), + [anon_sym_LPAREN] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6202), + [sym_preproc_directive] = ACTIONS(6202), + [anon_sym_SEMI] = ACTIONS(6200), + [anon_sym_typedef] = ACTIONS(6202), + [anon_sym_extern] = ACTIONS(6202), + [anon_sym_LBRACE] = ACTIONS(6200), + [anon_sym_STAR] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(6200), + [anon_sym_static] = ACTIONS(6202), + [anon_sym_register] = ACTIONS(6202), + [anon_sym_inline] = ACTIONS(6202), + [anon_sym_const] = ACTIONS(6202), + [anon_sym_restrict] = ACTIONS(6202), + [anon_sym_volatile] = ACTIONS(6202), + [anon_sym__Atomic] = ACTIONS(6202), + [anon_sym_mutable] = ACTIONS(6202), + [anon_sym_explicit] = ACTIONS(6202), + [anon_sym_constexpr] = ACTIONS(6202), + [anon_sym_unsigned] = ACTIONS(6202), + [anon_sym_long] = ACTIONS(6202), + [anon_sym_short] = ACTIONS(6202), + [sym_primitive_type] = ACTIONS(6202), + [anon_sym_enum] = ACTIONS(6202), + [anon_sym_struct] = ACTIONS(6202), + [anon_sym_union] = ACTIONS(6202), + [anon_sym_if] = ACTIONS(6202), + [anon_sym_switch] = ACTIONS(6202), + [anon_sym_case] = ACTIONS(6202), + [anon_sym_default] = ACTIONS(6202), + [anon_sym_while] = ACTIONS(6202), + [anon_sym_do] = ACTIONS(6202), + [anon_sym_for] = ACTIONS(6202), + [anon_sym_return] = ACTIONS(6202), + [anon_sym_break] = ACTIONS(6202), + [anon_sym_continue] = ACTIONS(6202), + [anon_sym_goto] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6200), + [anon_sym_BANG] = ACTIONS(6200), + [anon_sym_TILDE] = ACTIONS(6200), + [anon_sym_PLUS] = ACTIONS(6202), + [anon_sym_DASH] = ACTIONS(6202), + [anon_sym_DASH_DASH] = ACTIONS(6200), + [anon_sym_PLUS_PLUS] = ACTIONS(6200), + [anon_sym_sizeof] = ACTIONS(6202), + [sym_number_literal] = ACTIONS(6200), + [sym_char_literal] = ACTIONS(6200), + [sym_string_literal] = ACTIONS(6200), + [sym_true] = ACTIONS(6202), + [sym_false] = ACTIONS(6202), + [sym_null] = ACTIONS(6202), + [sym_identifier] = ACTIONS(6202), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6202), + [sym_auto] = ACTIONS(6202), + [anon_sym_typename] = ACTIONS(6202), + [anon_sym_new] = ACTIONS(6202), + [anon_sym_COLON_COLON] = ACTIONS(6200), + [anon_sym_delete] = ACTIONS(6202), + [sym_nullptr] = ACTIONS(6202), }, - [2665] = { - [sym_raw_string_literal] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6176), - [anon_sym_LPAREN] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6176), - [sym_preproc_directive] = ACTIONS(6176), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_typedef] = ACTIONS(6176), - [anon_sym_extern] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(6174), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_static] = ACTIONS(6176), - [anon_sym_register] = ACTIONS(6176), - [anon_sym_inline] = ACTIONS(6176), - [anon_sym_const] = ACTIONS(6176), - [anon_sym_restrict] = ACTIONS(6176), - [anon_sym_volatile] = ACTIONS(6176), - [anon_sym__Atomic] = ACTIONS(6176), - [anon_sym_mutable] = ACTIONS(6176), - [anon_sym_explicit] = ACTIONS(6176), - [anon_sym_constexpr] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [sym_primitive_type] = ACTIONS(6176), - [anon_sym_enum] = ACTIONS(6176), - [anon_sym_struct] = ACTIONS(6176), - [anon_sym_union] = ACTIONS(6176), - [anon_sym_if] = ACTIONS(6176), - [anon_sym_switch] = ACTIONS(6176), - [anon_sym_case] = ACTIONS(6176), - [anon_sym_default] = ACTIONS(6176), - [anon_sym_while] = ACTIONS(6176), - [anon_sym_do] = ACTIONS(6176), - [anon_sym_for] = ACTIONS(6176), - [anon_sym_return] = ACTIONS(6176), - [anon_sym_break] = ACTIONS(6176), - [anon_sym_continue] = ACTIONS(6176), - [anon_sym_goto] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6174), - [anon_sym_BANG] = ACTIONS(6174), - [anon_sym_TILDE] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_sizeof] = ACTIONS(6176), - [sym_number_literal] = ACTIONS(6174), - [sym_char_literal] = ACTIONS(6174), - [sym_string_literal] = ACTIONS(6174), - [sym_true] = ACTIONS(6176), - [sym_false] = ACTIONS(6176), - [sym_null] = ACTIONS(6176), - [sym_identifier] = ACTIONS(6176), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6176), - [sym_auto] = ACTIONS(6176), - [anon_sym_typename] = ACTIONS(6176), - [anon_sym_new] = ACTIONS(6176), - [anon_sym_COLON_COLON] = ACTIONS(6174), - [anon_sym_delete] = ACTIONS(6176), - [sym_nullptr] = ACTIONS(6176), + [2680] = { + [sym_raw_string_literal] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6206), + [anon_sym_LPAREN] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6206), + [sym_preproc_directive] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6204), + [anon_sym_typedef] = ACTIONS(6206), + [anon_sym_extern] = ACTIONS(6206), + [anon_sym_LBRACE] = ACTIONS(6204), + [anon_sym_STAR] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [anon_sym_static] = ACTIONS(6206), + [anon_sym_register] = ACTIONS(6206), + [anon_sym_inline] = ACTIONS(6206), + [anon_sym_const] = ACTIONS(6206), + [anon_sym_restrict] = ACTIONS(6206), + [anon_sym_volatile] = ACTIONS(6206), + [anon_sym__Atomic] = ACTIONS(6206), + [anon_sym_mutable] = ACTIONS(6206), + [anon_sym_explicit] = ACTIONS(6206), + [anon_sym_constexpr] = ACTIONS(6206), + [anon_sym_unsigned] = ACTIONS(6206), + [anon_sym_long] = ACTIONS(6206), + [anon_sym_short] = ACTIONS(6206), + [sym_primitive_type] = ACTIONS(6206), + [anon_sym_enum] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(6206), + [anon_sym_union] = ACTIONS(6206), + [anon_sym_if] = ACTIONS(6206), + [anon_sym_switch] = ACTIONS(6206), + [anon_sym_case] = ACTIONS(6206), + [anon_sym_default] = ACTIONS(6206), + [anon_sym_while] = ACTIONS(6206), + [anon_sym_do] = ACTIONS(6206), + [anon_sym_for] = ACTIONS(6206), + [anon_sym_return] = ACTIONS(6206), + [anon_sym_break] = ACTIONS(6206), + [anon_sym_continue] = ACTIONS(6206), + [anon_sym_goto] = ACTIONS(6206), + [anon_sym_AMP] = ACTIONS(6204), + [anon_sym_BANG] = ACTIONS(6204), + [anon_sym_TILDE] = ACTIONS(6204), + [anon_sym_PLUS] = ACTIONS(6206), + [anon_sym_DASH] = ACTIONS(6206), + [anon_sym_DASH_DASH] = ACTIONS(6204), + [anon_sym_PLUS_PLUS] = ACTIONS(6204), + [anon_sym_sizeof] = ACTIONS(6206), + [sym_number_literal] = ACTIONS(6204), + [sym_char_literal] = ACTIONS(6204), + [sym_string_literal] = ACTIONS(6204), + [sym_true] = ACTIONS(6206), + [sym_false] = ACTIONS(6206), + [sym_null] = ACTIONS(6206), + [sym_identifier] = ACTIONS(6206), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6206), + [sym_auto] = ACTIONS(6206), + [anon_sym_typename] = ACTIONS(6206), + [anon_sym_new] = ACTIONS(6206), + [anon_sym_COLON_COLON] = ACTIONS(6204), + [anon_sym_delete] = ACTIONS(6206), + [sym_nullptr] = ACTIONS(6206), }, - [2666] = { - [sym_raw_string_literal] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6180), - [anon_sym_LPAREN] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6180), - [sym_preproc_directive] = ACTIONS(6180), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_typedef] = ACTIONS(6180), - [anon_sym_extern] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(6178), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_static] = ACTIONS(6180), - [anon_sym_register] = ACTIONS(6180), - [anon_sym_inline] = ACTIONS(6180), - [anon_sym_const] = ACTIONS(6180), - [anon_sym_restrict] = ACTIONS(6180), - [anon_sym_volatile] = ACTIONS(6180), - [anon_sym__Atomic] = ACTIONS(6180), - [anon_sym_mutable] = ACTIONS(6180), - [anon_sym_explicit] = ACTIONS(6180), - [anon_sym_constexpr] = ACTIONS(6180), - [anon_sym_unsigned] = ACTIONS(6180), - [anon_sym_long] = ACTIONS(6180), - [anon_sym_short] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(6180), - [anon_sym_enum] = ACTIONS(6180), - [anon_sym_struct] = ACTIONS(6180), - [anon_sym_union] = ACTIONS(6180), - [anon_sym_if] = ACTIONS(6180), - [anon_sym_switch] = ACTIONS(6180), - [anon_sym_case] = ACTIONS(6180), - [anon_sym_default] = ACTIONS(6180), - [anon_sym_while] = ACTIONS(6180), - [anon_sym_do] = ACTIONS(6180), - [anon_sym_for] = ACTIONS(6180), - [anon_sym_return] = ACTIONS(6180), - [anon_sym_break] = ACTIONS(6180), - [anon_sym_continue] = ACTIONS(6180), - [anon_sym_goto] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6178), - [anon_sym_BANG] = ACTIONS(6178), - [anon_sym_TILDE] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_sizeof] = ACTIONS(6180), - [sym_number_literal] = ACTIONS(6178), - [sym_char_literal] = ACTIONS(6178), - [sym_string_literal] = ACTIONS(6178), - [sym_true] = ACTIONS(6180), - [sym_false] = ACTIONS(6180), - [sym_null] = ACTIONS(6180), - [sym_identifier] = ACTIONS(6180), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6180), - [sym_auto] = ACTIONS(6180), - [anon_sym_typename] = ACTIONS(6180), - [anon_sym_new] = ACTIONS(6180), - [anon_sym_COLON_COLON] = ACTIONS(6178), - [anon_sym_delete] = ACTIONS(6180), - [sym_nullptr] = ACTIONS(6180), + [2681] = { + [sym_raw_string_literal] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6210), + [anon_sym_LPAREN] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6210), + [sym_preproc_directive] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym_typedef] = ACTIONS(6210), + [anon_sym_extern] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_static] = ACTIONS(6210), + [anon_sym_register] = ACTIONS(6210), + [anon_sym_inline] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6210), + [anon_sym_restrict] = ACTIONS(6210), + [anon_sym_volatile] = ACTIONS(6210), + [anon_sym__Atomic] = ACTIONS(6210), + [anon_sym_mutable] = ACTIONS(6210), + [anon_sym_explicit] = ACTIONS(6210), + [anon_sym_constexpr] = ACTIONS(6210), + [anon_sym_unsigned] = ACTIONS(6210), + [anon_sym_long] = ACTIONS(6210), + [anon_sym_short] = ACTIONS(6210), + [sym_primitive_type] = ACTIONS(6210), + [anon_sym_enum] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(6210), + [anon_sym_union] = ACTIONS(6210), + [anon_sym_if] = ACTIONS(6210), + [anon_sym_switch] = ACTIONS(6210), + [anon_sym_case] = ACTIONS(6210), + [anon_sym_default] = ACTIONS(6210), + [anon_sym_while] = ACTIONS(6210), + [anon_sym_do] = ACTIONS(6210), + [anon_sym_for] = ACTIONS(6210), + [anon_sym_return] = ACTIONS(6210), + [anon_sym_break] = ACTIONS(6210), + [anon_sym_continue] = ACTIONS(6210), + [anon_sym_goto] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6208), + [anon_sym_BANG] = ACTIONS(6208), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_sizeof] = ACTIONS(6210), + [sym_number_literal] = ACTIONS(6208), + [sym_char_literal] = ACTIONS(6208), + [sym_string_literal] = ACTIONS(6208), + [sym_true] = ACTIONS(6210), + [sym_false] = ACTIONS(6210), + [sym_null] = ACTIONS(6210), + [sym_identifier] = ACTIONS(6210), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6210), + [sym_auto] = ACTIONS(6210), + [anon_sym_typename] = ACTIONS(6210), + [anon_sym_new] = ACTIONS(6210), + [anon_sym_COLON_COLON] = ACTIONS(6208), + [anon_sym_delete] = ACTIONS(6210), + [sym_nullptr] = ACTIONS(6210), }, - [2667] = { - [sym_raw_string_literal] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6184), - [sym_preproc_directive] = ACTIONS(6184), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_typedef] = ACTIONS(6184), - [anon_sym_extern] = ACTIONS(6184), - [anon_sym_LBRACE] = ACTIONS(6182), - [anon_sym_STAR] = ACTIONS(6182), - [anon_sym_LBRACK] = ACTIONS(6182), - [anon_sym_static] = ACTIONS(6184), - [anon_sym_register] = ACTIONS(6184), - [anon_sym_inline] = ACTIONS(6184), - [anon_sym_const] = ACTIONS(6184), - [anon_sym_restrict] = ACTIONS(6184), - [anon_sym_volatile] = ACTIONS(6184), - [anon_sym__Atomic] = ACTIONS(6184), - [anon_sym_mutable] = ACTIONS(6184), - [anon_sym_explicit] = ACTIONS(6184), - [anon_sym_constexpr] = ACTIONS(6184), - [anon_sym_unsigned] = ACTIONS(6184), - [anon_sym_long] = ACTIONS(6184), - [anon_sym_short] = ACTIONS(6184), - [sym_primitive_type] = ACTIONS(6184), - [anon_sym_enum] = ACTIONS(6184), - [anon_sym_struct] = ACTIONS(6184), - [anon_sym_union] = ACTIONS(6184), - [anon_sym_if] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_case] = ACTIONS(6184), - [anon_sym_default] = ACTIONS(6184), - [anon_sym_while] = ACTIONS(6184), - [anon_sym_do] = ACTIONS(6184), - [anon_sym_for] = ACTIONS(6184), - [anon_sym_return] = ACTIONS(6184), - [anon_sym_break] = ACTIONS(6184), - [anon_sym_continue] = ACTIONS(6184), - [anon_sym_goto] = ACTIONS(6184), - [anon_sym_AMP] = ACTIONS(6182), - [anon_sym_BANG] = ACTIONS(6182), - [anon_sym_TILDE] = ACTIONS(6182), - [anon_sym_PLUS] = ACTIONS(6184), - [anon_sym_DASH] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6182), - [anon_sym_PLUS_PLUS] = ACTIONS(6182), - [anon_sym_sizeof] = ACTIONS(6184), - [sym_number_literal] = ACTIONS(6182), - [sym_char_literal] = ACTIONS(6182), - [sym_string_literal] = ACTIONS(6182), - [sym_true] = ACTIONS(6184), - [sym_false] = ACTIONS(6184), - [sym_null] = ACTIONS(6184), - [sym_identifier] = ACTIONS(6184), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6184), - [sym_auto] = ACTIONS(6184), - [anon_sym_typename] = ACTIONS(6184), - [anon_sym_new] = ACTIONS(6184), - [anon_sym_COLON_COLON] = ACTIONS(6182), - [anon_sym_delete] = ACTIONS(6184), - [sym_nullptr] = ACTIONS(6184), + [2682] = { + [sym_raw_string_literal] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6214), + [anon_sym_LPAREN] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6214), + [sym_preproc_directive] = ACTIONS(6214), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym_typedef] = ACTIONS(6214), + [anon_sym_extern] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6214), + [anon_sym_register] = ACTIONS(6214), + [anon_sym_inline] = ACTIONS(6214), + [anon_sym_const] = ACTIONS(6214), + [anon_sym_restrict] = ACTIONS(6214), + [anon_sym_volatile] = ACTIONS(6214), + [anon_sym__Atomic] = ACTIONS(6214), + [anon_sym_mutable] = ACTIONS(6214), + [anon_sym_explicit] = ACTIONS(6214), + [anon_sym_constexpr] = ACTIONS(6214), + [anon_sym_unsigned] = ACTIONS(6214), + [anon_sym_long] = ACTIONS(6214), + [anon_sym_short] = ACTIONS(6214), + [sym_primitive_type] = ACTIONS(6214), + [anon_sym_enum] = ACTIONS(6214), + [anon_sym_struct] = ACTIONS(6214), + [anon_sym_union] = ACTIONS(6214), + [anon_sym_if] = ACTIONS(6214), + [anon_sym_switch] = ACTIONS(6214), + [anon_sym_case] = ACTIONS(6214), + [anon_sym_default] = ACTIONS(6214), + [anon_sym_while] = ACTIONS(6214), + [anon_sym_do] = ACTIONS(6214), + [anon_sym_for] = ACTIONS(6214), + [anon_sym_return] = ACTIONS(6214), + [anon_sym_break] = ACTIONS(6214), + [anon_sym_continue] = ACTIONS(6214), + [anon_sym_goto] = ACTIONS(6214), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_BANG] = ACTIONS(6212), + [anon_sym_TILDE] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_DASH_DASH] = ACTIONS(6212), + [anon_sym_PLUS_PLUS] = ACTIONS(6212), + [anon_sym_sizeof] = ACTIONS(6214), + [sym_number_literal] = ACTIONS(6212), + [sym_char_literal] = ACTIONS(6212), + [sym_string_literal] = ACTIONS(6212), + [sym_true] = ACTIONS(6214), + [sym_false] = ACTIONS(6214), + [sym_null] = ACTIONS(6214), + [sym_identifier] = ACTIONS(6214), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6214), + [sym_auto] = ACTIONS(6214), + [anon_sym_typename] = ACTIONS(6214), + [anon_sym_new] = ACTIONS(6214), + [anon_sym_COLON_COLON] = ACTIONS(6212), + [anon_sym_delete] = ACTIONS(6214), + [sym_nullptr] = ACTIONS(6214), }, - [2668] = { - [sym_raw_string_literal] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6188), - [sym_preproc_directive] = ACTIONS(6188), - [anon_sym_SEMI] = ACTIONS(6186), - [anon_sym_typedef] = ACTIONS(6188), - [anon_sym_extern] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6186), - [anon_sym_LBRACK] = ACTIONS(6186), - [anon_sym_static] = ACTIONS(6188), - [anon_sym_register] = ACTIONS(6188), - [anon_sym_inline] = ACTIONS(6188), - [anon_sym_const] = ACTIONS(6188), - [anon_sym_restrict] = ACTIONS(6188), - [anon_sym_volatile] = ACTIONS(6188), - [anon_sym__Atomic] = ACTIONS(6188), - [anon_sym_mutable] = ACTIONS(6188), - [anon_sym_explicit] = ACTIONS(6188), - [anon_sym_constexpr] = ACTIONS(6188), - [anon_sym_unsigned] = ACTIONS(6188), - [anon_sym_long] = ACTIONS(6188), - [anon_sym_short] = ACTIONS(6188), - [sym_primitive_type] = ACTIONS(6188), - [anon_sym_enum] = ACTIONS(6188), - [anon_sym_struct] = ACTIONS(6188), - [anon_sym_union] = ACTIONS(6188), - [anon_sym_if] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_case] = ACTIONS(6188), - [anon_sym_default] = ACTIONS(6188), - [anon_sym_while] = ACTIONS(6188), - [anon_sym_do] = ACTIONS(6188), - [anon_sym_for] = ACTIONS(6188), - [anon_sym_return] = ACTIONS(6188), - [anon_sym_break] = ACTIONS(6188), - [anon_sym_continue] = ACTIONS(6188), - [anon_sym_goto] = ACTIONS(6188), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_TILDE] = ACTIONS(6186), - [anon_sym_PLUS] = ACTIONS(6188), - [anon_sym_DASH] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6186), - [anon_sym_sizeof] = ACTIONS(6188), - [sym_number_literal] = ACTIONS(6186), - [sym_char_literal] = ACTIONS(6186), - [sym_string_literal] = ACTIONS(6186), - [sym_true] = ACTIONS(6188), - [sym_false] = ACTIONS(6188), - [sym_null] = ACTIONS(6188), - [sym_identifier] = ACTIONS(6188), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6188), - [sym_auto] = ACTIONS(6188), - [anon_sym_typename] = ACTIONS(6188), - [anon_sym_new] = ACTIONS(6188), - [anon_sym_COLON_COLON] = ACTIONS(6186), - [anon_sym_delete] = ACTIONS(6188), - [sym_nullptr] = ACTIONS(6188), + [2683] = { + [sym_raw_string_literal] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6218), + [anon_sym_LPAREN] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6218), + [sym_preproc_directive] = ACTIONS(6218), + [anon_sym_SEMI] = ACTIONS(6216), + [anon_sym_typedef] = ACTIONS(6218), + [anon_sym_extern] = ACTIONS(6218), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_STAR] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(6216), + [anon_sym_static] = ACTIONS(6218), + [anon_sym_register] = ACTIONS(6218), + [anon_sym_inline] = ACTIONS(6218), + [anon_sym_const] = ACTIONS(6218), + [anon_sym_restrict] = ACTIONS(6218), + [anon_sym_volatile] = ACTIONS(6218), + [anon_sym__Atomic] = ACTIONS(6218), + [anon_sym_mutable] = ACTIONS(6218), + [anon_sym_explicit] = ACTIONS(6218), + [anon_sym_constexpr] = ACTIONS(6218), + [anon_sym_unsigned] = ACTIONS(6218), + [anon_sym_long] = ACTIONS(6218), + [anon_sym_short] = ACTIONS(6218), + [sym_primitive_type] = ACTIONS(6218), + [anon_sym_enum] = ACTIONS(6218), + [anon_sym_struct] = ACTIONS(6218), + [anon_sym_union] = ACTIONS(6218), + [anon_sym_if] = ACTIONS(6218), + [anon_sym_switch] = ACTIONS(6218), + [anon_sym_case] = ACTIONS(6218), + [anon_sym_default] = ACTIONS(6218), + [anon_sym_while] = ACTIONS(6218), + [anon_sym_do] = ACTIONS(6218), + [anon_sym_for] = ACTIONS(6218), + [anon_sym_return] = ACTIONS(6218), + [anon_sym_break] = ACTIONS(6218), + [anon_sym_continue] = ACTIONS(6218), + [anon_sym_goto] = ACTIONS(6218), + [anon_sym_AMP] = ACTIONS(6216), + [anon_sym_BANG] = ACTIONS(6216), + [anon_sym_TILDE] = ACTIONS(6216), + [anon_sym_PLUS] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(6218), + [anon_sym_DASH_DASH] = ACTIONS(6216), + [anon_sym_PLUS_PLUS] = ACTIONS(6216), + [anon_sym_sizeof] = ACTIONS(6218), + [sym_number_literal] = ACTIONS(6216), + [sym_char_literal] = ACTIONS(6216), + [sym_string_literal] = ACTIONS(6216), + [sym_true] = ACTIONS(6218), + [sym_false] = ACTIONS(6218), + [sym_null] = ACTIONS(6218), + [sym_identifier] = ACTIONS(6218), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6218), + [sym_auto] = ACTIONS(6218), + [anon_sym_typename] = ACTIONS(6218), + [anon_sym_new] = ACTIONS(6218), + [anon_sym_COLON_COLON] = ACTIONS(6216), + [anon_sym_delete] = ACTIONS(6218), + [sym_nullptr] = ACTIONS(6218), }, - [2669] = { - [sym_raw_string_literal] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6192), - [sym_preproc_directive] = ACTIONS(6192), - [anon_sym_SEMI] = ACTIONS(6190), - [anon_sym_typedef] = ACTIONS(6192), - [anon_sym_extern] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(6190), - [anon_sym_static] = ACTIONS(6192), - [anon_sym_register] = ACTIONS(6192), - [anon_sym_inline] = ACTIONS(6192), - [anon_sym_const] = ACTIONS(6192), - [anon_sym_restrict] = ACTIONS(6192), - [anon_sym_volatile] = ACTIONS(6192), - [anon_sym__Atomic] = ACTIONS(6192), - [anon_sym_mutable] = ACTIONS(6192), - [anon_sym_explicit] = ACTIONS(6192), - [anon_sym_constexpr] = ACTIONS(6192), - [anon_sym_unsigned] = ACTIONS(6192), - [anon_sym_long] = ACTIONS(6192), - [anon_sym_short] = ACTIONS(6192), - [sym_primitive_type] = ACTIONS(6192), - [anon_sym_enum] = ACTIONS(6192), - [anon_sym_struct] = ACTIONS(6192), - [anon_sym_union] = ACTIONS(6192), - [anon_sym_if] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_case] = ACTIONS(6192), - [anon_sym_default] = ACTIONS(6192), - [anon_sym_while] = ACTIONS(6192), - [anon_sym_do] = ACTIONS(6192), - [anon_sym_for] = ACTIONS(6192), - [anon_sym_return] = ACTIONS(6192), - [anon_sym_break] = ACTIONS(6192), - [anon_sym_continue] = ACTIONS(6192), - [anon_sym_goto] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_TILDE] = ACTIONS(6190), - [anon_sym_PLUS] = ACTIONS(6192), - [anon_sym_DASH] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6190), - [anon_sym_sizeof] = ACTIONS(6192), - [sym_number_literal] = ACTIONS(6190), - [sym_char_literal] = ACTIONS(6190), - [sym_string_literal] = ACTIONS(6190), - [sym_true] = ACTIONS(6192), - [sym_false] = ACTIONS(6192), - [sym_null] = ACTIONS(6192), - [sym_identifier] = ACTIONS(6192), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6192), - [sym_auto] = ACTIONS(6192), - [anon_sym_typename] = ACTIONS(6192), - [anon_sym_new] = ACTIONS(6192), - [anon_sym_COLON_COLON] = ACTIONS(6190), - [anon_sym_delete] = ACTIONS(6192), - [sym_nullptr] = ACTIONS(6192), + [2684] = { + [sym_raw_string_literal] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6222), + [anon_sym_LPAREN] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6222), + [sym_preproc_directive] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(6220), + [anon_sym_typedef] = ACTIONS(6222), + [anon_sym_extern] = ACTIONS(6222), + [anon_sym_LBRACE] = ACTIONS(6220), + [anon_sym_STAR] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(6220), + [anon_sym_static] = ACTIONS(6222), + [anon_sym_register] = ACTIONS(6222), + [anon_sym_inline] = ACTIONS(6222), + [anon_sym_const] = ACTIONS(6222), + [anon_sym_restrict] = ACTIONS(6222), + [anon_sym_volatile] = ACTIONS(6222), + [anon_sym__Atomic] = ACTIONS(6222), + [anon_sym_mutable] = ACTIONS(6222), + [anon_sym_explicit] = ACTIONS(6222), + [anon_sym_constexpr] = ACTIONS(6222), + [anon_sym_unsigned] = ACTIONS(6222), + [anon_sym_long] = ACTIONS(6222), + [anon_sym_short] = ACTIONS(6222), + [sym_primitive_type] = ACTIONS(6222), + [anon_sym_enum] = ACTIONS(6222), + [anon_sym_struct] = ACTIONS(6222), + [anon_sym_union] = ACTIONS(6222), + [anon_sym_if] = ACTIONS(6222), + [anon_sym_switch] = ACTIONS(6222), + [anon_sym_case] = ACTIONS(6222), + [anon_sym_default] = ACTIONS(6222), + [anon_sym_while] = ACTIONS(6222), + [anon_sym_do] = ACTIONS(6222), + [anon_sym_for] = ACTIONS(6222), + [anon_sym_return] = ACTIONS(6222), + [anon_sym_break] = ACTIONS(6222), + [anon_sym_continue] = ACTIONS(6222), + [anon_sym_goto] = ACTIONS(6222), + [anon_sym_AMP] = ACTIONS(6220), + [anon_sym_BANG] = ACTIONS(6220), + [anon_sym_TILDE] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_DASH_DASH] = ACTIONS(6220), + [anon_sym_PLUS_PLUS] = ACTIONS(6220), + [anon_sym_sizeof] = ACTIONS(6222), + [sym_number_literal] = ACTIONS(6220), + [sym_char_literal] = ACTIONS(6220), + [sym_string_literal] = ACTIONS(6220), + [sym_true] = ACTIONS(6222), + [sym_false] = ACTIONS(6222), + [sym_null] = ACTIONS(6222), + [sym_identifier] = ACTIONS(6222), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6222), + [sym_auto] = ACTIONS(6222), + [anon_sym_typename] = ACTIONS(6222), + [anon_sym_new] = ACTIONS(6222), + [anon_sym_COLON_COLON] = ACTIONS(6220), + [anon_sym_delete] = ACTIONS(6222), + [sym_nullptr] = ACTIONS(6222), }, - [2670] = { - [anon_sym_LF] = ACTIONS(6664), + [2685] = { + [anon_sym_LF] = ACTIONS(6714), [sym_comment] = ACTIONS(83), }, - [2671] = { - [sym_raw_string_literal] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1821), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1823), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1823), - [sym_preproc_directive] = ACTIONS(1823), - [anon_sym_SEMI] = ACTIONS(1821), - [anon_sym_typedef] = ACTIONS(1823), - [anon_sym_extern] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1821), - [anon_sym_STAR] = ACTIONS(1821), - [anon_sym_LBRACK] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1823), - [anon_sym_register] = ACTIONS(1823), - [anon_sym_inline] = ACTIONS(1823), - [anon_sym_const] = ACTIONS(1823), - [anon_sym_restrict] = ACTIONS(1823), - [anon_sym_volatile] = ACTIONS(1823), - [anon_sym__Atomic] = ACTIONS(1823), - [anon_sym_mutable] = ACTIONS(1823), - [anon_sym_explicit] = ACTIONS(1823), - [anon_sym_constexpr] = ACTIONS(1823), - [anon_sym_unsigned] = ACTIONS(1823), - [anon_sym_long] = ACTIONS(1823), - [anon_sym_short] = ACTIONS(1823), - [sym_primitive_type] = ACTIONS(1823), - [anon_sym_enum] = ACTIONS(1823), - [anon_sym_struct] = ACTIONS(1823), - [anon_sym_union] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(1823), - [anon_sym_switch] = ACTIONS(1823), - [anon_sym_case] = ACTIONS(1823), - [anon_sym_default] = ACTIONS(1823), - [anon_sym_while] = ACTIONS(1823), - [anon_sym_do] = ACTIONS(1823), - [anon_sym_for] = ACTIONS(1823), - [anon_sym_return] = ACTIONS(1823), - [anon_sym_break] = ACTIONS(1823), - [anon_sym_continue] = ACTIONS(1823), - [anon_sym_goto] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1821), - [anon_sym_BANG] = ACTIONS(1821), - [anon_sym_TILDE] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(1823), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_DASH_DASH] = ACTIONS(1821), - [anon_sym_PLUS_PLUS] = ACTIONS(1821), - [anon_sym_sizeof] = ACTIONS(1823), - [sym_number_literal] = ACTIONS(1821), - [sym_char_literal] = ACTIONS(1821), - [sym_string_literal] = ACTIONS(1821), - [sym_true] = ACTIONS(1823), - [sym_false] = ACTIONS(1823), - [sym_null] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1823), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1823), - [sym_auto] = ACTIONS(1823), - [anon_sym_typename] = ACTIONS(1823), - [anon_sym_new] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1821), - [anon_sym_delete] = ACTIONS(1823), - [sym_nullptr] = ACTIONS(1823), + [2686] = { + [sym_raw_string_literal] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1823), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1825), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1825), + [sym_preproc_directive] = ACTIONS(1825), + [anon_sym_SEMI] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_inline] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [anon_sym_restrict] = ACTIONS(1825), + [anon_sym_volatile] = ACTIONS(1825), + [anon_sym__Atomic] = ACTIONS(1825), + [anon_sym_mutable] = ACTIONS(1825), + [anon_sym_explicit] = ACTIONS(1825), + [anon_sym_constexpr] = ACTIONS(1825), + [anon_sym_unsigned] = ACTIONS(1825), + [anon_sym_long] = ACTIONS(1825), + [anon_sym_short] = ACTIONS(1825), + [sym_primitive_type] = ACTIONS(1825), + [anon_sym_enum] = ACTIONS(1825), + [anon_sym_struct] = ACTIONS(1825), + [anon_sym_union] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_goto] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1825), + [anon_sym_DASH] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1823), + [anon_sym_sizeof] = ACTIONS(1825), + [sym_number_literal] = ACTIONS(1823), + [sym_char_literal] = ACTIONS(1823), + [sym_string_literal] = ACTIONS(1823), + [sym_true] = ACTIONS(1825), + [sym_false] = ACTIONS(1825), + [sym_null] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1825), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1825), + [sym_auto] = ACTIONS(1825), + [anon_sym_typename] = ACTIONS(1825), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_COLON_COLON] = ACTIONS(1823), + [anon_sym_delete] = ACTIONS(1825), + [sym_nullptr] = ACTIONS(1825), }, - [2672] = { - [anon_sym_LF] = ACTIONS(6666), + [2687] = { + [anon_sym_LF] = ACTIONS(6716), [sym_comment] = ACTIONS(83), }, - [2673] = { - [sym_raw_string_literal] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5383), - [anon_sym_LPAREN] = ACTIONS(5381), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5383), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5383), - [sym_preproc_directive] = ACTIONS(5383), - [anon_sym_SEMI] = ACTIONS(5381), - [anon_sym_typedef] = ACTIONS(5383), - [anon_sym_extern] = ACTIONS(5383), - [anon_sym_LBRACE] = ACTIONS(5381), - [anon_sym_STAR] = ACTIONS(5381), - [anon_sym_LBRACK] = ACTIONS(5381), - [anon_sym_static] = ACTIONS(5383), - [anon_sym_register] = ACTIONS(5383), - [anon_sym_inline] = ACTIONS(5383), - [anon_sym_const] = ACTIONS(5383), - [anon_sym_restrict] = ACTIONS(5383), - [anon_sym_volatile] = ACTIONS(5383), - [anon_sym__Atomic] = ACTIONS(5383), - [anon_sym_mutable] = ACTIONS(5383), - [anon_sym_explicit] = ACTIONS(5383), - [anon_sym_constexpr] = ACTIONS(5383), - [anon_sym_unsigned] = ACTIONS(5383), - [anon_sym_long] = ACTIONS(5383), - [anon_sym_short] = ACTIONS(5383), - [sym_primitive_type] = ACTIONS(5383), - [anon_sym_enum] = ACTIONS(5383), - [anon_sym_struct] = ACTIONS(5383), - [anon_sym_union] = ACTIONS(5383), - [anon_sym_if] = ACTIONS(5383), - [anon_sym_switch] = ACTIONS(5383), - [anon_sym_case] = ACTIONS(5383), - [anon_sym_default] = ACTIONS(5383), - [anon_sym_while] = ACTIONS(5383), - [anon_sym_do] = ACTIONS(5383), - [anon_sym_for] = ACTIONS(5383), - [anon_sym_return] = ACTIONS(5383), - [anon_sym_break] = ACTIONS(5383), - [anon_sym_continue] = ACTIONS(5383), - [anon_sym_goto] = ACTIONS(5383), - [anon_sym_AMP] = ACTIONS(5381), - [anon_sym_BANG] = ACTIONS(5381), - [anon_sym_TILDE] = ACTIONS(5381), - [anon_sym_PLUS] = ACTIONS(5383), - [anon_sym_DASH] = ACTIONS(5383), - [anon_sym_DASH_DASH] = ACTIONS(5381), - [anon_sym_PLUS_PLUS] = ACTIONS(5381), - [anon_sym_sizeof] = ACTIONS(5383), - [sym_number_literal] = ACTIONS(5381), - [sym_char_literal] = ACTIONS(5381), - [sym_string_literal] = ACTIONS(5381), - [sym_true] = ACTIONS(5383), - [sym_false] = ACTIONS(5383), - [sym_null] = ACTIONS(5383), - [sym_identifier] = ACTIONS(5383), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5383), - [sym_auto] = ACTIONS(5383), - [anon_sym_typename] = ACTIONS(5383), - [anon_sym_new] = ACTIONS(5383), - [anon_sym_COLON_COLON] = ACTIONS(5381), - [anon_sym_delete] = ACTIONS(5383), - [sym_nullptr] = ACTIONS(5383), + [2688] = { + [sym_raw_string_literal] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5401), + [anon_sym_LPAREN] = ACTIONS(5399), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5401), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5401), + [sym_preproc_directive] = ACTIONS(5401), + [anon_sym_SEMI] = ACTIONS(5399), + [anon_sym_typedef] = ACTIONS(5401), + [anon_sym_extern] = ACTIONS(5401), + [anon_sym_LBRACE] = ACTIONS(5399), + [anon_sym_STAR] = ACTIONS(5399), + [anon_sym_LBRACK] = ACTIONS(5399), + [anon_sym_static] = ACTIONS(5401), + [anon_sym_register] = ACTIONS(5401), + [anon_sym_inline] = ACTIONS(5401), + [anon_sym_const] = ACTIONS(5401), + [anon_sym_restrict] = ACTIONS(5401), + [anon_sym_volatile] = ACTIONS(5401), + [anon_sym__Atomic] = ACTIONS(5401), + [anon_sym_mutable] = ACTIONS(5401), + [anon_sym_explicit] = ACTIONS(5401), + [anon_sym_constexpr] = ACTIONS(5401), + [anon_sym_unsigned] = ACTIONS(5401), + [anon_sym_long] = ACTIONS(5401), + [anon_sym_short] = ACTIONS(5401), + [sym_primitive_type] = ACTIONS(5401), + [anon_sym_enum] = ACTIONS(5401), + [anon_sym_struct] = ACTIONS(5401), + [anon_sym_union] = ACTIONS(5401), + [anon_sym_if] = ACTIONS(5401), + [anon_sym_switch] = ACTIONS(5401), + [anon_sym_case] = ACTIONS(5401), + [anon_sym_default] = ACTIONS(5401), + [anon_sym_while] = ACTIONS(5401), + [anon_sym_do] = ACTIONS(5401), + [anon_sym_for] = ACTIONS(5401), + [anon_sym_return] = ACTIONS(5401), + [anon_sym_break] = ACTIONS(5401), + [anon_sym_continue] = ACTIONS(5401), + [anon_sym_goto] = ACTIONS(5401), + [anon_sym_AMP] = ACTIONS(5399), + [anon_sym_BANG] = ACTIONS(5399), + [anon_sym_TILDE] = ACTIONS(5399), + [anon_sym_PLUS] = ACTIONS(5401), + [anon_sym_DASH] = ACTIONS(5401), + [anon_sym_DASH_DASH] = ACTIONS(5399), + [anon_sym_PLUS_PLUS] = ACTIONS(5399), + [anon_sym_sizeof] = ACTIONS(5401), + [sym_number_literal] = ACTIONS(5399), + [sym_char_literal] = ACTIONS(5399), + [sym_string_literal] = ACTIONS(5399), + [sym_true] = ACTIONS(5401), + [sym_false] = ACTIONS(5401), + [sym_null] = ACTIONS(5401), + [sym_identifier] = ACTIONS(5401), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5401), + [sym_auto] = ACTIONS(5401), + [anon_sym_typename] = ACTIONS(5401), + [anon_sym_new] = ACTIONS(5401), + [anon_sym_COLON_COLON] = ACTIONS(5399), + [anon_sym_delete] = ACTIONS(5401), + [sym_nullptr] = ACTIONS(5401), }, - [2674] = { - [sym_raw_string_literal] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5387), - [anon_sym_LPAREN] = ACTIONS(5385), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5387), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5387), - [sym_preproc_directive] = ACTIONS(5387), - [anon_sym_SEMI] = ACTIONS(5385), - [anon_sym_typedef] = ACTIONS(5387), - [anon_sym_extern] = ACTIONS(5387), - [anon_sym_LBRACE] = ACTIONS(5385), - [anon_sym_STAR] = ACTIONS(5385), - [anon_sym_LBRACK] = ACTIONS(5385), - [anon_sym_static] = ACTIONS(5387), - [anon_sym_register] = ACTIONS(5387), - [anon_sym_inline] = ACTIONS(5387), - [anon_sym_const] = ACTIONS(5387), - [anon_sym_restrict] = ACTIONS(5387), - [anon_sym_volatile] = ACTIONS(5387), - [anon_sym__Atomic] = ACTIONS(5387), - [anon_sym_mutable] = ACTIONS(5387), - [anon_sym_explicit] = ACTIONS(5387), - [anon_sym_constexpr] = ACTIONS(5387), - [anon_sym_unsigned] = ACTIONS(5387), - [anon_sym_long] = ACTIONS(5387), - [anon_sym_short] = ACTIONS(5387), - [sym_primitive_type] = ACTIONS(5387), - [anon_sym_enum] = ACTIONS(5387), - [anon_sym_struct] = ACTIONS(5387), - [anon_sym_union] = ACTIONS(5387), - [anon_sym_if] = ACTIONS(5387), - [anon_sym_switch] = ACTIONS(5387), - [anon_sym_case] = ACTIONS(5387), - [anon_sym_default] = ACTIONS(5387), - [anon_sym_while] = ACTIONS(5387), - [anon_sym_do] = ACTIONS(5387), - [anon_sym_for] = ACTIONS(5387), - [anon_sym_return] = ACTIONS(5387), - [anon_sym_break] = ACTIONS(5387), - [anon_sym_continue] = ACTIONS(5387), - [anon_sym_goto] = ACTIONS(5387), - [anon_sym_AMP] = ACTIONS(5385), - [anon_sym_BANG] = ACTIONS(5385), - [anon_sym_TILDE] = ACTIONS(5385), - [anon_sym_PLUS] = ACTIONS(5387), - [anon_sym_DASH] = ACTIONS(5387), - [anon_sym_DASH_DASH] = ACTIONS(5385), - [anon_sym_PLUS_PLUS] = ACTIONS(5385), - [anon_sym_sizeof] = ACTIONS(5387), - [sym_number_literal] = ACTIONS(5385), - [sym_char_literal] = ACTIONS(5385), - [sym_string_literal] = ACTIONS(5385), - [sym_true] = ACTIONS(5387), - [sym_false] = ACTIONS(5387), - [sym_null] = ACTIONS(5387), - [sym_identifier] = ACTIONS(5387), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5387), - [sym_auto] = ACTIONS(5387), - [anon_sym_typename] = ACTIONS(5387), - [anon_sym_new] = ACTIONS(5387), - [anon_sym_COLON_COLON] = ACTIONS(5385), - [anon_sym_delete] = ACTIONS(5387), - [sym_nullptr] = ACTIONS(5387), + [2689] = { + [sym_raw_string_literal] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5405), + [anon_sym_LPAREN] = ACTIONS(5403), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5405), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5405), + [sym_preproc_directive] = ACTIONS(5405), + [anon_sym_SEMI] = ACTIONS(5403), + [anon_sym_typedef] = ACTIONS(5405), + [anon_sym_extern] = ACTIONS(5405), + [anon_sym_LBRACE] = ACTIONS(5403), + [anon_sym_STAR] = ACTIONS(5403), + [anon_sym_LBRACK] = ACTIONS(5403), + [anon_sym_static] = ACTIONS(5405), + [anon_sym_register] = ACTIONS(5405), + [anon_sym_inline] = ACTIONS(5405), + [anon_sym_const] = ACTIONS(5405), + [anon_sym_restrict] = ACTIONS(5405), + [anon_sym_volatile] = ACTIONS(5405), + [anon_sym__Atomic] = ACTIONS(5405), + [anon_sym_mutable] = ACTIONS(5405), + [anon_sym_explicit] = ACTIONS(5405), + [anon_sym_constexpr] = ACTIONS(5405), + [anon_sym_unsigned] = ACTIONS(5405), + [anon_sym_long] = ACTIONS(5405), + [anon_sym_short] = ACTIONS(5405), + [sym_primitive_type] = ACTIONS(5405), + [anon_sym_enum] = ACTIONS(5405), + [anon_sym_struct] = ACTIONS(5405), + [anon_sym_union] = ACTIONS(5405), + [anon_sym_if] = ACTIONS(5405), + [anon_sym_switch] = ACTIONS(5405), + [anon_sym_case] = ACTIONS(5405), + [anon_sym_default] = ACTIONS(5405), + [anon_sym_while] = ACTIONS(5405), + [anon_sym_do] = ACTIONS(5405), + [anon_sym_for] = ACTIONS(5405), + [anon_sym_return] = ACTIONS(5405), + [anon_sym_break] = ACTIONS(5405), + [anon_sym_continue] = ACTIONS(5405), + [anon_sym_goto] = ACTIONS(5405), + [anon_sym_AMP] = ACTIONS(5403), + [anon_sym_BANG] = ACTIONS(5403), + [anon_sym_TILDE] = ACTIONS(5403), + [anon_sym_PLUS] = ACTIONS(5405), + [anon_sym_DASH] = ACTIONS(5405), + [anon_sym_DASH_DASH] = ACTIONS(5403), + [anon_sym_PLUS_PLUS] = ACTIONS(5403), + [anon_sym_sizeof] = ACTIONS(5405), + [sym_number_literal] = ACTIONS(5403), + [sym_char_literal] = ACTIONS(5403), + [sym_string_literal] = ACTIONS(5403), + [sym_true] = ACTIONS(5405), + [sym_false] = ACTIONS(5405), + [sym_null] = ACTIONS(5405), + [sym_identifier] = ACTIONS(5405), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5405), + [sym_auto] = ACTIONS(5405), + [anon_sym_typename] = ACTIONS(5405), + [anon_sym_new] = ACTIONS(5405), + [anon_sym_COLON_COLON] = ACTIONS(5403), + [anon_sym_delete] = ACTIONS(5405), + [sym_nullptr] = ACTIONS(5405), }, - [2675] = { - [sym_raw_string_literal] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5397), - [anon_sym_LPAREN] = ACTIONS(5395), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5397), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5397), - [sym_preproc_directive] = ACTIONS(5397), - [anon_sym_SEMI] = ACTIONS(5395), - [anon_sym_typedef] = ACTIONS(5397), - [anon_sym_extern] = ACTIONS(5397), - [anon_sym_LBRACE] = ACTIONS(5395), - [anon_sym_STAR] = ACTIONS(5395), - [anon_sym_LBRACK] = ACTIONS(5395), - [anon_sym_static] = ACTIONS(5397), - [anon_sym_register] = ACTIONS(5397), - [anon_sym_inline] = ACTIONS(5397), - [anon_sym_const] = ACTIONS(5397), - [anon_sym_restrict] = ACTIONS(5397), - [anon_sym_volatile] = ACTIONS(5397), - [anon_sym__Atomic] = ACTIONS(5397), - [anon_sym_mutable] = ACTIONS(5397), - [anon_sym_explicit] = ACTIONS(5397), - [anon_sym_constexpr] = ACTIONS(5397), - [anon_sym_unsigned] = ACTIONS(5397), - [anon_sym_long] = ACTIONS(5397), - [anon_sym_short] = ACTIONS(5397), - [sym_primitive_type] = ACTIONS(5397), - [anon_sym_enum] = ACTIONS(5397), - [anon_sym_struct] = ACTIONS(5397), - [anon_sym_union] = ACTIONS(5397), - [anon_sym_if] = ACTIONS(5397), - [anon_sym_switch] = ACTIONS(5397), - [anon_sym_case] = ACTIONS(5397), - [anon_sym_default] = ACTIONS(5397), - [anon_sym_while] = ACTIONS(5397), - [anon_sym_do] = ACTIONS(5397), - [anon_sym_for] = ACTIONS(5397), - [anon_sym_return] = ACTIONS(5397), - [anon_sym_break] = ACTIONS(5397), - [anon_sym_continue] = ACTIONS(5397), - [anon_sym_goto] = ACTIONS(5397), - [anon_sym_AMP] = ACTIONS(5395), - [anon_sym_BANG] = ACTIONS(5395), - [anon_sym_TILDE] = ACTIONS(5395), - [anon_sym_PLUS] = ACTIONS(5397), - [anon_sym_DASH] = ACTIONS(5397), - [anon_sym_DASH_DASH] = ACTIONS(5395), - [anon_sym_PLUS_PLUS] = ACTIONS(5395), - [anon_sym_sizeof] = ACTIONS(5397), - [sym_number_literal] = ACTIONS(5395), - [sym_char_literal] = ACTIONS(5395), - [sym_string_literal] = ACTIONS(5395), - [sym_true] = ACTIONS(5397), - [sym_false] = ACTIONS(5397), - [sym_null] = ACTIONS(5397), - [sym_identifier] = ACTIONS(5397), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5397), - [sym_auto] = ACTIONS(5397), - [anon_sym_typename] = ACTIONS(5397), - [anon_sym_new] = ACTIONS(5397), - [anon_sym_COLON_COLON] = ACTIONS(5395), - [anon_sym_delete] = ACTIONS(5397), - [sym_nullptr] = ACTIONS(5397), + [2690] = { + [sym_raw_string_literal] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5415), + [anon_sym_LPAREN] = ACTIONS(5413), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5415), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5415), + [sym_preproc_directive] = ACTIONS(5415), + [anon_sym_SEMI] = ACTIONS(5413), + [anon_sym_typedef] = ACTIONS(5415), + [anon_sym_extern] = ACTIONS(5415), + [anon_sym_LBRACE] = ACTIONS(5413), + [anon_sym_STAR] = ACTIONS(5413), + [anon_sym_LBRACK] = ACTIONS(5413), + [anon_sym_static] = ACTIONS(5415), + [anon_sym_register] = ACTIONS(5415), + [anon_sym_inline] = ACTIONS(5415), + [anon_sym_const] = ACTIONS(5415), + [anon_sym_restrict] = ACTIONS(5415), + [anon_sym_volatile] = ACTIONS(5415), + [anon_sym__Atomic] = ACTIONS(5415), + [anon_sym_mutable] = ACTIONS(5415), + [anon_sym_explicit] = ACTIONS(5415), + [anon_sym_constexpr] = ACTIONS(5415), + [anon_sym_unsigned] = ACTIONS(5415), + [anon_sym_long] = ACTIONS(5415), + [anon_sym_short] = ACTIONS(5415), + [sym_primitive_type] = ACTIONS(5415), + [anon_sym_enum] = ACTIONS(5415), + [anon_sym_struct] = ACTIONS(5415), + [anon_sym_union] = ACTIONS(5415), + [anon_sym_if] = ACTIONS(5415), + [anon_sym_switch] = ACTIONS(5415), + [anon_sym_case] = ACTIONS(5415), + [anon_sym_default] = ACTIONS(5415), + [anon_sym_while] = ACTIONS(5415), + [anon_sym_do] = ACTIONS(5415), + [anon_sym_for] = ACTIONS(5415), + [anon_sym_return] = ACTIONS(5415), + [anon_sym_break] = ACTIONS(5415), + [anon_sym_continue] = ACTIONS(5415), + [anon_sym_goto] = ACTIONS(5415), + [anon_sym_AMP] = ACTIONS(5413), + [anon_sym_BANG] = ACTIONS(5413), + [anon_sym_TILDE] = ACTIONS(5413), + [anon_sym_PLUS] = ACTIONS(5415), + [anon_sym_DASH] = ACTIONS(5415), + [anon_sym_DASH_DASH] = ACTIONS(5413), + [anon_sym_PLUS_PLUS] = ACTIONS(5413), + [anon_sym_sizeof] = ACTIONS(5415), + [sym_number_literal] = ACTIONS(5413), + [sym_char_literal] = ACTIONS(5413), + [sym_string_literal] = ACTIONS(5413), + [sym_true] = ACTIONS(5415), + [sym_false] = ACTIONS(5415), + [sym_null] = ACTIONS(5415), + [sym_identifier] = ACTIONS(5415), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5415), + [sym_auto] = ACTIONS(5415), + [anon_sym_typename] = ACTIONS(5415), + [anon_sym_new] = ACTIONS(5415), + [anon_sym_COLON_COLON] = ACTIONS(5413), + [anon_sym_delete] = ACTIONS(5415), + [sym_nullptr] = ACTIONS(5415), }, - [2676] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6668), + [2691] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6718), [sym_comment] = ACTIONS(49), }, - [2677] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6670), + [2692] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6720), [sym_comment] = ACTIONS(49), }, - [2678] = { - [sym_raw_string_literal] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5476), - [anon_sym_LPAREN] = ACTIONS(5474), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5476), - [sym_preproc_directive] = ACTIONS(5476), - [anon_sym_SEMI] = ACTIONS(5474), - [anon_sym_typedef] = ACTIONS(5476), - [anon_sym_extern] = ACTIONS(5476), - [anon_sym_LBRACE] = ACTIONS(5474), - [anon_sym_STAR] = ACTIONS(5474), - [anon_sym_LBRACK] = ACTIONS(5474), - [anon_sym_static] = ACTIONS(5476), - [anon_sym_register] = ACTIONS(5476), - [anon_sym_inline] = ACTIONS(5476), - [anon_sym_const] = ACTIONS(5476), - [anon_sym_restrict] = ACTIONS(5476), - [anon_sym_volatile] = ACTIONS(5476), - [anon_sym__Atomic] = ACTIONS(5476), - [anon_sym_mutable] = ACTIONS(5476), - [anon_sym_explicit] = ACTIONS(5476), - [anon_sym_constexpr] = ACTIONS(5476), - [anon_sym_unsigned] = ACTIONS(5476), - [anon_sym_long] = ACTIONS(5476), - [anon_sym_short] = ACTIONS(5476), - [sym_primitive_type] = ACTIONS(5476), - [anon_sym_enum] = ACTIONS(5476), - [anon_sym_struct] = ACTIONS(5476), - [anon_sym_union] = ACTIONS(5476), - [anon_sym_if] = ACTIONS(5476), - [anon_sym_switch] = ACTIONS(5476), - [anon_sym_case] = ACTIONS(5476), - [anon_sym_default] = ACTIONS(5476), - [anon_sym_while] = ACTIONS(5476), - [anon_sym_do] = ACTIONS(5476), - [anon_sym_for] = ACTIONS(5476), - [anon_sym_return] = ACTIONS(5476), - [anon_sym_break] = ACTIONS(5476), - [anon_sym_continue] = ACTIONS(5476), - [anon_sym_goto] = ACTIONS(5476), - [anon_sym_AMP] = ACTIONS(5474), - [anon_sym_BANG] = ACTIONS(5474), - [anon_sym_TILDE] = ACTIONS(5474), - [anon_sym_PLUS] = ACTIONS(5476), - [anon_sym_DASH] = ACTIONS(5476), - [anon_sym_DASH_DASH] = ACTIONS(5474), - [anon_sym_PLUS_PLUS] = ACTIONS(5474), - [anon_sym_sizeof] = ACTIONS(5476), - [sym_number_literal] = ACTIONS(5474), - [sym_char_literal] = ACTIONS(5474), - [sym_string_literal] = ACTIONS(5474), - [sym_true] = ACTIONS(5476), - [sym_false] = ACTIONS(5476), - [sym_null] = ACTIONS(5476), - [sym_identifier] = ACTIONS(5476), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5476), - [sym_auto] = ACTIONS(5476), - [anon_sym_typename] = ACTIONS(5476), - [anon_sym_new] = ACTIONS(5476), - [anon_sym_COLON_COLON] = ACTIONS(5474), - [anon_sym_delete] = ACTIONS(5476), - [sym_nullptr] = ACTIONS(5476), + [2693] = { + [sym_raw_string_literal] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5494), + [anon_sym_LPAREN] = ACTIONS(5492), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5494), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5494), + [sym_preproc_directive] = ACTIONS(5494), + [anon_sym_SEMI] = ACTIONS(5492), + [anon_sym_typedef] = ACTIONS(5494), + [anon_sym_extern] = ACTIONS(5494), + [anon_sym_LBRACE] = ACTIONS(5492), + [anon_sym_STAR] = ACTIONS(5492), + [anon_sym_LBRACK] = ACTIONS(5492), + [anon_sym_static] = ACTIONS(5494), + [anon_sym_register] = ACTIONS(5494), + [anon_sym_inline] = ACTIONS(5494), + [anon_sym_const] = ACTIONS(5494), + [anon_sym_restrict] = ACTIONS(5494), + [anon_sym_volatile] = ACTIONS(5494), + [anon_sym__Atomic] = ACTIONS(5494), + [anon_sym_mutable] = ACTIONS(5494), + [anon_sym_explicit] = ACTIONS(5494), + [anon_sym_constexpr] = ACTIONS(5494), + [anon_sym_unsigned] = ACTIONS(5494), + [anon_sym_long] = ACTIONS(5494), + [anon_sym_short] = ACTIONS(5494), + [sym_primitive_type] = ACTIONS(5494), + [anon_sym_enum] = ACTIONS(5494), + [anon_sym_struct] = ACTIONS(5494), + [anon_sym_union] = ACTIONS(5494), + [anon_sym_if] = ACTIONS(5494), + [anon_sym_switch] = ACTIONS(5494), + [anon_sym_case] = ACTIONS(5494), + [anon_sym_default] = ACTIONS(5494), + [anon_sym_while] = ACTIONS(5494), + [anon_sym_do] = ACTIONS(5494), + [anon_sym_for] = ACTIONS(5494), + [anon_sym_return] = ACTIONS(5494), + [anon_sym_break] = ACTIONS(5494), + [anon_sym_continue] = ACTIONS(5494), + [anon_sym_goto] = ACTIONS(5494), + [anon_sym_AMP] = ACTIONS(5492), + [anon_sym_BANG] = ACTIONS(5492), + [anon_sym_TILDE] = ACTIONS(5492), + [anon_sym_PLUS] = ACTIONS(5494), + [anon_sym_DASH] = ACTIONS(5494), + [anon_sym_DASH_DASH] = ACTIONS(5492), + [anon_sym_PLUS_PLUS] = ACTIONS(5492), + [anon_sym_sizeof] = ACTIONS(5494), + [sym_number_literal] = ACTIONS(5492), + [sym_char_literal] = ACTIONS(5492), + [sym_string_literal] = ACTIONS(5492), + [sym_true] = ACTIONS(5494), + [sym_false] = ACTIONS(5494), + [sym_null] = ACTIONS(5494), + [sym_identifier] = ACTIONS(5494), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5494), + [sym_auto] = ACTIONS(5494), + [anon_sym_typename] = ACTIONS(5494), + [anon_sym_new] = ACTIONS(5494), + [anon_sym_COLON_COLON] = ACTIONS(5492), + [anon_sym_delete] = ACTIONS(5494), + [sym_nullptr] = ACTIONS(5494), }, - [2679] = { - [sym_raw_string_literal] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5480), - [anon_sym_LPAREN] = ACTIONS(5478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5480), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5480), - [sym_preproc_directive] = ACTIONS(5480), - [anon_sym_SEMI] = ACTIONS(5478), - [anon_sym_typedef] = ACTIONS(5480), - [anon_sym_extern] = ACTIONS(5480), - [anon_sym_LBRACE] = ACTIONS(5478), - [anon_sym_STAR] = ACTIONS(5478), - [anon_sym_LBRACK] = ACTIONS(5478), - [anon_sym_static] = ACTIONS(5480), - [anon_sym_register] = ACTIONS(5480), - [anon_sym_inline] = ACTIONS(5480), - [anon_sym_const] = ACTIONS(5480), - [anon_sym_restrict] = ACTIONS(5480), - [anon_sym_volatile] = ACTIONS(5480), - [anon_sym__Atomic] = ACTIONS(5480), - [anon_sym_mutable] = ACTIONS(5480), - [anon_sym_explicit] = ACTIONS(5480), - [anon_sym_constexpr] = ACTIONS(5480), - [anon_sym_unsigned] = ACTIONS(5480), - [anon_sym_long] = ACTIONS(5480), - [anon_sym_short] = ACTIONS(5480), - [sym_primitive_type] = ACTIONS(5480), - [anon_sym_enum] = ACTIONS(5480), - [anon_sym_struct] = ACTIONS(5480), - [anon_sym_union] = ACTIONS(5480), - [anon_sym_if] = ACTIONS(5480), - [anon_sym_switch] = ACTIONS(5480), - [anon_sym_case] = ACTIONS(5480), - [anon_sym_default] = ACTIONS(5480), - [anon_sym_while] = ACTIONS(5480), - [anon_sym_do] = ACTIONS(5480), - [anon_sym_for] = ACTIONS(5480), - [anon_sym_return] = ACTIONS(5480), - [anon_sym_break] = ACTIONS(5480), - [anon_sym_continue] = ACTIONS(5480), - [anon_sym_goto] = ACTIONS(5480), - [anon_sym_AMP] = ACTIONS(5478), - [anon_sym_BANG] = ACTIONS(5478), - [anon_sym_TILDE] = ACTIONS(5478), - [anon_sym_PLUS] = ACTIONS(5480), - [anon_sym_DASH] = ACTIONS(5480), - [anon_sym_DASH_DASH] = ACTIONS(5478), - [anon_sym_PLUS_PLUS] = ACTIONS(5478), - [anon_sym_sizeof] = ACTIONS(5480), - [sym_number_literal] = ACTIONS(5478), - [sym_char_literal] = ACTIONS(5478), - [sym_string_literal] = ACTIONS(5478), - [sym_true] = ACTIONS(5480), - [sym_false] = ACTIONS(5480), - [sym_null] = ACTIONS(5480), - [sym_identifier] = ACTIONS(5480), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5480), - [sym_auto] = ACTIONS(5480), - [anon_sym_typename] = ACTIONS(5480), - [anon_sym_new] = ACTIONS(5480), - [anon_sym_COLON_COLON] = ACTIONS(5478), - [anon_sym_delete] = ACTIONS(5480), - [sym_nullptr] = ACTIONS(5480), + [2694] = { + [sym_raw_string_literal] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5498), + [anon_sym_LPAREN] = ACTIONS(5496), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5498), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5498), + [sym_preproc_directive] = ACTIONS(5498), + [anon_sym_SEMI] = ACTIONS(5496), + [anon_sym_typedef] = ACTIONS(5498), + [anon_sym_extern] = ACTIONS(5498), + [anon_sym_LBRACE] = ACTIONS(5496), + [anon_sym_STAR] = ACTIONS(5496), + [anon_sym_LBRACK] = ACTIONS(5496), + [anon_sym_static] = ACTIONS(5498), + [anon_sym_register] = ACTIONS(5498), + [anon_sym_inline] = ACTIONS(5498), + [anon_sym_const] = ACTIONS(5498), + [anon_sym_restrict] = ACTIONS(5498), + [anon_sym_volatile] = ACTIONS(5498), + [anon_sym__Atomic] = ACTIONS(5498), + [anon_sym_mutable] = ACTIONS(5498), + [anon_sym_explicit] = ACTIONS(5498), + [anon_sym_constexpr] = ACTIONS(5498), + [anon_sym_unsigned] = ACTIONS(5498), + [anon_sym_long] = ACTIONS(5498), + [anon_sym_short] = ACTIONS(5498), + [sym_primitive_type] = ACTIONS(5498), + [anon_sym_enum] = ACTIONS(5498), + [anon_sym_struct] = ACTIONS(5498), + [anon_sym_union] = ACTIONS(5498), + [anon_sym_if] = ACTIONS(5498), + [anon_sym_switch] = ACTIONS(5498), + [anon_sym_case] = ACTIONS(5498), + [anon_sym_default] = ACTIONS(5498), + [anon_sym_while] = ACTIONS(5498), + [anon_sym_do] = ACTIONS(5498), + [anon_sym_for] = ACTIONS(5498), + [anon_sym_return] = ACTIONS(5498), + [anon_sym_break] = ACTIONS(5498), + [anon_sym_continue] = ACTIONS(5498), + [anon_sym_goto] = ACTIONS(5498), + [anon_sym_AMP] = ACTIONS(5496), + [anon_sym_BANG] = ACTIONS(5496), + [anon_sym_TILDE] = ACTIONS(5496), + [anon_sym_PLUS] = ACTIONS(5498), + [anon_sym_DASH] = ACTIONS(5498), + [anon_sym_DASH_DASH] = ACTIONS(5496), + [anon_sym_PLUS_PLUS] = ACTIONS(5496), + [anon_sym_sizeof] = ACTIONS(5498), + [sym_number_literal] = ACTIONS(5496), + [sym_char_literal] = ACTIONS(5496), + [sym_string_literal] = ACTIONS(5496), + [sym_true] = ACTIONS(5498), + [sym_false] = ACTIONS(5498), + [sym_null] = ACTIONS(5498), + [sym_identifier] = ACTIONS(5498), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5498), + [sym_auto] = ACTIONS(5498), + [anon_sym_typename] = ACTIONS(5498), + [anon_sym_new] = ACTIONS(5498), + [anon_sym_COLON_COLON] = ACTIONS(5496), + [anon_sym_delete] = ACTIONS(5498), + [sym_nullptr] = ACTIONS(5498), }, - [2680] = { - [sym_raw_string_literal] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5484), - [anon_sym_LPAREN] = ACTIONS(5482), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5484), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5484), - [sym_preproc_directive] = ACTIONS(5484), - [anon_sym_SEMI] = ACTIONS(5482), - [anon_sym_typedef] = ACTIONS(5484), - [anon_sym_extern] = ACTIONS(5484), - [anon_sym_LBRACE] = ACTIONS(5482), - [anon_sym_STAR] = ACTIONS(5482), - [anon_sym_LBRACK] = ACTIONS(5482), - [anon_sym_static] = ACTIONS(5484), - [anon_sym_register] = ACTIONS(5484), - [anon_sym_inline] = ACTIONS(5484), - [anon_sym_const] = ACTIONS(5484), - [anon_sym_restrict] = ACTIONS(5484), - [anon_sym_volatile] = ACTIONS(5484), - [anon_sym__Atomic] = ACTIONS(5484), - [anon_sym_mutable] = ACTIONS(5484), - [anon_sym_explicit] = ACTIONS(5484), - [anon_sym_constexpr] = ACTIONS(5484), - [anon_sym_unsigned] = ACTIONS(5484), - [anon_sym_long] = ACTIONS(5484), - [anon_sym_short] = ACTIONS(5484), - [sym_primitive_type] = ACTIONS(5484), - [anon_sym_enum] = ACTIONS(5484), - [anon_sym_struct] = ACTIONS(5484), - [anon_sym_union] = ACTIONS(5484), - [anon_sym_if] = ACTIONS(5484), - [anon_sym_switch] = ACTIONS(5484), - [anon_sym_case] = ACTIONS(5484), - [anon_sym_default] = ACTIONS(5484), - [anon_sym_while] = ACTIONS(5484), - [anon_sym_do] = ACTIONS(5484), - [anon_sym_for] = ACTIONS(5484), - [anon_sym_return] = ACTIONS(5484), - [anon_sym_break] = ACTIONS(5484), - [anon_sym_continue] = ACTIONS(5484), - [anon_sym_goto] = ACTIONS(5484), - [anon_sym_AMP] = ACTIONS(5482), - [anon_sym_BANG] = ACTIONS(5482), - [anon_sym_TILDE] = ACTIONS(5482), - [anon_sym_PLUS] = ACTIONS(5484), - [anon_sym_DASH] = ACTIONS(5484), - [anon_sym_DASH_DASH] = ACTIONS(5482), - [anon_sym_PLUS_PLUS] = ACTIONS(5482), - [anon_sym_sizeof] = ACTIONS(5484), - [sym_number_literal] = ACTIONS(5482), - [sym_char_literal] = ACTIONS(5482), - [sym_string_literal] = ACTIONS(5482), - [sym_true] = ACTIONS(5484), - [sym_false] = ACTIONS(5484), - [sym_null] = ACTIONS(5484), - [sym_identifier] = ACTIONS(5484), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5484), - [sym_auto] = ACTIONS(5484), - [anon_sym_typename] = ACTIONS(5484), - [anon_sym_new] = ACTIONS(5484), - [anon_sym_COLON_COLON] = ACTIONS(5482), - [anon_sym_delete] = ACTIONS(5484), - [sym_nullptr] = ACTIONS(5484), + [2695] = { + [sym_raw_string_literal] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5502), + [anon_sym_LPAREN] = ACTIONS(5500), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5502), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5502), + [sym_preproc_directive] = ACTIONS(5502), + [anon_sym_SEMI] = ACTIONS(5500), + [anon_sym_typedef] = ACTIONS(5502), + [anon_sym_extern] = ACTIONS(5502), + [anon_sym_LBRACE] = ACTIONS(5500), + [anon_sym_STAR] = ACTIONS(5500), + [anon_sym_LBRACK] = ACTIONS(5500), + [anon_sym_static] = ACTIONS(5502), + [anon_sym_register] = ACTIONS(5502), + [anon_sym_inline] = ACTIONS(5502), + [anon_sym_const] = ACTIONS(5502), + [anon_sym_restrict] = ACTIONS(5502), + [anon_sym_volatile] = ACTIONS(5502), + [anon_sym__Atomic] = ACTIONS(5502), + [anon_sym_mutable] = ACTIONS(5502), + [anon_sym_explicit] = ACTIONS(5502), + [anon_sym_constexpr] = ACTIONS(5502), + [anon_sym_unsigned] = ACTIONS(5502), + [anon_sym_long] = ACTIONS(5502), + [anon_sym_short] = ACTIONS(5502), + [sym_primitive_type] = ACTIONS(5502), + [anon_sym_enum] = ACTIONS(5502), + [anon_sym_struct] = ACTIONS(5502), + [anon_sym_union] = ACTIONS(5502), + [anon_sym_if] = ACTIONS(5502), + [anon_sym_switch] = ACTIONS(5502), + [anon_sym_case] = ACTIONS(5502), + [anon_sym_default] = ACTIONS(5502), + [anon_sym_while] = ACTIONS(5502), + [anon_sym_do] = ACTIONS(5502), + [anon_sym_for] = ACTIONS(5502), + [anon_sym_return] = ACTIONS(5502), + [anon_sym_break] = ACTIONS(5502), + [anon_sym_continue] = ACTIONS(5502), + [anon_sym_goto] = ACTIONS(5502), + [anon_sym_AMP] = ACTIONS(5500), + [anon_sym_BANG] = ACTIONS(5500), + [anon_sym_TILDE] = ACTIONS(5500), + [anon_sym_PLUS] = ACTIONS(5502), + [anon_sym_DASH] = ACTIONS(5502), + [anon_sym_DASH_DASH] = ACTIONS(5500), + [anon_sym_PLUS_PLUS] = ACTIONS(5500), + [anon_sym_sizeof] = ACTIONS(5502), + [sym_number_literal] = ACTIONS(5500), + [sym_char_literal] = ACTIONS(5500), + [sym_string_literal] = ACTIONS(5500), + [sym_true] = ACTIONS(5502), + [sym_false] = ACTIONS(5502), + [sym_null] = ACTIONS(5502), + [sym_identifier] = ACTIONS(5502), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5502), + [sym_auto] = ACTIONS(5502), + [anon_sym_typename] = ACTIONS(5502), + [anon_sym_new] = ACTIONS(5502), + [anon_sym_COLON_COLON] = ACTIONS(5500), + [anon_sym_delete] = ACTIONS(5502), + [sym_nullptr] = ACTIONS(5502), }, - [2681] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6672), + [2696] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6722), [sym_comment] = ACTIONS(49), }, - [2682] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6674), + [2697] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6724), [sym_comment] = ACTIONS(49), }, - [2683] = { - [sym_raw_string_literal] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5492), - [anon_sym_LPAREN] = ACTIONS(5490), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5492), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5492), - [sym_preproc_directive] = ACTIONS(5492), - [anon_sym_SEMI] = ACTIONS(5490), - [anon_sym_typedef] = ACTIONS(5492), - [anon_sym_extern] = ACTIONS(5492), - [anon_sym_LBRACE] = ACTIONS(5490), - [anon_sym_STAR] = ACTIONS(5490), - [anon_sym_LBRACK] = ACTIONS(5490), - [anon_sym_static] = ACTIONS(5492), - [anon_sym_register] = ACTIONS(5492), - [anon_sym_inline] = ACTIONS(5492), - [anon_sym_const] = ACTIONS(5492), - [anon_sym_restrict] = ACTIONS(5492), - [anon_sym_volatile] = ACTIONS(5492), - [anon_sym__Atomic] = ACTIONS(5492), - [anon_sym_mutable] = ACTIONS(5492), - [anon_sym_explicit] = ACTIONS(5492), - [anon_sym_constexpr] = ACTIONS(5492), - [anon_sym_unsigned] = ACTIONS(5492), - [anon_sym_long] = ACTIONS(5492), - [anon_sym_short] = ACTIONS(5492), - [sym_primitive_type] = ACTIONS(5492), - [anon_sym_enum] = ACTIONS(5492), - [anon_sym_struct] = ACTIONS(5492), - [anon_sym_union] = ACTIONS(5492), - [anon_sym_if] = ACTIONS(5492), - [anon_sym_switch] = ACTIONS(5492), - [anon_sym_case] = ACTIONS(5492), - [anon_sym_default] = ACTIONS(5492), - [anon_sym_while] = ACTIONS(5492), - [anon_sym_do] = ACTIONS(5492), - [anon_sym_for] = ACTIONS(5492), - [anon_sym_return] = ACTIONS(5492), - [anon_sym_break] = ACTIONS(5492), - [anon_sym_continue] = ACTIONS(5492), - [anon_sym_goto] = ACTIONS(5492), - [anon_sym_AMP] = ACTIONS(5490), - [anon_sym_BANG] = ACTIONS(5490), - [anon_sym_TILDE] = ACTIONS(5490), - [anon_sym_PLUS] = ACTIONS(5492), - [anon_sym_DASH] = ACTIONS(5492), - [anon_sym_DASH_DASH] = ACTIONS(5490), - [anon_sym_PLUS_PLUS] = ACTIONS(5490), - [anon_sym_sizeof] = ACTIONS(5492), - [sym_number_literal] = ACTIONS(5490), - [sym_char_literal] = ACTIONS(5490), - [sym_string_literal] = ACTIONS(5490), - [sym_true] = ACTIONS(5492), - [sym_false] = ACTIONS(5492), - [sym_null] = ACTIONS(5492), - [sym_identifier] = ACTIONS(5492), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5492), - [sym_auto] = ACTIONS(5492), - [anon_sym_typename] = ACTIONS(5492), - [anon_sym_new] = ACTIONS(5492), - [anon_sym_COLON_COLON] = ACTIONS(5490), - [anon_sym_delete] = ACTIONS(5492), - [sym_nullptr] = ACTIONS(5492), + [2698] = { + [sym_raw_string_literal] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5510), + [anon_sym_LPAREN] = ACTIONS(5508), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5510), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5510), + [sym_preproc_directive] = ACTIONS(5510), + [anon_sym_SEMI] = ACTIONS(5508), + [anon_sym_typedef] = ACTIONS(5510), + [anon_sym_extern] = ACTIONS(5510), + [anon_sym_LBRACE] = ACTIONS(5508), + [anon_sym_STAR] = ACTIONS(5508), + [anon_sym_LBRACK] = ACTIONS(5508), + [anon_sym_static] = ACTIONS(5510), + [anon_sym_register] = ACTIONS(5510), + [anon_sym_inline] = ACTIONS(5510), + [anon_sym_const] = ACTIONS(5510), + [anon_sym_restrict] = ACTIONS(5510), + [anon_sym_volatile] = ACTIONS(5510), + [anon_sym__Atomic] = ACTIONS(5510), + [anon_sym_mutable] = ACTIONS(5510), + [anon_sym_explicit] = ACTIONS(5510), + [anon_sym_constexpr] = ACTIONS(5510), + [anon_sym_unsigned] = ACTIONS(5510), + [anon_sym_long] = ACTIONS(5510), + [anon_sym_short] = ACTIONS(5510), + [sym_primitive_type] = ACTIONS(5510), + [anon_sym_enum] = ACTIONS(5510), + [anon_sym_struct] = ACTIONS(5510), + [anon_sym_union] = ACTIONS(5510), + [anon_sym_if] = ACTIONS(5510), + [anon_sym_switch] = ACTIONS(5510), + [anon_sym_case] = ACTIONS(5510), + [anon_sym_default] = ACTIONS(5510), + [anon_sym_while] = ACTIONS(5510), + [anon_sym_do] = ACTIONS(5510), + [anon_sym_for] = ACTIONS(5510), + [anon_sym_return] = ACTIONS(5510), + [anon_sym_break] = ACTIONS(5510), + [anon_sym_continue] = ACTIONS(5510), + [anon_sym_goto] = ACTIONS(5510), + [anon_sym_AMP] = ACTIONS(5508), + [anon_sym_BANG] = ACTIONS(5508), + [anon_sym_TILDE] = ACTIONS(5508), + [anon_sym_PLUS] = ACTIONS(5510), + [anon_sym_DASH] = ACTIONS(5510), + [anon_sym_DASH_DASH] = ACTIONS(5508), + [anon_sym_PLUS_PLUS] = ACTIONS(5508), + [anon_sym_sizeof] = ACTIONS(5510), + [sym_number_literal] = ACTIONS(5508), + [sym_char_literal] = ACTIONS(5508), + [sym_string_literal] = ACTIONS(5508), + [sym_true] = ACTIONS(5510), + [sym_false] = ACTIONS(5510), + [sym_null] = ACTIONS(5510), + [sym_identifier] = ACTIONS(5510), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5510), + [sym_auto] = ACTIONS(5510), + [anon_sym_typename] = ACTIONS(5510), + [anon_sym_new] = ACTIONS(5510), + [anon_sym_COLON_COLON] = ACTIONS(5508), + [anon_sym_delete] = ACTIONS(5510), + [sym_nullptr] = ACTIONS(5510), }, - [2684] = { - [sym_raw_string_literal] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5496), - [anon_sym_LPAREN] = ACTIONS(5494), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5496), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5496), - [sym_preproc_directive] = ACTIONS(5496), - [anon_sym_SEMI] = ACTIONS(5494), - [anon_sym_typedef] = ACTIONS(5496), - [anon_sym_extern] = ACTIONS(5496), - [anon_sym_LBRACE] = ACTIONS(5494), - [anon_sym_STAR] = ACTIONS(5494), - [anon_sym_LBRACK] = ACTIONS(5494), - [anon_sym_static] = ACTIONS(5496), - [anon_sym_register] = ACTIONS(5496), - [anon_sym_inline] = ACTIONS(5496), - [anon_sym_const] = ACTIONS(5496), - [anon_sym_restrict] = ACTIONS(5496), - [anon_sym_volatile] = ACTIONS(5496), - [anon_sym__Atomic] = ACTIONS(5496), - [anon_sym_mutable] = ACTIONS(5496), - [anon_sym_explicit] = ACTIONS(5496), - [anon_sym_constexpr] = ACTIONS(5496), - [anon_sym_unsigned] = ACTIONS(5496), - [anon_sym_long] = ACTIONS(5496), - [anon_sym_short] = ACTIONS(5496), - [sym_primitive_type] = ACTIONS(5496), - [anon_sym_enum] = ACTIONS(5496), - [anon_sym_struct] = ACTIONS(5496), - [anon_sym_union] = ACTIONS(5496), - [anon_sym_if] = ACTIONS(5496), - [anon_sym_switch] = ACTIONS(5496), - [anon_sym_case] = ACTIONS(5496), - [anon_sym_default] = ACTIONS(5496), - [anon_sym_while] = ACTIONS(5496), - [anon_sym_do] = ACTIONS(5496), - [anon_sym_for] = ACTIONS(5496), - [anon_sym_return] = ACTIONS(5496), - [anon_sym_break] = ACTIONS(5496), - [anon_sym_continue] = ACTIONS(5496), - [anon_sym_goto] = ACTIONS(5496), - [anon_sym_AMP] = ACTIONS(5494), - [anon_sym_BANG] = ACTIONS(5494), - [anon_sym_TILDE] = ACTIONS(5494), - [anon_sym_PLUS] = ACTIONS(5496), - [anon_sym_DASH] = ACTIONS(5496), - [anon_sym_DASH_DASH] = ACTIONS(5494), - [anon_sym_PLUS_PLUS] = ACTIONS(5494), - [anon_sym_sizeof] = ACTIONS(5496), - [sym_number_literal] = ACTIONS(5494), - [sym_char_literal] = ACTIONS(5494), - [sym_string_literal] = ACTIONS(5494), - [sym_true] = ACTIONS(5496), - [sym_false] = ACTIONS(5496), - [sym_null] = ACTIONS(5496), - [sym_identifier] = ACTIONS(5496), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5496), - [sym_auto] = ACTIONS(5496), - [anon_sym_typename] = ACTIONS(5496), - [anon_sym_new] = ACTIONS(5496), - [anon_sym_COLON_COLON] = ACTIONS(5494), - [anon_sym_delete] = ACTIONS(5496), - [sym_nullptr] = ACTIONS(5496), + [2699] = { + [sym_raw_string_literal] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5514), + [anon_sym_LPAREN] = ACTIONS(5512), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5514), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5514), + [sym_preproc_directive] = ACTIONS(5514), + [anon_sym_SEMI] = ACTIONS(5512), + [anon_sym_typedef] = ACTIONS(5514), + [anon_sym_extern] = ACTIONS(5514), + [anon_sym_LBRACE] = ACTIONS(5512), + [anon_sym_STAR] = ACTIONS(5512), + [anon_sym_LBRACK] = ACTIONS(5512), + [anon_sym_static] = ACTIONS(5514), + [anon_sym_register] = ACTIONS(5514), + [anon_sym_inline] = ACTIONS(5514), + [anon_sym_const] = ACTIONS(5514), + [anon_sym_restrict] = ACTIONS(5514), + [anon_sym_volatile] = ACTIONS(5514), + [anon_sym__Atomic] = ACTIONS(5514), + [anon_sym_mutable] = ACTIONS(5514), + [anon_sym_explicit] = ACTIONS(5514), + [anon_sym_constexpr] = ACTIONS(5514), + [anon_sym_unsigned] = ACTIONS(5514), + [anon_sym_long] = ACTIONS(5514), + [anon_sym_short] = ACTIONS(5514), + [sym_primitive_type] = ACTIONS(5514), + [anon_sym_enum] = ACTIONS(5514), + [anon_sym_struct] = ACTIONS(5514), + [anon_sym_union] = ACTIONS(5514), + [anon_sym_if] = ACTIONS(5514), + [anon_sym_switch] = ACTIONS(5514), + [anon_sym_case] = ACTIONS(5514), + [anon_sym_default] = ACTIONS(5514), + [anon_sym_while] = ACTIONS(5514), + [anon_sym_do] = ACTIONS(5514), + [anon_sym_for] = ACTIONS(5514), + [anon_sym_return] = ACTIONS(5514), + [anon_sym_break] = ACTIONS(5514), + [anon_sym_continue] = ACTIONS(5514), + [anon_sym_goto] = ACTIONS(5514), + [anon_sym_AMP] = ACTIONS(5512), + [anon_sym_BANG] = ACTIONS(5512), + [anon_sym_TILDE] = ACTIONS(5512), + [anon_sym_PLUS] = ACTIONS(5514), + [anon_sym_DASH] = ACTIONS(5514), + [anon_sym_DASH_DASH] = ACTIONS(5512), + [anon_sym_PLUS_PLUS] = ACTIONS(5512), + [anon_sym_sizeof] = ACTIONS(5514), + [sym_number_literal] = ACTIONS(5512), + [sym_char_literal] = ACTIONS(5512), + [sym_string_literal] = ACTIONS(5512), + [sym_true] = ACTIONS(5514), + [sym_false] = ACTIONS(5514), + [sym_null] = ACTIONS(5514), + [sym_identifier] = ACTIONS(5514), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5514), + [sym_auto] = ACTIONS(5514), + [anon_sym_typename] = ACTIONS(5514), + [anon_sym_new] = ACTIONS(5514), + [anon_sym_COLON_COLON] = ACTIONS(5512), + [anon_sym_delete] = ACTIONS(5514), + [sym_nullptr] = ACTIONS(5514), }, - [2685] = { - [sym_raw_string_literal] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5500), - [anon_sym_LPAREN] = ACTIONS(5498), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5500), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5500), - [sym_preproc_directive] = ACTIONS(5500), - [anon_sym_SEMI] = ACTIONS(5498), - [anon_sym_typedef] = ACTIONS(5500), - [anon_sym_extern] = ACTIONS(5500), - [anon_sym_LBRACE] = ACTIONS(5498), - [anon_sym_STAR] = ACTIONS(5498), - [anon_sym_LBRACK] = ACTIONS(5498), - [anon_sym_static] = ACTIONS(5500), - [anon_sym_register] = ACTIONS(5500), - [anon_sym_inline] = ACTIONS(5500), - [anon_sym_const] = ACTIONS(5500), - [anon_sym_restrict] = ACTIONS(5500), - [anon_sym_volatile] = ACTIONS(5500), - [anon_sym__Atomic] = ACTIONS(5500), - [anon_sym_mutable] = ACTIONS(5500), - [anon_sym_explicit] = ACTIONS(5500), - [anon_sym_constexpr] = ACTIONS(5500), - [anon_sym_unsigned] = ACTIONS(5500), - [anon_sym_long] = ACTIONS(5500), - [anon_sym_short] = ACTIONS(5500), - [sym_primitive_type] = ACTIONS(5500), - [anon_sym_enum] = ACTIONS(5500), - [anon_sym_struct] = ACTIONS(5500), - [anon_sym_union] = ACTIONS(5500), - [anon_sym_if] = ACTIONS(5500), - [anon_sym_switch] = ACTIONS(5500), - [anon_sym_case] = ACTIONS(5500), - [anon_sym_default] = ACTIONS(5500), - [anon_sym_while] = ACTIONS(5500), - [anon_sym_do] = ACTIONS(5500), - [anon_sym_for] = ACTIONS(5500), - [anon_sym_return] = ACTIONS(5500), - [anon_sym_break] = ACTIONS(5500), - [anon_sym_continue] = ACTIONS(5500), - [anon_sym_goto] = ACTIONS(5500), - [anon_sym_AMP] = ACTIONS(5498), - [anon_sym_BANG] = ACTIONS(5498), - [anon_sym_TILDE] = ACTIONS(5498), - [anon_sym_PLUS] = ACTIONS(5500), - [anon_sym_DASH] = ACTIONS(5500), - [anon_sym_DASH_DASH] = ACTIONS(5498), - [anon_sym_PLUS_PLUS] = ACTIONS(5498), - [anon_sym_sizeof] = ACTIONS(5500), - [sym_number_literal] = ACTIONS(5498), - [sym_char_literal] = ACTIONS(5498), - [sym_string_literal] = ACTIONS(5498), - [sym_true] = ACTIONS(5500), - [sym_false] = ACTIONS(5500), - [sym_null] = ACTIONS(5500), - [sym_identifier] = ACTIONS(5500), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5500), - [sym_auto] = ACTIONS(5500), - [anon_sym_typename] = ACTIONS(5500), - [anon_sym_new] = ACTIONS(5500), - [anon_sym_COLON_COLON] = ACTIONS(5498), - [anon_sym_delete] = ACTIONS(5500), - [sym_nullptr] = ACTIONS(5500), + [2700] = { + [sym_raw_string_literal] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5518), + [anon_sym_LPAREN] = ACTIONS(5516), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5518), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5518), + [sym_preproc_directive] = ACTIONS(5518), + [anon_sym_SEMI] = ACTIONS(5516), + [anon_sym_typedef] = ACTIONS(5518), + [anon_sym_extern] = ACTIONS(5518), + [anon_sym_LBRACE] = ACTIONS(5516), + [anon_sym_STAR] = ACTIONS(5516), + [anon_sym_LBRACK] = ACTIONS(5516), + [anon_sym_static] = ACTIONS(5518), + [anon_sym_register] = ACTIONS(5518), + [anon_sym_inline] = ACTIONS(5518), + [anon_sym_const] = ACTIONS(5518), + [anon_sym_restrict] = ACTIONS(5518), + [anon_sym_volatile] = ACTIONS(5518), + [anon_sym__Atomic] = ACTIONS(5518), + [anon_sym_mutable] = ACTIONS(5518), + [anon_sym_explicit] = ACTIONS(5518), + [anon_sym_constexpr] = ACTIONS(5518), + [anon_sym_unsigned] = ACTIONS(5518), + [anon_sym_long] = ACTIONS(5518), + [anon_sym_short] = ACTIONS(5518), + [sym_primitive_type] = ACTIONS(5518), + [anon_sym_enum] = ACTIONS(5518), + [anon_sym_struct] = ACTIONS(5518), + [anon_sym_union] = ACTIONS(5518), + [anon_sym_if] = ACTIONS(5518), + [anon_sym_switch] = ACTIONS(5518), + [anon_sym_case] = ACTIONS(5518), + [anon_sym_default] = ACTIONS(5518), + [anon_sym_while] = ACTIONS(5518), + [anon_sym_do] = ACTIONS(5518), + [anon_sym_for] = ACTIONS(5518), + [anon_sym_return] = ACTIONS(5518), + [anon_sym_break] = ACTIONS(5518), + [anon_sym_continue] = ACTIONS(5518), + [anon_sym_goto] = ACTIONS(5518), + [anon_sym_AMP] = ACTIONS(5516), + [anon_sym_BANG] = ACTIONS(5516), + [anon_sym_TILDE] = ACTIONS(5516), + [anon_sym_PLUS] = ACTIONS(5518), + [anon_sym_DASH] = ACTIONS(5518), + [anon_sym_DASH_DASH] = ACTIONS(5516), + [anon_sym_PLUS_PLUS] = ACTIONS(5516), + [anon_sym_sizeof] = ACTIONS(5518), + [sym_number_literal] = ACTIONS(5516), + [sym_char_literal] = ACTIONS(5516), + [sym_string_literal] = ACTIONS(5516), + [sym_true] = ACTIONS(5518), + [sym_false] = ACTIONS(5518), + [sym_null] = ACTIONS(5518), + [sym_identifier] = ACTIONS(5518), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5518), + [sym_auto] = ACTIONS(5518), + [anon_sym_typename] = ACTIONS(5518), + [anon_sym_new] = ACTIONS(5518), + [anon_sym_COLON_COLON] = ACTIONS(5516), + [anon_sym_delete] = ACTIONS(5518), + [sym_nullptr] = ACTIONS(5518), }, - [2686] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6676), + [2701] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6726), [sym_comment] = ACTIONS(49), }, - [2687] = { - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6678), + [2702] = { + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6728), [sym_comment] = ACTIONS(49), }, - [2688] = { - [sym_raw_string_literal] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1970), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1972), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1972), - [sym_preproc_directive] = ACTIONS(1972), - [anon_sym_SEMI] = ACTIONS(1970), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_register] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_const] = ACTIONS(1972), - [anon_sym_restrict] = ACTIONS(1972), - [anon_sym_volatile] = ACTIONS(1972), - [anon_sym__Atomic] = ACTIONS(1972), - [anon_sym_mutable] = ACTIONS(1972), - [anon_sym_explicit] = ACTIONS(1972), - [anon_sym_constexpr] = ACTIONS(1972), - [anon_sym_unsigned] = ACTIONS(1972), - [anon_sym_long] = ACTIONS(1972), - [anon_sym_short] = ACTIONS(1972), - [sym_primitive_type] = ACTIONS(1972), - [anon_sym_enum] = ACTIONS(1972), - [anon_sym_struct] = ACTIONS(1972), - [anon_sym_union] = ACTIONS(1972), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_while] = ACTIONS(1972), - [anon_sym_do] = ACTIONS(1972), - [anon_sym_for] = ACTIONS(1972), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_goto] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1970), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_sizeof] = ACTIONS(1972), - [sym_number_literal] = ACTIONS(1970), - [sym_char_literal] = ACTIONS(1970), - [sym_string_literal] = ACTIONS(1970), - [sym_true] = ACTIONS(1972), - [sym_false] = ACTIONS(1972), - [sym_null] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1972), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1972), - [sym_auto] = ACTIONS(1972), - [anon_sym_typename] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1970), - [anon_sym_delete] = ACTIONS(1972), - [sym_nullptr] = ACTIONS(1972), + [2703] = { + [sym_raw_string_literal] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1972), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1974), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1974), + [sym_preproc_directive] = ACTIONS(1974), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_typedef] = ACTIONS(1974), + [anon_sym_extern] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1972), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1974), + [anon_sym_register] = ACTIONS(1974), + [anon_sym_inline] = ACTIONS(1974), + [anon_sym_const] = ACTIONS(1974), + [anon_sym_restrict] = ACTIONS(1974), + [anon_sym_volatile] = ACTIONS(1974), + [anon_sym__Atomic] = ACTIONS(1974), + [anon_sym_mutable] = ACTIONS(1974), + [anon_sym_explicit] = ACTIONS(1974), + [anon_sym_constexpr] = ACTIONS(1974), + [anon_sym_unsigned] = ACTIONS(1974), + [anon_sym_long] = ACTIONS(1974), + [anon_sym_short] = ACTIONS(1974), + [sym_primitive_type] = ACTIONS(1974), + [anon_sym_enum] = ACTIONS(1974), + [anon_sym_struct] = ACTIONS(1974), + [anon_sym_union] = ACTIONS(1974), + [anon_sym_if] = ACTIONS(1974), + [anon_sym_switch] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1974), + [anon_sym_default] = ACTIONS(1974), + [anon_sym_while] = ACTIONS(1974), + [anon_sym_do] = ACTIONS(1974), + [anon_sym_for] = ACTIONS(1974), + [anon_sym_return] = ACTIONS(1974), + [anon_sym_break] = ACTIONS(1974), + [anon_sym_continue] = ACTIONS(1974), + [anon_sym_goto] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1974), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1972), + [anon_sym_PLUS_PLUS] = ACTIONS(1972), + [anon_sym_sizeof] = ACTIONS(1974), + [sym_number_literal] = ACTIONS(1972), + [sym_char_literal] = ACTIONS(1972), + [sym_string_literal] = ACTIONS(1972), + [sym_true] = ACTIONS(1974), + [sym_false] = ACTIONS(1974), + [sym_null] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1974), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1974), + [sym_auto] = ACTIONS(1974), + [anon_sym_typename] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1972), + [anon_sym_delete] = ACTIONS(1974), + [sym_nullptr] = ACTIONS(1974), }, - [2689] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [2704] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), }, - [2690] = { + [2705] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6680), + [anon_sym_SEMI] = ACTIONS(6730), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2691] = { - [sym_compound_statement] = STATE(2822), - [sym_labeled_statement] = STATE(2822), - [sym_expression_statement] = STATE(2822), - [sym_if_statement] = STATE(2822), - [sym_switch_statement] = STATE(2822), - [sym_case_statement] = STATE(2822), - [sym_while_statement] = STATE(2822), - [sym_do_statement] = STATE(2822), - [sym_for_statement] = STATE(2822), - [sym_return_statement] = STATE(2822), - [sym_break_statement] = STATE(2822), - [sym_continue_statement] = STATE(2822), - [sym_goto_statement] = STATE(2822), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(2822), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [2706] = { + [sym_compound_statement] = STATE(2843), + [sym_labeled_statement] = STATE(2843), + [sym_expression_statement] = STATE(2843), + [sym_if_statement] = STATE(2843), + [sym_switch_statement] = STATE(2843), + [sym_case_statement] = STATE(2843), + [sym_while_statement] = STATE(2843), + [sym_do_statement] = STATE(2843), + [sym_for_statement] = STATE(2843), + [sym_return_statement] = STATE(2843), + [sym_break_statement] = STATE(2843), + [sym_continue_statement] = STATE(2843), + [sym_goto_statement] = STATE(2843), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(2843), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -106955,79 +107602,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [2692] = { - [sym_compound_statement] = STATE(2825), - [sym_labeled_statement] = STATE(2825), - [sym_expression_statement] = STATE(2825), - [sym_if_statement] = STATE(2825), - [sym_switch_statement] = STATE(2825), - [sym_case_statement] = STATE(2825), - [sym_while_statement] = STATE(2825), - [sym_do_statement] = STATE(2825), - [sym_for_statement] = STATE(2825), - [sym_return_statement] = STATE(2825), - [sym_break_statement] = STATE(2825), - [sym_continue_statement] = STATE(2825), - [sym_goto_statement] = STATE(2825), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2825), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2707] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(6764), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2708] = { + [sym_compound_statement] = STATE(2847), + [sym_labeled_statement] = STATE(2847), + [sym_expression_statement] = STATE(2847), + [sym_if_statement] = STATE(2847), + [sym_switch_statement] = STATE(2847), + [sym_case_statement] = STATE(2847), + [sym_while_statement] = STATE(2847), + [sym_do_statement] = STATE(2847), + [sym_for_statement] = STATE(2847), + [sym_return_statement] = STATE(2847), + [sym_break_statement] = STATE(2847), + [sym_continue_statement] = STATE(2847), + [sym_goto_statement] = STATE(2847), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2847), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -107036,147 +107724,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2693] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [2709] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [2694] = { - [sym_compound_statement] = STATE(2826), - [sym_labeled_statement] = STATE(2826), - [sym_expression_statement] = STATE(2826), - [sym_if_statement] = STATE(2826), - [sym_switch_statement] = STATE(2826), - [sym_case_statement] = STATE(2826), - [sym_while_statement] = STATE(2826), - [sym_do_statement] = STATE(2826), - [sym_for_statement] = STATE(2826), - [sym_return_statement] = STATE(2826), - [sym_break_statement] = STATE(2826), - [sym_continue_statement] = STATE(2826), - [sym_goto_statement] = STATE(2826), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2826), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2710] = { + [sym_compound_statement] = STATE(2848), + [sym_labeled_statement] = STATE(2848), + [sym_expression_statement] = STATE(2848), + [sym_if_statement] = STATE(2848), + [sym_switch_statement] = STATE(2848), + [sym_case_statement] = STATE(2848), + [sym_while_statement] = STATE(2848), + [sym_do_statement] = STATE(2848), + [sym_for_statement] = STATE(2848), + [sym_return_statement] = STATE(2848), + [sym_break_statement] = STATE(2848), + [sym_continue_statement] = STATE(2848), + [sym_goto_statement] = STATE(2848), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2848), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -107185,103 +107873,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2695] = { - [sym__expression] = STATE(2827), - [sym_conditional_expression] = STATE(2827), - [sym_assignment_expression] = STATE(2827), - [sym_pointer_expression] = STATE(2827), - [sym_logical_expression] = STATE(2827), - [sym_bitwise_expression] = STATE(2827), - [sym_equality_expression] = STATE(2827), - [sym_relational_expression] = STATE(2827), - [sym_shift_expression] = STATE(2827), - [sym_math_expression] = STATE(2827), - [sym_cast_expression] = STATE(2827), - [sym_sizeof_expression] = STATE(2827), - [sym_subscript_expression] = STATE(2827), - [sym_call_expression] = STATE(2827), - [sym_field_expression] = STATE(2827), - [sym_compound_literal_expression] = STATE(2827), - [sym_parenthesized_expression] = STATE(2827), - [sym_concatenated_string] = STATE(2827), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2827), - [sym_new_expression] = STATE(2827), - [sym_delete_expression] = STATE(2827), - [sym_lambda_expression] = STATE(2827), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6714), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6714), - [sym_char_literal] = ACTIONS(6714), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6716), - [sym_false] = ACTIONS(6716), - [sym_null] = ACTIONS(6716), + [2711] = { + [sym__expression] = STATE(2849), + [sym_conditional_expression] = STATE(2849), + [sym_assignment_expression] = STATE(2849), + [sym_pointer_expression] = STATE(2849), + [sym_logical_expression] = STATE(2849), + [sym_bitwise_expression] = STATE(2849), + [sym_equality_expression] = STATE(2849), + [sym_relational_expression] = STATE(2849), + [sym_shift_expression] = STATE(2849), + [sym_math_expression] = STATE(2849), + [sym_cast_expression] = STATE(2849), + [sym_sizeof_expression] = STATE(2849), + [sym_subscript_expression] = STATE(2849), + [sym_call_expression] = STATE(2849), + [sym_field_expression] = STATE(2849), + [sym_compound_literal_expression] = STATE(2849), + [sym_parenthesized_expression] = STATE(2849), + [sym_concatenated_string] = STATE(2849), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2849), + [sym_new_expression] = STATE(2849), + [sym_delete_expression] = STATE(2849), + [sym_lambda_expression] = STATE(2849), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6766), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6766), + [sym_char_literal] = ACTIONS(6766), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6768), + [sym_false] = ACTIONS(6768), + [sym_null] = ACTIONS(6768), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6716), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6768), }, - [2696] = { - [sym__expression] = STATE(2829), - [sym_conditional_expression] = STATE(2829), - [sym_assignment_expression] = STATE(2829), - [sym_pointer_expression] = STATE(2829), - [sym_logical_expression] = STATE(2829), - [sym_bitwise_expression] = STATE(2829), - [sym_equality_expression] = STATE(2829), - [sym_relational_expression] = STATE(2829), - [sym_shift_expression] = STATE(2829), - [sym_math_expression] = STATE(2829), - [sym_cast_expression] = STATE(2829), - [sym_sizeof_expression] = STATE(2829), - [sym_subscript_expression] = STATE(2829), - [sym_call_expression] = STATE(2829), - [sym_field_expression] = STATE(2829), - [sym_compound_literal_expression] = STATE(2829), - [sym_parenthesized_expression] = STATE(2829), - [sym_concatenated_string] = STATE(2829), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2829), - [sym_new_expression] = STATE(2829), - [sym_delete_expression] = STATE(2829), - [sym_lambda_expression] = STATE(2829), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6718), + [2712] = { + [sym__expression] = STATE(2851), + [sym_conditional_expression] = STATE(2851), + [sym_assignment_expression] = STATE(2851), + [sym_pointer_expression] = STATE(2851), + [sym_logical_expression] = STATE(2851), + [sym_bitwise_expression] = STATE(2851), + [sym_equality_expression] = STATE(2851), + [sym_relational_expression] = STATE(2851), + [sym_shift_expression] = STATE(2851), + [sym_math_expression] = STATE(2851), + [sym_cast_expression] = STATE(2851), + [sym_sizeof_expression] = STATE(2851), + [sym_subscript_expression] = STATE(2851), + [sym_call_expression] = STATE(2851), + [sym_field_expression] = STATE(2851), + [sym_compound_literal_expression] = STATE(2851), + [sym_parenthesized_expression] = STATE(2851), + [sym_concatenated_string] = STATE(2851), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2851), + [sym_new_expression] = STATE(2851), + [sym_delete_expression] = STATE(2851), + [sym_lambda_expression] = STATE(2851), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6770), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6720), + [anon_sym_RPAREN] = ACTIONS(6772), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -107292,91 +107980,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6718), - [sym_char_literal] = ACTIONS(6718), + [sym_number_literal] = ACTIONS(6770), + [sym_char_literal] = ACTIONS(6770), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6722), - [sym_false] = ACTIONS(6722), - [sym_null] = ACTIONS(6722), + [sym_true] = ACTIONS(6774), + [sym_false] = ACTIONS(6774), + [sym_null] = ACTIONS(6774), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6722), + [sym_nullptr] = ACTIONS(6774), }, - [2697] = { + [2713] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6724), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6776), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2698] = { - [sym__expression] = STATE(2831), - [sym_conditional_expression] = STATE(2831), - [sym_assignment_expression] = STATE(2831), - [sym_pointer_expression] = STATE(2831), - [sym_logical_expression] = STATE(2831), - [sym_bitwise_expression] = STATE(2831), - [sym_equality_expression] = STATE(2831), - [sym_relational_expression] = STATE(2831), - [sym_shift_expression] = STATE(2831), - [sym_math_expression] = STATE(2831), - [sym_cast_expression] = STATE(2831), - [sym_sizeof_expression] = STATE(2831), - [sym_subscript_expression] = STATE(2831), - [sym_call_expression] = STATE(2831), - [sym_field_expression] = STATE(2831), - [sym_compound_literal_expression] = STATE(2831), - [sym_parenthesized_expression] = STATE(2831), - [sym_concatenated_string] = STATE(2831), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2831), - [sym_new_expression] = STATE(2831), - [sym_delete_expression] = STATE(2831), - [sym_lambda_expression] = STATE(2831), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6726), + [2714] = { + [sym__expression] = STATE(2853), + [sym_conditional_expression] = STATE(2853), + [sym_assignment_expression] = STATE(2853), + [sym_pointer_expression] = STATE(2853), + [sym_logical_expression] = STATE(2853), + [sym_bitwise_expression] = STATE(2853), + [sym_equality_expression] = STATE(2853), + [sym_relational_expression] = STATE(2853), + [sym_shift_expression] = STATE(2853), + [sym_math_expression] = STATE(2853), + [sym_cast_expression] = STATE(2853), + [sym_sizeof_expression] = STATE(2853), + [sym_subscript_expression] = STATE(2853), + [sym_call_expression] = STATE(2853), + [sym_field_expression] = STATE(2853), + [sym_compound_literal_expression] = STATE(2853), + [sym_parenthesized_expression] = STATE(2853), + [sym_concatenated_string] = STATE(2853), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2853), + [sym_new_expression] = STATE(2853), + [sym_delete_expression] = STATE(2853), + [sym_lambda_expression] = STATE(2853), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6778), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6724), + [anon_sym_SEMI] = ACTIONS(6776), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -107387,437 +108075,437 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6726), - [sym_char_literal] = ACTIONS(6726), + [sym_number_literal] = ACTIONS(6778), + [sym_char_literal] = ACTIONS(6778), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6728), - [sym_false] = ACTIONS(6728), - [sym_null] = ACTIONS(6728), + [sym_true] = ACTIONS(6780), + [sym_false] = ACTIONS(6780), + [sym_null] = ACTIONS(6780), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6728), + [sym_nullptr] = ACTIONS(6780), }, - [2699] = { - [sym__expression] = STATE(2832), - [sym_conditional_expression] = STATE(2832), - [sym_assignment_expression] = STATE(2832), - [sym_pointer_expression] = STATE(2832), - [sym_logical_expression] = STATE(2832), - [sym_bitwise_expression] = STATE(2832), - [sym_equality_expression] = STATE(2832), - [sym_relational_expression] = STATE(2832), - [sym_shift_expression] = STATE(2832), - [sym_math_expression] = STATE(2832), - [sym_cast_expression] = STATE(2832), - [sym_sizeof_expression] = STATE(2832), - [sym_subscript_expression] = STATE(2832), - [sym_call_expression] = STATE(2832), - [sym_field_expression] = STATE(2832), - [sym_compound_literal_expression] = STATE(2832), - [sym_parenthesized_expression] = STATE(2832), - [sym_concatenated_string] = STATE(2832), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2832), - [sym_new_expression] = STATE(2832), - [sym_delete_expression] = STATE(2832), - [sym_lambda_expression] = STATE(2832), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6730), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6730), - [sym_char_literal] = ACTIONS(6730), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6732), - [sym_false] = ACTIONS(6732), - [sym_null] = ACTIONS(6732), + [2715] = { + [sym__expression] = STATE(2854), + [sym_conditional_expression] = STATE(2854), + [sym_assignment_expression] = STATE(2854), + [sym_pointer_expression] = STATE(2854), + [sym_logical_expression] = STATE(2854), + [sym_bitwise_expression] = STATE(2854), + [sym_equality_expression] = STATE(2854), + [sym_relational_expression] = STATE(2854), + [sym_shift_expression] = STATE(2854), + [sym_math_expression] = STATE(2854), + [sym_cast_expression] = STATE(2854), + [sym_sizeof_expression] = STATE(2854), + [sym_subscript_expression] = STATE(2854), + [sym_call_expression] = STATE(2854), + [sym_field_expression] = STATE(2854), + [sym_compound_literal_expression] = STATE(2854), + [sym_parenthesized_expression] = STATE(2854), + [sym_concatenated_string] = STATE(2854), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2854), + [sym_new_expression] = STATE(2854), + [sym_delete_expression] = STATE(2854), + [sym_lambda_expression] = STATE(2854), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6782), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6782), + [sym_char_literal] = ACTIONS(6782), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6784), + [sym_false] = ACTIONS(6784), + [sym_null] = ACTIONS(6784), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6732), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6784), }, - [2700] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [2716] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [2701] = { + [2717] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6734), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6786), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2702] = { - [anon_sym_SEMI] = ACTIONS(6734), + [2718] = { + [anon_sym_SEMI] = ACTIONS(6786), [sym_comment] = ACTIONS(49), }, - [2703] = { - [sym_raw_string_literal] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2581), - [anon_sym_LPAREN] = ACTIONS(2579), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2581), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2581), - [sym_preproc_directive] = ACTIONS(2581), - [anon_sym_SEMI] = ACTIONS(2579), - [anon_sym_typedef] = ACTIONS(2581), - [anon_sym_extern] = ACTIONS(2581), - [anon_sym_LBRACE] = ACTIONS(2579), - [anon_sym_STAR] = ACTIONS(2579), - [anon_sym_LBRACK] = ACTIONS(2579), - [anon_sym_static] = ACTIONS(2581), - [anon_sym_register] = ACTIONS(2581), - [anon_sym_inline] = ACTIONS(2581), - [anon_sym_const] = ACTIONS(2581), - [anon_sym_restrict] = ACTIONS(2581), - [anon_sym_volatile] = ACTIONS(2581), - [anon_sym__Atomic] = ACTIONS(2581), - [anon_sym_mutable] = ACTIONS(2581), - [anon_sym_explicit] = ACTIONS(2581), - [anon_sym_constexpr] = ACTIONS(2581), - [anon_sym_unsigned] = ACTIONS(2581), - [anon_sym_long] = ACTIONS(2581), - [anon_sym_short] = ACTIONS(2581), - [sym_primitive_type] = ACTIONS(2581), - [anon_sym_enum] = ACTIONS(2581), - [anon_sym_struct] = ACTIONS(2581), - [anon_sym_union] = ACTIONS(2581), - [anon_sym_if] = ACTIONS(2581), - [anon_sym_switch] = ACTIONS(2581), - [anon_sym_case] = ACTIONS(2581), - [anon_sym_default] = ACTIONS(2581), - [anon_sym_while] = ACTIONS(2581), - [anon_sym_do] = ACTIONS(2581), - [anon_sym_for] = ACTIONS(2581), - [anon_sym_return] = ACTIONS(2581), - [anon_sym_break] = ACTIONS(2581), - [anon_sym_continue] = ACTIONS(2581), - [anon_sym_goto] = ACTIONS(2581), - [anon_sym_AMP] = ACTIONS(2579), - [anon_sym_BANG] = ACTIONS(2579), - [anon_sym_TILDE] = ACTIONS(2579), - [anon_sym_PLUS] = ACTIONS(2581), - [anon_sym_DASH] = ACTIONS(2581), - [anon_sym_DASH_DASH] = ACTIONS(2579), - [anon_sym_PLUS_PLUS] = ACTIONS(2579), - [anon_sym_sizeof] = ACTIONS(2581), - [sym_number_literal] = ACTIONS(2579), - [sym_char_literal] = ACTIONS(2579), - [sym_string_literal] = ACTIONS(2579), - [sym_true] = ACTIONS(2581), - [sym_false] = ACTIONS(2581), - [sym_null] = ACTIONS(2581), - [sym_identifier] = ACTIONS(2581), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2581), - [sym_auto] = ACTIONS(2581), - [anon_sym_typename] = ACTIONS(2581), - [anon_sym_new] = ACTIONS(2581), - [anon_sym_COLON_COLON] = ACTIONS(2579), - [anon_sym_delete] = ACTIONS(2581), - [sym_nullptr] = ACTIONS(2581), + [2719] = { + [sym_raw_string_literal] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2581), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2583), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2583), + [sym_preproc_directive] = ACTIONS(2583), + [anon_sym_SEMI] = ACTIONS(2581), + [anon_sym_typedef] = ACTIONS(2583), + [anon_sym_extern] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2581), + [anon_sym_STAR] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2581), + [anon_sym_static] = ACTIONS(2583), + [anon_sym_register] = ACTIONS(2583), + [anon_sym_inline] = ACTIONS(2583), + [anon_sym_const] = ACTIONS(2583), + [anon_sym_restrict] = ACTIONS(2583), + [anon_sym_volatile] = ACTIONS(2583), + [anon_sym__Atomic] = ACTIONS(2583), + [anon_sym_mutable] = ACTIONS(2583), + [anon_sym_explicit] = ACTIONS(2583), + [anon_sym_constexpr] = ACTIONS(2583), + [anon_sym_unsigned] = ACTIONS(2583), + [anon_sym_long] = ACTIONS(2583), + [anon_sym_short] = ACTIONS(2583), + [sym_primitive_type] = ACTIONS(2583), + [anon_sym_enum] = ACTIONS(2583), + [anon_sym_struct] = ACTIONS(2583), + [anon_sym_union] = ACTIONS(2583), + [anon_sym_if] = ACTIONS(2583), + [anon_sym_switch] = ACTIONS(2583), + [anon_sym_case] = ACTIONS(2583), + [anon_sym_default] = ACTIONS(2583), + [anon_sym_while] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_for] = ACTIONS(2583), + [anon_sym_return] = ACTIONS(2583), + [anon_sym_break] = ACTIONS(2583), + [anon_sym_continue] = ACTIONS(2583), + [anon_sym_goto] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(2581), + [anon_sym_TILDE] = ACTIONS(2581), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2581), + [anon_sym_PLUS_PLUS] = ACTIONS(2581), + [anon_sym_sizeof] = ACTIONS(2583), + [sym_number_literal] = ACTIONS(2581), + [sym_char_literal] = ACTIONS(2581), + [sym_string_literal] = ACTIONS(2581), + [sym_true] = ACTIONS(2583), + [sym_false] = ACTIONS(2583), + [sym_null] = ACTIONS(2583), + [sym_identifier] = ACTIONS(2583), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2583), + [sym_auto] = ACTIONS(2583), + [anon_sym_typename] = ACTIONS(2583), + [anon_sym_new] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2581), + [anon_sym_delete] = ACTIONS(2583), + [sym_nullptr] = ACTIONS(2583), }, - [2704] = { + [2720] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6736), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6788), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2705] = { - [anon_sym_SEMI] = ACTIONS(6736), + [2721] = { + [anon_sym_SEMI] = ACTIONS(6788), [sym_comment] = ACTIONS(49), }, - [2706] = { - [sym_raw_string_literal] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2587), - [anon_sym_LPAREN] = ACTIONS(2585), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2587), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2587), - [sym_preproc_directive] = ACTIONS(2587), - [anon_sym_SEMI] = ACTIONS(2585), - [anon_sym_typedef] = ACTIONS(2587), - [anon_sym_extern] = ACTIONS(2587), - [anon_sym_LBRACE] = ACTIONS(2585), - [anon_sym_STAR] = ACTIONS(2585), - [anon_sym_LBRACK] = ACTIONS(2585), - [anon_sym_static] = ACTIONS(2587), - [anon_sym_register] = ACTIONS(2587), - [anon_sym_inline] = ACTIONS(2587), - [anon_sym_const] = ACTIONS(2587), - [anon_sym_restrict] = ACTIONS(2587), - [anon_sym_volatile] = ACTIONS(2587), - [anon_sym__Atomic] = ACTIONS(2587), - [anon_sym_mutable] = ACTIONS(2587), - [anon_sym_explicit] = ACTIONS(2587), - [anon_sym_constexpr] = ACTIONS(2587), - [anon_sym_unsigned] = ACTIONS(2587), - [anon_sym_long] = ACTIONS(2587), - [anon_sym_short] = ACTIONS(2587), - [sym_primitive_type] = ACTIONS(2587), - [anon_sym_enum] = ACTIONS(2587), - [anon_sym_struct] = ACTIONS(2587), - [anon_sym_union] = ACTIONS(2587), - [anon_sym_if] = ACTIONS(2587), - [anon_sym_switch] = ACTIONS(2587), - [anon_sym_case] = ACTIONS(2587), - [anon_sym_default] = ACTIONS(2587), - [anon_sym_while] = ACTIONS(2587), - [anon_sym_do] = ACTIONS(2587), - [anon_sym_for] = ACTIONS(2587), - [anon_sym_return] = ACTIONS(2587), - [anon_sym_break] = ACTIONS(2587), - [anon_sym_continue] = ACTIONS(2587), - [anon_sym_goto] = ACTIONS(2587), - [anon_sym_AMP] = ACTIONS(2585), - [anon_sym_BANG] = ACTIONS(2585), - [anon_sym_TILDE] = ACTIONS(2585), - [anon_sym_PLUS] = ACTIONS(2587), - [anon_sym_DASH] = ACTIONS(2587), - [anon_sym_DASH_DASH] = ACTIONS(2585), - [anon_sym_PLUS_PLUS] = ACTIONS(2585), - [anon_sym_sizeof] = ACTIONS(2587), - [sym_number_literal] = ACTIONS(2585), - [sym_char_literal] = ACTIONS(2585), - [sym_string_literal] = ACTIONS(2585), - [sym_true] = ACTIONS(2587), - [sym_false] = ACTIONS(2587), - [sym_null] = ACTIONS(2587), - [sym_identifier] = ACTIONS(2587), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2587), - [sym_auto] = ACTIONS(2587), - [anon_sym_typename] = ACTIONS(2587), - [anon_sym_new] = ACTIONS(2587), - [anon_sym_COLON_COLON] = ACTIONS(2585), - [anon_sym_delete] = ACTIONS(2587), - [sym_nullptr] = ACTIONS(2587), + [2722] = { + [sym_raw_string_literal] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2587), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2589), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2589), + [sym_preproc_directive] = ACTIONS(2589), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_typedef] = ACTIONS(2589), + [anon_sym_extern] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2587), + [anon_sym_STAR] = ACTIONS(2587), + [anon_sym_LBRACK] = ACTIONS(2587), + [anon_sym_static] = ACTIONS(2589), + [anon_sym_register] = ACTIONS(2589), + [anon_sym_inline] = ACTIONS(2589), + [anon_sym_const] = ACTIONS(2589), + [anon_sym_restrict] = ACTIONS(2589), + [anon_sym_volatile] = ACTIONS(2589), + [anon_sym__Atomic] = ACTIONS(2589), + [anon_sym_mutable] = ACTIONS(2589), + [anon_sym_explicit] = ACTIONS(2589), + [anon_sym_constexpr] = ACTIONS(2589), + [anon_sym_unsigned] = ACTIONS(2589), + [anon_sym_long] = ACTIONS(2589), + [anon_sym_short] = ACTIONS(2589), + [sym_primitive_type] = ACTIONS(2589), + [anon_sym_enum] = ACTIONS(2589), + [anon_sym_struct] = ACTIONS(2589), + [anon_sym_union] = ACTIONS(2589), + [anon_sym_if] = ACTIONS(2589), + [anon_sym_switch] = ACTIONS(2589), + [anon_sym_case] = ACTIONS(2589), + [anon_sym_default] = ACTIONS(2589), + [anon_sym_while] = ACTIONS(2589), + [anon_sym_do] = ACTIONS(2589), + [anon_sym_for] = ACTIONS(2589), + [anon_sym_return] = ACTIONS(2589), + [anon_sym_break] = ACTIONS(2589), + [anon_sym_continue] = ACTIONS(2589), + [anon_sym_goto] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2587), + [anon_sym_BANG] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(2587), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2587), + [anon_sym_PLUS_PLUS] = ACTIONS(2587), + [anon_sym_sizeof] = ACTIONS(2589), + [sym_number_literal] = ACTIONS(2587), + [sym_char_literal] = ACTIONS(2587), + [sym_string_literal] = ACTIONS(2587), + [sym_true] = ACTIONS(2589), + [sym_false] = ACTIONS(2589), + [sym_null] = ACTIONS(2589), + [sym_identifier] = ACTIONS(2589), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2589), + [sym_auto] = ACTIONS(2589), + [anon_sym_typename] = ACTIONS(2589), + [anon_sym_new] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2587), + [anon_sym_delete] = ACTIONS(2589), + [sym_nullptr] = ACTIONS(2589), }, - [2707] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), + [2723] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), }, - [2708] = { + [2724] = { [sym_raw_string_literal] = ACTIONS(1614), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1616), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), @@ -107888,17 +108576,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1616), [sym_nullptr] = ACTIONS(1616), }, - [2709] = { - [sym_preproc_include] = STATE(2836), - [sym_preproc_def] = STATE(2836), - [sym_preproc_function_def] = STATE(2836), - [sym_preproc_call] = STATE(2836), + [2725] = { + [sym_preproc_include] = STATE(2858), + [sym_preproc_def] = STATE(2858), + [sym_preproc_function_def] = STATE(2858), + [sym_preproc_call] = STATE(2858), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(2836), - [sym_type_definition] = STATE(2836), + [sym_declaration] = STATE(2858), + [sym_type_definition] = STATE(2858), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(2836), + [sym_compound_statement] = STATE(2858), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -107906,18 +108594,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2836), - [sym_expression_statement] = STATE(2836), - [sym_if_statement] = STATE(2836), - [sym_switch_statement] = STATE(2836), - [sym_case_statement] = STATE(2836), - [sym_while_statement] = STATE(2836), - [sym_do_statement] = STATE(2836), - [sym_for_statement] = STATE(2836), - [sym_return_statement] = STATE(2836), - [sym_break_statement] = STATE(2836), - [sym_continue_statement] = STATE(2836), - [sym_goto_statement] = STATE(2836), + [sym_labeled_statement] = STATE(2858), + [sym_expression_statement] = STATE(2858), + [sym_if_statement] = STATE(2858), + [sym_switch_statement] = STATE(2858), + [sym_case_statement] = STATE(2858), + [sym_while_statement] = STATE(2858), + [sym_do_statement] = STATE(2858), + [sym_for_statement] = STATE(2858), + [sym_return_statement] = STATE(2858), + [sym_break_statement] = STATE(2858), + [sym_continue_statement] = STATE(2858), + [sym_goto_statement] = STATE(2858), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -107937,14 +108625,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(2836), + [sym__empty_declaration] = STATE(2858), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2836), + [sym_structured_binding_declaration] = STATE(2858), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2836), + [sym_for_range_loop] = STATE(2858), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -107952,7 +108640,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2836), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2858), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -107967,7 +108655,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6738), + [anon_sym_RBRACE] = ACTIONS(6790), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -108022,135 +108710,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2710] = { - [anon_sym_LPAREN] = ACTIONS(6740), - [sym_comment] = ACTIONS(49), - }, - [2711] = { - [anon_sym_LPAREN] = ACTIONS(6742), + [2726] = { + [anon_sym_LPAREN] = ACTIONS(6792), + [anon_sym_constexpr] = ACTIONS(6794), [sym_comment] = ACTIONS(49), }, - [2712] = { - [sym__expression] = STATE(2839), - [sym_conditional_expression] = STATE(2839), - [sym_assignment_expression] = STATE(2839), - [sym_pointer_expression] = STATE(2839), - [sym_logical_expression] = STATE(2839), - [sym_bitwise_expression] = STATE(2839), - [sym_equality_expression] = STATE(2839), - [sym_relational_expression] = STATE(2839), - [sym_shift_expression] = STATE(2839), - [sym_math_expression] = STATE(2839), - [sym_cast_expression] = STATE(2839), - [sym_sizeof_expression] = STATE(2839), - [sym_subscript_expression] = STATE(2839), - [sym_call_expression] = STATE(2839), - [sym_field_expression] = STATE(2839), - [sym_compound_literal_expression] = STATE(2839), - [sym_parenthesized_expression] = STATE(2839), - [sym_concatenated_string] = STATE(2839), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2839), - [sym_new_expression] = STATE(2839), - [sym_delete_expression] = STATE(2839), - [sym_lambda_expression] = STATE(2839), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6744), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6744), - [sym_char_literal] = ACTIONS(6744), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6746), - [sym_false] = ACTIONS(6746), - [sym_null] = ACTIONS(6746), - [sym_identifier] = ACTIONS(1105), + [2727] = { + [anon_sym_LPAREN] = ACTIONS(6796), [sym_comment] = ACTIONS(49), - [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6746), }, - [2713] = { - [anon_sym_COLON] = ACTIONS(6748), - [sym_comment] = ACTIONS(49), + [2728] = { + [sym__expression] = STATE(2862), + [sym_conditional_expression] = STATE(2862), + [sym_assignment_expression] = STATE(2862), + [sym_pointer_expression] = STATE(2862), + [sym_logical_expression] = STATE(2862), + [sym_bitwise_expression] = STATE(2862), + [sym_equality_expression] = STATE(2862), + [sym_relational_expression] = STATE(2862), + [sym_shift_expression] = STATE(2862), + [sym_math_expression] = STATE(2862), + [sym_cast_expression] = STATE(2862), + [sym_sizeof_expression] = STATE(2862), + [sym_subscript_expression] = STATE(2862), + [sym_call_expression] = STATE(2862), + [sym_field_expression] = STATE(2862), + [sym_compound_literal_expression] = STATE(2862), + [sym_parenthesized_expression] = STATE(2862), + [sym_concatenated_string] = STATE(2862), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2862), + [sym_new_expression] = STATE(2862), + [sym_delete_expression] = STATE(2862), + [sym_lambda_expression] = STATE(2862), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6798), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6798), + [sym_char_literal] = ACTIONS(6798), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6800), + [sym_false] = ACTIONS(6800), + [sym_null] = ACTIONS(6800), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6800), }, - [2714] = { - [anon_sym_LPAREN] = ACTIONS(6750), + [2729] = { + [anon_sym_COLON] = ACTIONS(6802), [sym_comment] = ACTIONS(49), }, - [2715] = { - [sym_compound_statement] = STATE(2842), - [sym_labeled_statement] = STATE(2842), - [sym_expression_statement] = STATE(2842), - [sym_if_statement] = STATE(2842), - [sym_switch_statement] = STATE(2842), - [sym_case_statement] = STATE(2842), - [sym_while_statement] = STATE(2842), - [sym_do_statement] = STATE(2842), - [sym_for_statement] = STATE(2842), - [sym_return_statement] = STATE(2842), - [sym_break_statement] = STATE(2842), - [sym_continue_statement] = STATE(2842), - [sym_goto_statement] = STATE(2842), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2842), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2730] = { + [anon_sym_LPAREN] = ACTIONS(6804), + [sym_comment] = ACTIONS(49), + }, + [2731] = { + [sym_compound_statement] = STATE(2865), + [sym_labeled_statement] = STATE(2865), + [sym_expression_statement] = STATE(2865), + [sym_if_statement] = STATE(2865), + [sym_switch_statement] = STATE(2865), + [sym_case_statement] = STATE(2865), + [sym_while_statement] = STATE(2865), + [sym_do_statement] = STATE(2865), + [sym_for_statement] = STATE(2865), + [sym_return_statement] = STATE(2865), + [sym_break_statement] = STATE(2865), + [sym_continue_statement] = STATE(2865), + [sym_goto_statement] = STATE(2865), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2865), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -108159,55 +108848,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2716] = { - [anon_sym_LPAREN] = ACTIONS(6752), + [2732] = { + [anon_sym_LPAREN] = ACTIONS(6806), [sym_comment] = ACTIONS(49), }, - [2717] = { - [sym__expression] = STATE(2845), - [sym_conditional_expression] = STATE(2845), - [sym_assignment_expression] = STATE(2845), - [sym_pointer_expression] = STATE(2845), - [sym_logical_expression] = STATE(2845), - [sym_bitwise_expression] = STATE(2845), - [sym_equality_expression] = STATE(2845), - [sym_relational_expression] = STATE(2845), - [sym_shift_expression] = STATE(2845), - [sym_math_expression] = STATE(2845), - [sym_cast_expression] = STATE(2845), - [sym_sizeof_expression] = STATE(2845), - [sym_subscript_expression] = STATE(2845), - [sym_call_expression] = STATE(2845), - [sym_field_expression] = STATE(2845), - [sym_compound_literal_expression] = STATE(2845), - [sym_parenthesized_expression] = STATE(2845), - [sym_initializer_list] = STATE(2846), - [sym_concatenated_string] = STATE(2845), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2845), - [sym_new_expression] = STATE(2845), - [sym_delete_expression] = STATE(2845), - [sym_lambda_expression] = STATE(2845), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6754), + [2733] = { + [sym__expression] = STATE(2868), + [sym_conditional_expression] = STATE(2868), + [sym_assignment_expression] = STATE(2868), + [sym_pointer_expression] = STATE(2868), + [sym_logical_expression] = STATE(2868), + [sym_bitwise_expression] = STATE(2868), + [sym_equality_expression] = STATE(2868), + [sym_relational_expression] = STATE(2868), + [sym_shift_expression] = STATE(2868), + [sym_math_expression] = STATE(2868), + [sym_cast_expression] = STATE(2868), + [sym_sizeof_expression] = STATE(2868), + [sym_subscript_expression] = STATE(2868), + [sym_call_expression] = STATE(2868), + [sym_field_expression] = STATE(2868), + [sym_compound_literal_expression] = STATE(2868), + [sym_parenthesized_expression] = STATE(2868), + [sym_initializer_list] = STATE(2869), + [sym_concatenated_string] = STATE(2868), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2868), + [sym_new_expression] = STATE(2868), + [sym_delete_expression] = STATE(2868), + [sym_lambda_expression] = STATE(2868), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6808), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6756), + [anon_sym_SEMI] = ACTIONS(6810), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -108219,34 +108908,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6754), - [sym_char_literal] = ACTIONS(6754), + [sym_number_literal] = ACTIONS(6808), + [sym_char_literal] = ACTIONS(6808), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6758), - [sym_false] = ACTIONS(6758), - [sym_null] = ACTIONS(6758), + [sym_true] = ACTIONS(6812), + [sym_false] = ACTIONS(6812), + [sym_null] = ACTIONS(6812), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6758), + [sym_nullptr] = ACTIONS(6812), }, - [2718] = { - [anon_sym_SEMI] = ACTIONS(6760), + [2734] = { + [anon_sym_SEMI] = ACTIONS(6814), [sym_comment] = ACTIONS(49), }, - [2719] = { - [anon_sym_SEMI] = ACTIONS(6762), + [2735] = { + [anon_sym_SEMI] = ACTIONS(6816), [sym_comment] = ACTIONS(49), }, - [2720] = { - [sym_identifier] = ACTIONS(6764), + [2736] = { + [sym_identifier] = ACTIONS(6818), [sym_comment] = ACTIONS(49), }, - [2721] = { + [2737] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -108254,7 +108943,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(6766), + [anon_sym_COLON] = ACTIONS(6820), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -108288,366 +108977,447 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2722] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(6768), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [2738] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(6822), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [2723] = { + [2739] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(6770), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(6824), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2724] = { - [anon_sym_SEMI] = ACTIONS(6770), + [2740] = { + [anon_sym_SEMI] = ACTIONS(6824), [sym_comment] = ACTIONS(49), }, - [2725] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), - }, - [2726] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), + [2741] = { + [sym_compound_statement] = STATE(2876), + [sym_labeled_statement] = STATE(2876), + [sym_expression_statement] = STATE(2876), + [sym_if_statement] = STATE(2876), + [sym_switch_statement] = STATE(2876), + [sym_case_statement] = STATE(2876), + [sym_while_statement] = STATE(2876), + [sym_do_statement] = STATE(2876), + [sym_for_statement] = STATE(2876), + [sym_return_statement] = STATE(2876), + [sym_break_statement] = STATE(2876), + [sym_continue_statement] = STATE(2876), + [sym_goto_statement] = STATE(2876), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(2876), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6535), }, - [2727] = { + [2742] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [2743] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), + }, + [2744] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6772), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6826), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2728] = { - [sym_compound_statement] = STATE(2854), - [sym_labeled_statement] = STATE(2854), - [sym_expression_statement] = STATE(2854), - [sym_if_statement] = STATE(2854), - [sym_switch_statement] = STATE(2854), - [sym_case_statement] = STATE(2854), - [sym_while_statement] = STATE(2854), - [sym_do_statement] = STATE(2854), - [sym_for_statement] = STATE(2854), - [sym_return_statement] = STATE(2854), - [sym_break_statement] = STATE(2854), - [sym_continue_statement] = STATE(2854), - [sym_goto_statement] = STATE(2854), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2854), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2745] = { + [sym_compound_statement] = STATE(2878), + [sym_labeled_statement] = STATE(2878), + [sym_expression_statement] = STATE(2878), + [sym_if_statement] = STATE(2878), + [sym_switch_statement] = STATE(2878), + [sym_case_statement] = STATE(2878), + [sym_while_statement] = STATE(2878), + [sym_do_statement] = STATE(2878), + [sym_for_statement] = STATE(2878), + [sym_return_statement] = STATE(2878), + [sym_break_statement] = STATE(2878), + [sym_continue_statement] = STATE(2878), + [sym_goto_statement] = STATE(2878), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2878), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -108656,93 +109426,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2729] = { + [2746] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2856), + [aux_sym_for_statement_repeat1] = STATE(2880), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6774), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6828), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2730] = { - [sym__expression] = STATE(2857), - [sym_conditional_expression] = STATE(2857), - [sym_assignment_expression] = STATE(2857), - [sym_pointer_expression] = STATE(2857), - [sym_logical_expression] = STATE(2857), - [sym_bitwise_expression] = STATE(2857), - [sym_equality_expression] = STATE(2857), - [sym_relational_expression] = STATE(2857), - [sym_shift_expression] = STATE(2857), - [sym_math_expression] = STATE(2857), - [sym_cast_expression] = STATE(2857), - [sym_sizeof_expression] = STATE(2857), - [sym_subscript_expression] = STATE(2857), - [sym_call_expression] = STATE(2857), - [sym_field_expression] = STATE(2857), - [sym_compound_literal_expression] = STATE(2857), - [sym_parenthesized_expression] = STATE(2857), - [sym_concatenated_string] = STATE(2857), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2857), - [sym_new_expression] = STATE(2857), - [sym_delete_expression] = STATE(2857), - [sym_lambda_expression] = STATE(2857), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6776), + [2747] = { + [sym__expression] = STATE(2881), + [sym_conditional_expression] = STATE(2881), + [sym_assignment_expression] = STATE(2881), + [sym_pointer_expression] = STATE(2881), + [sym_logical_expression] = STATE(2881), + [sym_bitwise_expression] = STATE(2881), + [sym_equality_expression] = STATE(2881), + [sym_relational_expression] = STATE(2881), + [sym_shift_expression] = STATE(2881), + [sym_math_expression] = STATE(2881), + [sym_cast_expression] = STATE(2881), + [sym_sizeof_expression] = STATE(2881), + [sym_subscript_expression] = STATE(2881), + [sym_call_expression] = STATE(2881), + [sym_field_expression] = STATE(2881), + [sym_compound_literal_expression] = STATE(2881), + [sym_parenthesized_expression] = STATE(2881), + [sym_concatenated_string] = STATE(2881), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2881), + [sym_new_expression] = STATE(2881), + [sym_delete_expression] = STATE(2881), + [sym_lambda_expression] = STATE(2881), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6830), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6774), + [anon_sym_RPAREN] = ACTIONS(6828), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -108753,438 +109523,491 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6776), - [sym_char_literal] = ACTIONS(6776), + [sym_number_literal] = ACTIONS(6830), + [sym_char_literal] = ACTIONS(6830), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6778), - [sym_false] = ACTIONS(6778), - [sym_null] = ACTIONS(6778), + [sym_true] = ACTIONS(6832), + [sym_false] = ACTIONS(6832), + [sym_null] = ACTIONS(6832), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6778), + [sym_nullptr] = ACTIONS(6832), }, - [2731] = { + [2748] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6780), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6834), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2732] = { + [2749] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6782), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6836), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2733] = { - [sym_raw_string_literal] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(4060), - [anon_sym_case] = ACTIONS(4060), - [anon_sym_default] = ACTIONS(4060), - [anon_sym_while] = ACTIONS(4060), - [anon_sym_do] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_sizeof] = ACTIONS(4060), - [sym_number_literal] = ACTIONS(4058), - [sym_char_literal] = ACTIONS(4058), - [sym_string_literal] = ACTIONS(4058), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_null] = ACTIONS(4060), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_new] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4060), - [sym_nullptr] = ACTIONS(4060), + [2750] = { + [sym_raw_string_literal] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4064), + [sym_char_literal] = ACTIONS(4064), + [sym_string_literal] = ACTIONS(4064), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [sym_null] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4066), + [sym_nullptr] = ACTIONS(4066), }, - [2734] = { - [sym_raw_string_literal] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4106), - [sym_char_literal] = ACTIONS(4106), - [sym_string_literal] = ACTIONS(4106), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [sym_null] = ACTIONS(4108), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_delete] = ACTIONS(4108), - [sym_nullptr] = ACTIONS(4108), + [2751] = { + [sym_raw_string_literal] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4112), + [sym_char_literal] = ACTIONS(4112), + [sym_string_literal] = ACTIONS(4112), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [sym_null] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4114), + [sym_nullptr] = ACTIONS(4114), }, - [2735] = { + [2752] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2736] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), + [2753] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), }, - [2737] = { + [2754] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6784), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6838), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2738] = { + [2755] = { + [sym__expression] = STATE(2885), + [sym_conditional_expression] = STATE(2885), + [sym_assignment_expression] = STATE(2885), + [sym_pointer_expression] = STATE(2885), + [sym_logical_expression] = STATE(2885), + [sym_bitwise_expression] = STATE(2885), + [sym_equality_expression] = STATE(2885), + [sym_relational_expression] = STATE(2885), + [sym_shift_expression] = STATE(2885), + [sym_math_expression] = STATE(2885), + [sym_cast_expression] = STATE(2885), + [sym_sizeof_expression] = STATE(2885), + [sym_subscript_expression] = STATE(2885), + [sym_call_expression] = STATE(2885), + [sym_field_expression] = STATE(2885), + [sym_compound_literal_expression] = STATE(2885), + [sym_parenthesized_expression] = STATE(2885), + [sym_concatenated_string] = STATE(2885), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2885), + [sym_new_expression] = STATE(2885), + [sym_delete_expression] = STATE(2885), + [sym_lambda_expression] = STATE(2885), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6840), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6840), + [sym_char_literal] = ACTIONS(6840), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6842), + [sym_false] = ACTIONS(6842), + [sym_null] = ACTIONS(6842), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6842), + }, + [2756] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6786), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6844), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2739] = { - [sym_declaration] = STATE(2862), - [sym_type_definition] = STATE(2862), - [sym__declaration_specifiers] = STATE(2743), - [sym_compound_statement] = STATE(2862), + [2757] = { + [sym_declaration] = STATE(2887), + [sym_type_definition] = STATE(2887), + [sym__declaration_specifiers] = STATE(2761), + [sym_compound_statement] = STATE(2887), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -109192,58 +110015,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2862), - [sym_expression_statement] = STATE(2862), - [sym_if_statement] = STATE(2862), - [sym_switch_statement] = STATE(2862), - [sym_case_statement] = STATE(2862), - [sym_while_statement] = STATE(2862), - [sym_do_statement] = STATE(2862), - [sym_for_statement] = STATE(2862), - [sym_return_statement] = STATE(2862), - [sym_break_statement] = STATE(2862), - [sym_continue_statement] = STATE(2862), - [sym_goto_statement] = STATE(2862), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), + [sym_labeled_statement] = STATE(2887), + [sym_expression_statement] = STATE(2887), + [sym_if_statement] = STATE(2887), + [sym_switch_statement] = STATE(2887), + [sym_case_statement] = STATE(2887), + [sym_while_statement] = STATE(2887), + [sym_do_statement] = STATE(2887), + [sym_for_statement] = STATE(2887), + [sym_return_statement] = STATE(2887), + [sym_break_statement] = STATE(2887), + [sym_continue_statement] = STATE(2887), + [sym_goto_statement] = STATE(2887), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2862), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2887), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(5520), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_typedef] = ACTIONS(6545), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_typedef] = ACTIONS(6587), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -109263,17 +110086,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -109282,36 +110105,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(6547), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(6589), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2740] = { - [sym_type_qualifier] = STATE(2864), - [sym__type_specifier] = STATE(2863), - [sym_sized_type_specifier] = STATE(2863), - [sym_enum_specifier] = STATE(2863), - [sym_struct_specifier] = STATE(2863), - [sym_union_specifier] = STATE(2863), - [sym_macro_type_specifier] = STATE(2863), - [sym_class_specifier] = STATE(2863), - [sym_dependent_type] = STATE(2863), + [2758] = { + [sym_type_qualifier] = STATE(2889), + [sym__type_specifier] = STATE(2888), + [sym_sized_type_specifier] = STATE(2888), + [sym_enum_specifier] = STATE(2888), + [sym_struct_specifier] = STATE(2888), + [sym_union_specifier] = STATE(2888), + [sym_macro_type_specifier] = STATE(2888), + [sym_class_specifier] = STATE(2888), + [sym_dependent_type] = STATE(2888), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(2864), + [aux_sym_type_definition_repeat1] = STATE(2889), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -109323,20 +110146,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(6788), + [sym_primitive_type] = ACTIONS(6846), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(6788), + [sym_auto] = ACTIONS(6846), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2741] = { + [2759] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -109355,7 +110178,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(6233), + [anon_sym_COLON] = ACTIONS(6265), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -109391,88 +110214,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2742] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_RBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [2760] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [2743] = { - [sym__declarator] = STATE(2865), - [sym_pointer_declarator] = STATE(2865), - [sym_function_declarator] = STATE(2865), - [sym_array_declarator] = STATE(2865), - [sym_init_declarator] = STATE(2866), - [sym_reference_declarator] = STATE(2865), + [2761] = { + [sym__declarator] = STATE(2890), + [sym_pointer_declarator] = STATE(2890), + [sym_function_declarator] = STATE(2890), + [sym_array_declarator] = STATE(2890), + [sym_init_declarator] = STATE(2891), + [sym_reference_declarator] = STATE(2890), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(2865), - [sym_destructor_name] = STATE(2865), + [sym_template_function] = STATE(2890), + [sym_destructor_name] = STATE(2890), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -109484,84 +110307,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(6790), + [sym_operator_name] = ACTIONS(6848), }, - [2744] = { + [2762] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6792), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6850), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2745] = { - [anon_sym_LPAREN] = ACTIONS(6794), + [2763] = { + [anon_sym_LPAREN] = ACTIONS(6852), [sym_comment] = ACTIONS(49), }, - [2746] = { - [sym__expression] = STATE(2870), - [sym_conditional_expression] = STATE(2870), - [sym_assignment_expression] = STATE(2870), - [sym_pointer_expression] = STATE(2870), - [sym_logical_expression] = STATE(2870), - [sym_bitwise_expression] = STATE(2870), - [sym_equality_expression] = STATE(2870), - [sym_relational_expression] = STATE(2870), - [sym_shift_expression] = STATE(2870), - [sym_math_expression] = STATE(2870), - [sym_cast_expression] = STATE(2870), - [sym_sizeof_expression] = STATE(2870), - [sym_subscript_expression] = STATE(2870), - [sym_call_expression] = STATE(2870), - [sym_field_expression] = STATE(2870), - [sym_compound_literal_expression] = STATE(2870), - [sym_parenthesized_expression] = STATE(2870), - [sym_concatenated_string] = STATE(2870), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2870), - [sym_new_expression] = STATE(2870), - [sym_delete_expression] = STATE(2870), - [sym_lambda_expression] = STATE(2870), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6796), + [2764] = { + [sym__expression] = STATE(2895), + [sym_conditional_expression] = STATE(2895), + [sym_assignment_expression] = STATE(2895), + [sym_pointer_expression] = STATE(2895), + [sym_logical_expression] = STATE(2895), + [sym_bitwise_expression] = STATE(2895), + [sym_equality_expression] = STATE(2895), + [sym_relational_expression] = STATE(2895), + [sym_shift_expression] = STATE(2895), + [sym_math_expression] = STATE(2895), + [sym_cast_expression] = STATE(2895), + [sym_sizeof_expression] = STATE(2895), + [sym_subscript_expression] = STATE(2895), + [sym_call_expression] = STATE(2895), + [sym_field_expression] = STATE(2895), + [sym_compound_literal_expression] = STATE(2895), + [sym_parenthesized_expression] = STATE(2895), + [sym_concatenated_string] = STATE(2895), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2895), + [sym_new_expression] = STATE(2895), + [sym_delete_expression] = STATE(2895), + [sym_lambda_expression] = STATE(2895), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6854), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6798), + [anon_sym_SEMI] = ACTIONS(6856), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -109572,532 +110395,617 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6796), - [sym_char_literal] = ACTIONS(6796), + [sym_number_literal] = ACTIONS(6854), + [sym_char_literal] = ACTIONS(6854), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6800), - [sym_false] = ACTIONS(6800), - [sym_null] = ACTIONS(6800), + [sym_true] = ACTIONS(6858), + [sym_false] = ACTIONS(6858), + [sym_null] = ACTIONS(6858), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6800), + [sym_nullptr] = ACTIONS(6858), }, - [2747] = { + [2765] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6802), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6860), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2748] = { - [anon_sym_COLON] = ACTIONS(6804), + [2766] = { + [anon_sym_COLON] = ACTIONS(6862), [sym_comment] = ACTIONS(49), }, - [2749] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_RBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [2767] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_RBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_else] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [2750] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_RBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [2768] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_RBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_else] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [2751] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [2769] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_RBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [2752] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_RBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), + [2770] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_RBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), }, - [2753] = { + [2771] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2754] = { - [sym__expression] = STATE(2873), - [sym_conditional_expression] = STATE(2873), - [sym_assignment_expression] = STATE(2873), - [sym_pointer_expression] = STATE(2873), - [sym_logical_expression] = STATE(2873), - [sym_bitwise_expression] = STATE(2873), - [sym_equality_expression] = STATE(2873), - [sym_relational_expression] = STATE(2873), - [sym_shift_expression] = STATE(2873), - [sym_math_expression] = STATE(2873), - [sym_cast_expression] = STATE(2873), - [sym_sizeof_expression] = STATE(2873), - [sym_subscript_expression] = STATE(2873), - [sym_call_expression] = STATE(2873), - [sym_field_expression] = STATE(2873), - [sym_compound_literal_expression] = STATE(2873), - [sym_parenthesized_expression] = STATE(2873), - [sym_concatenated_string] = STATE(2873), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2873), - [sym_new_expression] = STATE(2873), - [sym_delete_expression] = STATE(2873), - [sym_lambda_expression] = STATE(2873), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6810), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6810), - [sym_char_literal] = ACTIONS(6810), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6812), - [sym_false] = ACTIONS(6812), - [sym_null] = ACTIONS(6812), + [2772] = { + [sym_compound_statement] = STATE(2898), + [sym_labeled_statement] = STATE(2898), + [sym_expression_statement] = STATE(2898), + [sym_if_statement] = STATE(2898), + [sym_switch_statement] = STATE(2898), + [sym_case_statement] = STATE(2898), + [sym_while_statement] = STATE(2898), + [sym_do_statement] = STATE(2898), + [sym_for_statement] = STATE(2898), + [sym_return_statement] = STATE(2898), + [sym_break_statement] = STATE(2898), + [sym_continue_statement] = STATE(2898), + [sym_goto_statement] = STATE(2898), + [sym__expression] = STATE(413), + [sym_comma_expression] = STATE(414), + [sym_conditional_expression] = STATE(413), + [sym_assignment_expression] = STATE(413), + [sym_pointer_expression] = STATE(413), + [sym_logical_expression] = STATE(413), + [sym_bitwise_expression] = STATE(413), + [sym_equality_expression] = STATE(413), + [sym_relational_expression] = STATE(413), + [sym_shift_expression] = STATE(413), + [sym_math_expression] = STATE(413), + [sym_cast_expression] = STATE(413), + [sym_sizeof_expression] = STATE(413), + [sym_subscript_expression] = STATE(413), + [sym_call_expression] = STATE(413), + [sym_field_expression] = STATE(413), + [sym_compound_literal_expression] = STATE(413), + [sym_parenthesized_expression] = STATE(413), + [sym_concatenated_string] = STATE(413), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(413), + [sym_for_range_loop] = STATE(2898), + [sym_new_expression] = STATE(413), + [sym_delete_expression] = STATE(413), + [sym_lambda_expression] = STATE(413), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(620), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(636), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(646), + [anon_sym_switch] = ACTIONS(648), + [anon_sym_case] = ACTIONS(650), + [anon_sym_default] = ACTIONS(652), + [anon_sym_while] = ACTIONS(654), + [anon_sym_do] = ACTIONS(656), + [anon_sym_for] = ACTIONS(658), + [anon_sym_return] = ACTIONS(660), + [anon_sym_break] = ACTIONS(662), + [anon_sym_continue] = ACTIONS(664), + [anon_sym_goto] = ACTIONS(666), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(620), + [sym_char_literal] = ACTIONS(620), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(680), + [sym_false] = ACTIONS(680), + [sym_null] = ACTIONS(680), + [sym_identifier] = ACTIONS(3110), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(680), + }, + [2773] = { + [sym__expression] = STATE(2899), + [sym_conditional_expression] = STATE(2899), + [sym_assignment_expression] = STATE(2899), + [sym_pointer_expression] = STATE(2899), + [sym_logical_expression] = STATE(2899), + [sym_bitwise_expression] = STATE(2899), + [sym_equality_expression] = STATE(2899), + [sym_relational_expression] = STATE(2899), + [sym_shift_expression] = STATE(2899), + [sym_math_expression] = STATE(2899), + [sym_cast_expression] = STATE(2899), + [sym_sizeof_expression] = STATE(2899), + [sym_subscript_expression] = STATE(2899), + [sym_call_expression] = STATE(2899), + [sym_field_expression] = STATE(2899), + [sym_compound_literal_expression] = STATE(2899), + [sym_parenthesized_expression] = STATE(2899), + [sym_concatenated_string] = STATE(2899), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2899), + [sym_new_expression] = STATE(2899), + [sym_delete_expression] = STATE(2899), + [sym_lambda_expression] = STATE(2899), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6868), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6868), + [sym_char_literal] = ACTIONS(6868), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6870), + [sym_false] = ACTIONS(6870), + [sym_null] = ACTIONS(6870), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6812), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6870), }, - [2755] = { - [sym__expression] = STATE(2874), - [sym_conditional_expression] = STATE(2874), - [sym_assignment_expression] = STATE(2874), - [sym_pointer_expression] = STATE(2874), - [sym_logical_expression] = STATE(2874), - [sym_bitwise_expression] = STATE(2874), - [sym_equality_expression] = STATE(2874), - [sym_relational_expression] = STATE(2874), - [sym_shift_expression] = STATE(2874), - [sym_math_expression] = STATE(2874), - [sym_cast_expression] = STATE(2874), - [sym_sizeof_expression] = STATE(2874), - [sym_subscript_expression] = STATE(2874), - [sym_call_expression] = STATE(2874), - [sym_field_expression] = STATE(2874), - [sym_compound_literal_expression] = STATE(2874), - [sym_parenthesized_expression] = STATE(2874), - [sym_concatenated_string] = STATE(2874), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2874), - [sym_new_expression] = STATE(2874), - [sym_delete_expression] = STATE(2874), - [sym_lambda_expression] = STATE(2874), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6814), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6814), - [sym_char_literal] = ACTIONS(6814), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6816), - [sym_false] = ACTIONS(6816), - [sym_null] = ACTIONS(6816), + [2774] = { + [anon_sym_LPAREN] = ACTIONS(6872), + [sym_comment] = ACTIONS(49), + }, + [2775] = { + [sym__expression] = STATE(2901), + [sym_conditional_expression] = STATE(2901), + [sym_assignment_expression] = STATE(2901), + [sym_pointer_expression] = STATE(2901), + [sym_logical_expression] = STATE(2901), + [sym_bitwise_expression] = STATE(2901), + [sym_equality_expression] = STATE(2901), + [sym_relational_expression] = STATE(2901), + [sym_shift_expression] = STATE(2901), + [sym_math_expression] = STATE(2901), + [sym_cast_expression] = STATE(2901), + [sym_sizeof_expression] = STATE(2901), + [sym_subscript_expression] = STATE(2901), + [sym_call_expression] = STATE(2901), + [sym_field_expression] = STATE(2901), + [sym_compound_literal_expression] = STATE(2901), + [sym_parenthesized_expression] = STATE(2901), + [sym_concatenated_string] = STATE(2901), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2901), + [sym_new_expression] = STATE(2901), + [sym_delete_expression] = STATE(2901), + [sym_lambda_expression] = STATE(2901), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6874), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6874), + [sym_char_literal] = ACTIONS(6874), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6876), + [sym_false] = ACTIONS(6876), + [sym_null] = ACTIONS(6876), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6816), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6876), }, - [2756] = { + [2776] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6818), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(6878), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2757] = { - [sym_declaration] = STATE(2044), - [sym_type_definition] = STATE(2044), - [sym__declaration_specifiers] = STATE(2045), - [sym_compound_statement] = STATE(2044), + [2777] = { + [sym_declaration] = STATE(2050), + [sym_type_definition] = STATE(2050), + [sym__declaration_specifiers] = STATE(2051), + [sym_compound_statement] = STATE(2050), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -110105,58 +111013,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2044), - [sym_expression_statement] = STATE(2044), - [sym_if_statement] = STATE(2044), - [sym_switch_statement] = STATE(2044), - [sym_case_statement] = STATE(2044), - [sym_while_statement] = STATE(2044), - [sym_do_statement] = STATE(2044), - [sym_for_statement] = STATE(2044), - [sym_return_statement] = STATE(2044), - [sym_break_statement] = STATE(2044), - [sym_continue_statement] = STATE(2044), - [sym_goto_statement] = STATE(2044), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), + [sym_labeled_statement] = STATE(2050), + [sym_expression_statement] = STATE(2050), + [sym_if_statement] = STATE(2050), + [sym_switch_statement] = STATE(2050), + [sym_case_statement] = STATE(2050), + [sym_while_statement] = STATE(2050), + [sym_do_statement] = STATE(2050), + [sym_for_statement] = STATE(2050), + [sym_return_statement] = STATE(2050), + [sym_break_statement] = STATE(2050), + [sym_continue_statement] = STATE(2050), + [sym_goto_statement] = STATE(2050), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2044), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2050), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_typedef] = ACTIONS(4657), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -110176,17 +111084,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -110195,78 +111103,78 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6820), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6880), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2758] = { - [sym__expression] = STATE(2877), - [sym_conditional_expression] = STATE(2877), - [sym_assignment_expression] = STATE(2877), - [sym_pointer_expression] = STATE(2877), - [sym_logical_expression] = STATE(2877), - [sym_bitwise_expression] = STATE(2877), - [sym_equality_expression] = STATE(2877), - [sym_relational_expression] = STATE(2877), - [sym_shift_expression] = STATE(2877), - [sym_math_expression] = STATE(2877), - [sym_cast_expression] = STATE(2877), - [sym_sizeof_expression] = STATE(2877), - [sym_subscript_expression] = STATE(2877), - [sym_call_expression] = STATE(2877), - [sym_field_expression] = STATE(2877), - [sym_compound_literal_expression] = STATE(2877), - [sym_parenthesized_expression] = STATE(2877), - [sym_concatenated_string] = STATE(2877), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2877), - [sym_new_expression] = STATE(2877), - [sym_delete_expression] = STATE(2877), - [sym_lambda_expression] = STATE(2877), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6822), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6822), - [sym_char_literal] = ACTIONS(6822), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6824), - [sym_false] = ACTIONS(6824), - [sym_null] = ACTIONS(6824), + [2778] = { + [sym__expression] = STATE(2904), + [sym_conditional_expression] = STATE(2904), + [sym_assignment_expression] = STATE(2904), + [sym_pointer_expression] = STATE(2904), + [sym_logical_expression] = STATE(2904), + [sym_bitwise_expression] = STATE(2904), + [sym_equality_expression] = STATE(2904), + [sym_relational_expression] = STATE(2904), + [sym_shift_expression] = STATE(2904), + [sym_math_expression] = STATE(2904), + [sym_cast_expression] = STATE(2904), + [sym_sizeof_expression] = STATE(2904), + [sym_subscript_expression] = STATE(2904), + [sym_call_expression] = STATE(2904), + [sym_field_expression] = STATE(2904), + [sym_compound_literal_expression] = STATE(2904), + [sym_parenthesized_expression] = STATE(2904), + [sym_concatenated_string] = STATE(2904), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2904), + [sym_new_expression] = STATE(2904), + [sym_delete_expression] = STATE(2904), + [sym_lambda_expression] = STATE(2904), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6882), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6882), + [sym_char_literal] = ACTIONS(6882), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6884), + [sym_false] = ACTIONS(6884), + [sym_null] = ACTIONS(6884), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6824), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6884), }, - [2759] = { - [sym_declaration] = STATE(2878), - [sym__declaration_specifiers] = STATE(1497), + [2779] = { + [sym_declaration] = STATE(2905), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -110274,42 +111182,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2879), - [sym_conditional_expression] = STATE(2879), - [sym_assignment_expression] = STATE(2879), - [sym_pointer_expression] = STATE(2879), - [sym_logical_expression] = STATE(2879), - [sym_bitwise_expression] = STATE(2879), - [sym_equality_expression] = STATE(2879), - [sym_relational_expression] = STATE(2879), - [sym_shift_expression] = STATE(2879), - [sym_math_expression] = STATE(2879), - [sym_cast_expression] = STATE(2879), - [sym_sizeof_expression] = STATE(2879), - [sym_subscript_expression] = STATE(2879), - [sym_call_expression] = STATE(2879), - [sym_field_expression] = STATE(2879), - [sym_compound_literal_expression] = STATE(2879), - [sym_parenthesized_expression] = STATE(2879), - [sym_concatenated_string] = STATE(2879), + [sym__expression] = STATE(2906), + [sym_conditional_expression] = STATE(2906), + [sym_assignment_expression] = STATE(2906), + [sym_pointer_expression] = STATE(2906), + [sym_logical_expression] = STATE(2906), + [sym_bitwise_expression] = STATE(2906), + [sym_equality_expression] = STATE(2906), + [sym_relational_expression] = STATE(2906), + [sym_shift_expression] = STATE(2906), + [sym_math_expression] = STATE(2906), + [sym_cast_expression] = STATE(2906), + [sym_sizeof_expression] = STATE(2906), + [sym_subscript_expression] = STATE(2906), + [sym_call_expression] = STATE(2906), + [sym_field_expression] = STATE(2906), + [sym_compound_literal_expression] = STATE(2906), + [sym_parenthesized_expression] = STATE(2906), + [sym_concatenated_string] = STATE(2906), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2879), - [sym_for_range_declaration] = STATE(2880), - [sym_new_expression] = STATE(2879), - [sym_delete_expression] = STATE(2879), - [sym_lambda_expression] = STATE(2879), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2906), + [sym_for_range_declaration] = STATE(2907), + [sym_new_expression] = STATE(2906), + [sym_delete_expression] = STATE(2906), + [sym_lambda_expression] = STATE(2906), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6826), + [sym_raw_string_literal] = ACTIONS(6886), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6828), + [anon_sym_SEMI] = ACTIONS(6888), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -110338,82 +111246,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6826), - [sym_char_literal] = ACTIONS(6826), + [sym_number_literal] = ACTIONS(6886), + [sym_char_literal] = ACTIONS(6886), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6830), - [sym_false] = ACTIONS(6830), - [sym_null] = ACTIONS(6830), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(6890), + [sym_false] = ACTIONS(6890), + [sym_null] = ACTIONS(6890), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6830), + [sym_nullptr] = ACTIONS(6890), }, - [2760] = { - [sym_compound_statement] = STATE(2053), - [sym_labeled_statement] = STATE(2053), - [sym_expression_statement] = STATE(2053), - [sym_if_statement] = STATE(2053), - [sym_switch_statement] = STATE(2053), - [sym_case_statement] = STATE(2053), - [sym_while_statement] = STATE(2053), - [sym_do_statement] = STATE(2053), - [sym_for_statement] = STATE(2053), - [sym_return_statement] = STATE(2053), - [sym_break_statement] = STATE(2053), - [sym_continue_statement] = STATE(2053), - [sym_goto_statement] = STATE(2053), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2053), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2780] = { + [sym_compound_statement] = STATE(2059), + [sym_labeled_statement] = STATE(2059), + [sym_expression_statement] = STATE(2059), + [sym_if_statement] = STATE(2059), + [sym_switch_statement] = STATE(2059), + [sym_case_statement] = STATE(2059), + [sym_while_statement] = STATE(2059), + [sym_do_statement] = STATE(2059), + [sym_for_statement] = STATE(2059), + [sym_return_statement] = STATE(2059), + [sym_break_statement] = STATE(2059), + [sym_continue_statement] = STATE(2059), + [sym_goto_statement] = STATE(2059), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2059), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -110422,79 +111330,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2761] = { - [sym_compound_statement] = STATE(2881), - [sym_labeled_statement] = STATE(2881), - [sym_expression_statement] = STATE(2881), - [sym_if_statement] = STATE(2881), - [sym_switch_statement] = STATE(2881), - [sym_case_statement] = STATE(2881), - [sym_while_statement] = STATE(2881), - [sym_do_statement] = STATE(2881), - [sym_for_statement] = STATE(2881), - [sym_return_statement] = STATE(2881), - [sym_break_statement] = STATE(2881), - [sym_continue_statement] = STATE(2881), - [sym_goto_statement] = STATE(2881), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2881), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2781] = { + [sym_compound_statement] = STATE(2908), + [sym_labeled_statement] = STATE(2908), + [sym_expression_statement] = STATE(2908), + [sym_if_statement] = STATE(2908), + [sym_switch_statement] = STATE(2908), + [sym_case_statement] = STATE(2908), + [sym_while_statement] = STATE(2908), + [sym_do_statement] = STATE(2908), + [sym_for_statement] = STATE(2908), + [sym_return_statement] = STATE(2908), + [sym_break_statement] = STATE(2908), + [sym_continue_statement] = STATE(2908), + [sym_goto_statement] = STATE(2908), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2908), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -110503,106 +111411,111 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2762] = { - [anon_sym_else] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1986), + [2782] = { + [anon_sym_else] = ACTIONS(6892), + [anon_sym_while] = ACTIONS(6611), [sym_comment] = ACTIONS(49), }, - [2763] = { + [2783] = { + [anon_sym_else] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [sym_comment] = ACTIONS(49), + }, + [2784] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(6832), + [anon_sym_SEMI] = ACTIONS(6894), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2764] = { - [anon_sym_else] = ACTIONS(2476), - [anon_sym_while] = ACTIONS(2476), + [2785] = { + [anon_sym_else] = ACTIONS(2478), + [anon_sym_while] = ACTIONS(2478), [sym_comment] = ACTIONS(49), }, - [2765] = { - [anon_sym_else] = ACTIONS(6603), - [anon_sym_while] = ACTIONS(6603), + [2786] = { + [anon_sym_else] = ACTIONS(6653), + [anon_sym_while] = ACTIONS(6653), [sym_comment] = ACTIONS(49), }, - [2766] = { - [anon_sym_else] = ACTIONS(6607), - [anon_sym_while] = ACTIONS(6607), + [2787] = { + [anon_sym_else] = ACTIONS(6657), + [anon_sym_while] = ACTIONS(6657), [sym_comment] = ACTIONS(49), }, - [2767] = { - [sym_compound_statement] = STATE(2883), - [sym_labeled_statement] = STATE(2883), - [sym_expression_statement] = STATE(2883), - [sym_if_statement] = STATE(2883), - [sym_switch_statement] = STATE(2883), - [sym_case_statement] = STATE(2883), - [sym_while_statement] = STATE(2883), - [sym_do_statement] = STATE(2883), - [sym_for_statement] = STATE(2883), - [sym_return_statement] = STATE(2883), - [sym_break_statement] = STATE(2883), - [sym_continue_statement] = STATE(2883), - [sym_goto_statement] = STATE(2883), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2883), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2788] = { + [sym_compound_statement] = STATE(2911), + [sym_labeled_statement] = STATE(2911), + [sym_expression_statement] = STATE(2911), + [sym_if_statement] = STATE(2911), + [sym_switch_statement] = STATE(2911), + [sym_case_statement] = STATE(2911), + [sym_while_statement] = STATE(2911), + [sym_do_statement] = STATE(2911), + [sym_for_statement] = STATE(2911), + [sym_return_statement] = STATE(2911), + [sym_break_statement] = STATE(2911), + [sym_continue_statement] = STATE(2911), + [sym_goto_statement] = STATE(2911), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2911), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -110611,99 +111524,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2768] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6834), + [2789] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6896), [sym_comment] = ACTIONS(49), }, - [2769] = { + [2790] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2885), + [aux_sym_for_statement_repeat1] = STATE(2913), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6834), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6896), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2770] = { - [sym__expression] = STATE(2886), - [sym_conditional_expression] = STATE(2886), - [sym_assignment_expression] = STATE(2886), - [sym_pointer_expression] = STATE(2886), - [sym_logical_expression] = STATE(2886), - [sym_bitwise_expression] = STATE(2886), - [sym_equality_expression] = STATE(2886), - [sym_relational_expression] = STATE(2886), - [sym_shift_expression] = STATE(2886), - [sym_math_expression] = STATE(2886), - [sym_cast_expression] = STATE(2886), - [sym_sizeof_expression] = STATE(2886), - [sym_subscript_expression] = STATE(2886), - [sym_call_expression] = STATE(2886), - [sym_field_expression] = STATE(2886), - [sym_compound_literal_expression] = STATE(2886), - [sym_parenthesized_expression] = STATE(2886), - [sym_concatenated_string] = STATE(2886), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2886), - [sym_new_expression] = STATE(2886), - [sym_delete_expression] = STATE(2886), - [sym_lambda_expression] = STATE(2886), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6836), + [2791] = { + [sym__expression] = STATE(2914), + [sym_conditional_expression] = STATE(2914), + [sym_assignment_expression] = STATE(2914), + [sym_pointer_expression] = STATE(2914), + [sym_logical_expression] = STATE(2914), + [sym_bitwise_expression] = STATE(2914), + [sym_equality_expression] = STATE(2914), + [sym_relational_expression] = STATE(2914), + [sym_shift_expression] = STATE(2914), + [sym_math_expression] = STATE(2914), + [sym_cast_expression] = STATE(2914), + [sym_sizeof_expression] = STATE(2914), + [sym_subscript_expression] = STATE(2914), + [sym_call_expression] = STATE(2914), + [sym_field_expression] = STATE(2914), + [sym_compound_literal_expression] = STATE(2914), + [sym_parenthesized_expression] = STATE(2914), + [sym_concatenated_string] = STATE(2914), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2914), + [sym_new_expression] = STATE(2914), + [sym_delete_expression] = STATE(2914), + [sym_lambda_expression] = STATE(2914), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6898), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6834), + [anon_sym_RPAREN] = ACTIONS(6896), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -110714,79 +111627,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6836), - [sym_char_literal] = ACTIONS(6836), + [sym_number_literal] = ACTIONS(6898), + [sym_char_literal] = ACTIONS(6898), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6838), - [sym_false] = ACTIONS(6838), - [sym_null] = ACTIONS(6838), + [sym_true] = ACTIONS(6900), + [sym_false] = ACTIONS(6900), + [sym_null] = ACTIONS(6900), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6838), + [sym_nullptr] = ACTIONS(6900), }, - [2771] = { - [sym_compound_statement] = STATE(2887), - [sym_labeled_statement] = STATE(2887), - [sym_expression_statement] = STATE(2887), - [sym_if_statement] = STATE(2887), - [sym_switch_statement] = STATE(2887), - [sym_case_statement] = STATE(2887), - [sym_while_statement] = STATE(2887), - [sym_do_statement] = STATE(2887), - [sym_for_statement] = STATE(2887), - [sym_return_statement] = STATE(2887), - [sym_break_statement] = STATE(2887), - [sym_continue_statement] = STATE(2887), - [sym_goto_statement] = STATE(2887), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2887), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [2792] = { + [sym_compound_statement] = STATE(2915), + [sym_labeled_statement] = STATE(2915), + [sym_expression_statement] = STATE(2915), + [sym_if_statement] = STATE(2915), + [sym_switch_statement] = STATE(2915), + [sym_case_statement] = STATE(2915), + [sym_while_statement] = STATE(2915), + [sym_do_statement] = STATE(2915), + [sym_for_statement] = STATE(2915), + [sym_return_statement] = STATE(2915), + [sym_break_statement] = STATE(2915), + [sym_continue_statement] = STATE(2915), + [sym_goto_statement] = STATE(2915), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2915), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -110795,143 +111708,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2772] = { + [2793] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5179), - [anon_sym_RPAREN] = ACTIONS(5179), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(5193), + [anon_sym_RPAREN] = ACTIONS(5193), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2773] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_RBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), + [2794] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), }, - [2774] = { - [sym_compound_statement] = STATE(2888), - [sym_labeled_statement] = STATE(2888), - [sym_expression_statement] = STATE(2888), - [sym_if_statement] = STATE(2888), - [sym_switch_statement] = STATE(2888), - [sym_case_statement] = STATE(2888), - [sym_while_statement] = STATE(2888), - [sym_do_statement] = STATE(2888), - [sym_for_statement] = STATE(2888), - [sym_return_statement] = STATE(2888), - [sym_break_statement] = STATE(2888), - [sym_continue_statement] = STATE(2888), - [sym_goto_statement] = STATE(2888), + [2795] = { + [sym_compound_statement] = STATE(2916), + [sym_labeled_statement] = STATE(2916), + [sym_expression_statement] = STATE(2916), + [sym_if_statement] = STATE(2916), + [sym_switch_statement] = STATE(2916), + [sym_case_statement] = STATE(2916), + [sym_while_statement] = STATE(2916), + [sym_do_statement] = STATE(2916), + [sym_for_statement] = STATE(2916), + [sym_return_statement] = STATE(2916), + [sym_break_statement] = STATE(2916), + [sym_continue_statement] = STATE(2916), + [sym_goto_statement] = STATE(2916), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -110953,7 +111866,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2888), + [sym_for_range_loop] = STATE(2916), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -110992,82 +111905,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2775] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6844), - [anon_sym_RPAREN] = ACTIONS(5179), + [2796] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6906), + [anon_sym_RPAREN] = ACTIONS(5193), [sym_comment] = ACTIONS(49), }, - [2776] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6847), + [2797] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6909), [sym_comment] = ACTIONS(49), }, - [2777] = { - [sym__type_specifier] = STATE(1374), - [sym_sized_type_specifier] = STATE(1374), - [sym_enum_specifier] = STATE(1374), - [sym_struct_specifier] = STATE(1374), - [sym_union_specifier] = STATE(1374), - [sym_macro_type_specifier] = STATE(1374), - [sym_class_specifier] = STATE(1374), - [sym_dependent_type] = STATE(1374), + [2798] = { + [sym__type_specifier] = STATE(1375), + [sym_sized_type_specifier] = STATE(1375), + [sym_enum_specifier] = STATE(1375), + [sym_struct_specifier] = STATE(1375), + [sym_union_specifier] = STATE(1375), + [sym_macro_type_specifier] = STATE(1375), + [sym_class_specifier] = STATE(1375), + [sym_dependent_type] = STATE(1375), [sym_template_type] = STATE(825), [sym_scoped_type_identifier] = STATE(826), [sym_scoped_namespace_identifier] = STATE(827), - [aux_sym_sized_type_specifier_repeat1] = STATE(2779), - [anon_sym_unsigned] = ACTIONS(6617), - [anon_sym_long] = ACTIONS(6617), - [anon_sym_short] = ACTIONS(6617), - [sym_primitive_type] = ACTIONS(2835), + [aux_sym_sized_type_specifier_repeat1] = STATE(2800), + [anon_sym_unsigned] = ACTIONS(6667), + [anon_sym_long] = ACTIONS(6667), + [anon_sym_short] = ACTIONS(6667), + [sym_primitive_type] = ACTIONS(2837), [anon_sym_enum] = ACTIONS(1582), [anon_sym_struct] = ACTIONS(1584), [anon_sym_union] = ACTIONS(1586), [sym_identifier] = ACTIONS(1588), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(1590), - [sym_auto] = ACTIONS(2835), - [anon_sym_typename] = ACTIONS(6621), + [sym_auto] = ACTIONS(2837), + [anon_sym_typename] = ACTIONS(6671), [anon_sym_COLON_COLON] = ACTIONS(1594), }, - [2778] = { - [sym__abstract_declarator] = STATE(2892), - [sym_abstract_pointer_declarator] = STATE(2892), - [sym_abstract_function_declarator] = STATE(2892), - [sym_abstract_array_declarator] = STATE(2892), - [sym_parameter_list] = STATE(2893), - [sym_abstract_reference_declarator] = STATE(2892), + [2799] = { + [sym__abstract_declarator] = STATE(2920), + [sym_abstract_pointer_declarator] = STATE(2920), + [sym_abstract_function_declarator] = STATE(2920), + [sym_abstract_array_declarator] = STATE(2920), + [sym_parameter_list] = STATE(2921), + [sym_abstract_reference_declarator] = STATE(2920), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2839), - [anon_sym_SEMI] = ACTIONS(2839), - [anon_sym_LBRACE] = ACTIONS(2839), - [anon_sym_STAR] = ACTIONS(6849), + [anon_sym_COMMA] = ACTIONS(2841), + [anon_sym_SEMI] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(6911), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2839), - [anon_sym_const] = ACTIONS(2843), - [anon_sym_restrict] = ACTIONS(2839), - [anon_sym_volatile] = ACTIONS(2839), - [anon_sym__Atomic] = ACTIONS(2839), - [anon_sym_mutable] = ACTIONS(2839), - [anon_sym_explicit] = ACTIONS(2839), - [anon_sym_constexpr] = ACTIONS(2839), - [anon_sym_COLON] = ACTIONS(2839), - [anon_sym_AMP] = ACTIONS(6851), - [anon_sym_AMP_AMP] = ACTIONS(6853), - [anon_sym_DASH_GT] = ACTIONS(2839), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_const] = ACTIONS(2845), + [anon_sym_restrict] = ACTIONS(2841), + [anon_sym_volatile] = ACTIONS(2841), + [anon_sym__Atomic] = ACTIONS(2841), + [anon_sym_mutable] = ACTIONS(2841), + [anon_sym_explicit] = ACTIONS(2841), + [anon_sym_constexpr] = ACTIONS(2841), + [anon_sym_COLON] = ACTIONS(2841), + [anon_sym_AMP] = ACTIONS(6913), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(2841), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2841), }, - [2779] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2894), + [2800] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2922), [anon_sym_LPAREN] = ACTIONS(238), [anon_sym_COMMA] = ACTIONS(238), [anon_sym_SEMI] = ACTIONS(238), @@ -111082,158 +111995,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(240), [anon_sym_explicit] = ACTIONS(240), [anon_sym_constexpr] = ACTIONS(240), - [anon_sym_unsigned] = ACTIONS(6855), - [anon_sym_long] = ACTIONS(6855), - [anon_sym_short] = ACTIONS(6855), - [sym_primitive_type] = ACTIONS(2853), + [anon_sym_unsigned] = ACTIONS(6917), + [anon_sym_long] = ACTIONS(6917), + [anon_sym_short] = ACTIONS(6917), + [sym_primitive_type] = ACTIONS(2855), [anon_sym_COLON] = ACTIONS(238), [anon_sym_AMP] = ACTIONS(240), [anon_sym_AMP_AMP] = ACTIONS(238), [anon_sym_DASH_GT] = ACTIONS(238), - [sym_identifier] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2857), [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(240), }, - [2780] = { - [sym_type_qualifier] = STATE(2780), - [sym_trailing_return_type] = STATE(2780), - [aux_sym_function_declarator_repeat1] = STATE(2780), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2857), - [anon_sym_LBRACK] = ACTIONS(2857), - [anon_sym_EQ] = ACTIONS(2857), - [anon_sym_const] = ACTIONS(2859), - [anon_sym_restrict] = ACTIONS(2862), - [anon_sym_volatile] = ACTIONS(2862), - [anon_sym__Atomic] = ACTIONS(2862), - [anon_sym_mutable] = ACTIONS(2862), - [anon_sym_explicit] = ACTIONS(2862), - [anon_sym_constexpr] = ACTIONS(2862), - [anon_sym_COLON] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(6857), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6860), + [2801] = { + [sym_type_qualifier] = STATE(2801), + [sym_trailing_return_type] = STATE(2801), + [aux_sym_function_declarator_repeat1] = STATE(2801), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_COMMA] = ACTIONS(2859), + [anon_sym_SEMI] = ACTIONS(2859), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2859), + [anon_sym_const] = ACTIONS(2861), + [anon_sym_restrict] = ACTIONS(2864), + [anon_sym_volatile] = ACTIONS(2864), + [anon_sym__Atomic] = ACTIONS(2864), + [anon_sym_mutable] = ACTIONS(2864), + [anon_sym_explicit] = ACTIONS(2864), + [anon_sym_constexpr] = ACTIONS(2864), + [anon_sym_COLON] = ACTIONS(2859), + [anon_sym_DASH_GT] = ACTIONS(6919), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6922), }, - [2781] = { + [2802] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2895), + [aux_sym_for_statement_repeat1] = STATE(2923), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6847), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6909), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2782] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_RBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), + [2803] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), }, - [2783] = { - [sym_field_declaration_list] = STATE(1898), - [sym_base_class_clause] = STATE(1899), + [2804] = { + [sym_field_declaration_list] = STATE(1901), + [sym_base_class_clause] = STATE(1902), [anon_sym_LPAREN] = ACTIONS(406), [anon_sym_COMMA] = ACTIONS(406), [anon_sym_SEMI] = ACTIONS(406), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(406), [anon_sym_LBRACK] = ACTIONS(406), [anon_sym_const] = ACTIONS(408), @@ -111250,13 +112163,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(406), }, - [2784] = { - [sym_field_declaration_list] = STATE(1900), - [sym_base_class_clause] = STATE(1901), + [2805] = { + [sym_field_declaration_list] = STATE(1903), + [sym_base_class_clause] = STATE(1904), [anon_sym_LPAREN] = ACTIONS(416), [anon_sym_COMMA] = ACTIONS(416), [anon_sym_SEMI] = ACTIONS(416), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(416), [anon_sym_LBRACK] = ACTIONS(416), [anon_sym_const] = ACTIONS(418), @@ -111273,13 +112186,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(416), }, - [2785] = { - [sym_field_declaration_list] = STATE(1905), - [sym_base_class_clause] = STATE(1906), + [2806] = { + [sym_field_declaration_list] = STATE(1908), + [sym_base_class_clause] = STATE(1909), [anon_sym_LPAREN] = ACTIONS(451), [anon_sym_COMMA] = ACTIONS(451), [anon_sym_SEMI] = ACTIONS(451), - [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_LBRACE] = ACTIONS(2829), [anon_sym_STAR] = ACTIONS(451), [anon_sym_LBRACK] = ACTIONS(451), [anon_sym_const] = ACTIONS(453), @@ -111296,98 +112209,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(451), }, - [2786] = { - [sym__abstract_declarator] = STATE(2896), - [sym_abstract_pointer_declarator] = STATE(2896), - [sym_abstract_function_declarator] = STATE(2896), - [sym_abstract_array_declarator] = STATE(2896), - [sym_parameter_list] = STATE(2789), - [sym_abstract_reference_declarator] = STATE(2896), + [2807] = { + [sym__abstract_declarator] = STATE(2924), + [sym_abstract_pointer_declarator] = STATE(2924), + [sym_abstract_function_declarator] = STATE(2924), + [sym_abstract_array_declarator] = STATE(2924), + [sym_parameter_list] = STATE(2810), + [sym_abstract_reference_declarator] = STATE(2924), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(6679), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_COLON] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(6631), - [anon_sym_AMP_AMP] = ACTIONS(6633), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(6681), + [anon_sym_AMP_AMP] = ACTIONS(6683), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2787] = { - [sym__abstract_declarator] = STATE(2897), - [sym_abstract_pointer_declarator] = STATE(2897), - [sym_abstract_function_declarator] = STATE(2897), - [sym_abstract_array_declarator] = STATE(2897), - [sym_parameter_list] = STATE(2789), - [sym_abstract_reference_declarator] = STATE(2897), + [2808] = { + [sym__abstract_declarator] = STATE(2925), + [sym_abstract_pointer_declarator] = STATE(2925), + [sym_abstract_function_declarator] = STATE(2925), + [sym_abstract_array_declarator] = STATE(2925), + [sym_parameter_list] = STATE(2810), + [sym_abstract_reference_declarator] = STATE(2925), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(6629), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(6679), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(6631), - [anon_sym_AMP_AMP] = ACTIONS(6633), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(6681), + [anon_sym_AMP_AMP] = ACTIONS(6683), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [2788] = { - [sym_parameter_list] = STATE(2898), + [2809] = { + [sym_parameter_list] = STATE(2926), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [2789] = { - [sym_type_qualifier] = STATE(2899), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2899), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2810] = { + [sym_type_qualifier] = STATE(2927), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2927), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2790] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2790), + [2811] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2811), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), @@ -111400,9 +112313,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(6867), - [anon_sym_long] = ACTIONS(6867), - [anon_sym_short] = ACTIONS(6867), + [anon_sym_unsigned] = ACTIONS(6929), + [anon_sym_long] = ACTIONS(6929), + [anon_sym_short] = ACTIONS(6929), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(816), [anon_sym_AMP] = ACTIONS(818), @@ -111412,15 +112325,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2791] = { - [sym_type_qualifier] = STATE(2792), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2792), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [2812] = { + [sym_type_qualifier] = STATE(2813), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2813), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -111428,122 +112341,122 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(3641), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(3647), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6643), + [sym_noexcept] = ACTIONS(6693), }, - [2792] = { - [sym_type_qualifier] = STATE(2792), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2792), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6870), + [2813] = { + [sym_type_qualifier] = STATE(2813), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2813), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6932), }, - [2793] = { + [2814] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5960), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5984), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5962), - [anon_sym_QMARK] = ACTIONS(5960), - [anon_sym_STAR_EQ] = ACTIONS(5960), - [anon_sym_SLASH_EQ] = ACTIONS(5960), - [anon_sym_PERCENT_EQ] = ACTIONS(5960), - [anon_sym_PLUS_EQ] = ACTIONS(5960), - [anon_sym_DASH_EQ] = ACTIONS(5960), - [anon_sym_LT_LT_EQ] = ACTIONS(5960), - [anon_sym_GT_GT_EQ] = ACTIONS(5960), - [anon_sym_AMP_EQ] = ACTIONS(5960), - [anon_sym_CARET_EQ] = ACTIONS(5960), - [anon_sym_PIPE_EQ] = ACTIONS(5960), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(5986), + [anon_sym_QMARK] = ACTIONS(5984), + [anon_sym_STAR_EQ] = ACTIONS(5984), + [anon_sym_SLASH_EQ] = ACTIONS(5984), + [anon_sym_PERCENT_EQ] = ACTIONS(5984), + [anon_sym_PLUS_EQ] = ACTIONS(5984), + [anon_sym_DASH_EQ] = ACTIONS(5984), + [anon_sym_LT_LT_EQ] = ACTIONS(5984), + [anon_sym_GT_GT_EQ] = ACTIONS(5984), + [anon_sym_AMP_EQ] = ACTIONS(5984), + [anon_sym_CARET_EQ] = ACTIONS(5984), + [anon_sym_PIPE_EQ] = ACTIONS(5984), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2794] = { + [2815] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(5964), - [anon_sym_STAR] = ACTIONS(5025), + [anon_sym_COMMA] = ACTIONS(5988), + [anon_sym_STAR] = ACTIONS(5039), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(5027), - [anon_sym_QMARK] = ACTIONS(5029), - [anon_sym_STAR_EQ] = ACTIONS(5031), - [anon_sym_SLASH_EQ] = ACTIONS(5031), - [anon_sym_PERCENT_EQ] = ACTIONS(5031), - [anon_sym_PLUS_EQ] = ACTIONS(5031), - [anon_sym_DASH_EQ] = ACTIONS(5031), - [anon_sym_LT_LT_EQ] = ACTIONS(5031), - [anon_sym_GT_GT_EQ] = ACTIONS(5031), - [anon_sym_AMP_EQ] = ACTIONS(5031), - [anon_sym_CARET_EQ] = ACTIONS(5031), - [anon_sym_PIPE_EQ] = ACTIONS(5031), - [anon_sym_AMP] = ACTIONS(5033), - [anon_sym_PIPE_PIPE] = ACTIONS(5035), - [anon_sym_AMP_AMP] = ACTIONS(5037), - [anon_sym_PIPE] = ACTIONS(5039), - [anon_sym_CARET] = ACTIONS(5041), - [anon_sym_EQ_EQ] = ACTIONS(5043), - [anon_sym_BANG_EQ] = ACTIONS(5043), - [anon_sym_LT] = ACTIONS(5045), - [anon_sym_GT] = ACTIONS(5045), - [anon_sym_LT_EQ] = ACTIONS(5047), - [anon_sym_GT_EQ] = ACTIONS(5047), - [anon_sym_LT_LT] = ACTIONS(5049), - [anon_sym_GT_GT] = ACTIONS(5049), - [anon_sym_PLUS] = ACTIONS(5051), - [anon_sym_DASH] = ACTIONS(5051), - [anon_sym_SLASH] = ACTIONS(5025), - [anon_sym_PERCENT] = ACTIONS(5025), + [anon_sym_EQ] = ACTIONS(5041), + [anon_sym_QMARK] = ACTIONS(5043), + [anon_sym_STAR_EQ] = ACTIONS(5045), + [anon_sym_SLASH_EQ] = ACTIONS(5045), + [anon_sym_PERCENT_EQ] = ACTIONS(5045), + [anon_sym_PLUS_EQ] = ACTIONS(5045), + [anon_sym_DASH_EQ] = ACTIONS(5045), + [anon_sym_LT_LT_EQ] = ACTIONS(5045), + [anon_sym_GT_GT_EQ] = ACTIONS(5045), + [anon_sym_AMP_EQ] = ACTIONS(5045), + [anon_sym_CARET_EQ] = ACTIONS(5045), + [anon_sym_PIPE_EQ] = ACTIONS(5045), + [anon_sym_AMP] = ACTIONS(5047), + [anon_sym_PIPE_PIPE] = ACTIONS(5049), + [anon_sym_AMP_AMP] = ACTIONS(5051), + [anon_sym_PIPE] = ACTIONS(5053), + [anon_sym_CARET] = ACTIONS(5055), + [anon_sym_EQ_EQ] = ACTIONS(5057), + [anon_sym_BANG_EQ] = ACTIONS(5057), + [anon_sym_LT] = ACTIONS(5059), + [anon_sym_GT] = ACTIONS(5059), + [anon_sym_LT_EQ] = ACTIONS(5061), + [anon_sym_GT_EQ] = ACTIONS(5061), + [anon_sym_LT_LT] = ACTIONS(5063), + [anon_sym_GT_GT] = ACTIONS(5063), + [anon_sym_PLUS] = ACTIONS(5065), + [anon_sym_DASH] = ACTIONS(5065), + [anon_sym_SLASH] = ACTIONS(5039), + [anon_sym_PERCENT] = ACTIONS(5039), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2795] = { - [sym_type_qualifier] = STATE(2796), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2796), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [2816] = { + [sym_type_qualifier] = STATE(2817), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2817), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -111551,41 +112464,41 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_GT] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(3823), + [anon_sym_GT] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(3829), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6660), + [sym_noexcept] = ACTIONS(6710), }, - [2796] = { - [sym_type_qualifier] = STATE(2796), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2796), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_GT] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6873), + [2817] = { + [sym_type_qualifier] = STATE(2817), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2817), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_GT] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6935), }, - [2797] = { - [sym_type_qualifier] = STATE(2798), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2798), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_RPAREN] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [2818] = { + [sym_type_qualifier] = STATE(2819), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2819), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_RPAREN] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -111593,643 +112506,643 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_DASH_GT] = ACTIONS(4123), + [anon_sym_DASH_GT] = ACTIONS(4129), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6662), + [sym_noexcept] = ACTIONS(6712), }, - [2798] = { - [sym_type_qualifier] = STATE(2798), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2798), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_RPAREN] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(6876), + [2819] = { + [sym_type_qualifier] = STATE(2819), + [aux_sym_abstract_function_declarator_repeat1] = STATE(2819), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_RPAREN] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(6938), }, - [2799] = { - [sym_raw_string_literal] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3338), - [anon_sym_LPAREN] = ACTIONS(3336), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3338), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3338), - [sym_preproc_directive] = ACTIONS(3338), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_typedef] = ACTIONS(3338), - [anon_sym_extern] = ACTIONS(3338), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_STAR] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3338), - [anon_sym_register] = ACTIONS(3338), - [anon_sym_inline] = ACTIONS(3338), - [anon_sym_const] = ACTIONS(3338), - [anon_sym_restrict] = ACTIONS(3338), - [anon_sym_volatile] = ACTIONS(3338), - [anon_sym__Atomic] = ACTIONS(3338), - [anon_sym_mutable] = ACTIONS(3338), - [anon_sym_explicit] = ACTIONS(3338), - [anon_sym_constexpr] = ACTIONS(3338), - [anon_sym_unsigned] = ACTIONS(3338), - [anon_sym_long] = ACTIONS(3338), - [anon_sym_short] = ACTIONS(3338), - [sym_primitive_type] = ACTIONS(3338), - [anon_sym_enum] = ACTIONS(3338), - [anon_sym_struct] = ACTIONS(3338), - [anon_sym_union] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3338), - [anon_sym_switch] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3338), - [anon_sym_default] = ACTIONS(3338), - [anon_sym_while] = ACTIONS(3338), - [anon_sym_do] = ACTIONS(3338), - [anon_sym_for] = ACTIONS(3338), - [anon_sym_return] = ACTIONS(3338), - [anon_sym_break] = ACTIONS(3338), - [anon_sym_continue] = ACTIONS(3338), - [anon_sym_goto] = ACTIONS(3338), - [anon_sym_AMP] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3338), - [anon_sym_DASH] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_sizeof] = ACTIONS(3338), - [sym_number_literal] = ACTIONS(3336), - [sym_char_literal] = ACTIONS(3336), - [sym_string_literal] = ACTIONS(3336), - [sym_true] = ACTIONS(3338), - [sym_false] = ACTIONS(3338), - [sym_null] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3338), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3338), - [sym_auto] = ACTIONS(3338), - [anon_sym_typename] = ACTIONS(3338), - [anon_sym_new] = ACTIONS(3338), - [anon_sym_COLON_COLON] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3338), - [sym_nullptr] = ACTIONS(3338), + [2820] = { + [sym_raw_string_literal] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3342), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3344), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3344), + [sym_preproc_directive] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_typedef] = ACTIONS(3344), + [anon_sym_extern] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_register] = ACTIONS(3344), + [anon_sym_inline] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_restrict] = ACTIONS(3344), + [anon_sym_volatile] = ACTIONS(3344), + [anon_sym__Atomic] = ACTIONS(3344), + [anon_sym_mutable] = ACTIONS(3344), + [anon_sym_explicit] = ACTIONS(3344), + [anon_sym_constexpr] = ACTIONS(3344), + [anon_sym_unsigned] = ACTIONS(3344), + [anon_sym_long] = ACTIONS(3344), + [anon_sym_short] = ACTIONS(3344), + [sym_primitive_type] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_goto] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_sizeof] = ACTIONS(3344), + [sym_number_literal] = ACTIONS(3342), + [sym_char_literal] = ACTIONS(3342), + [sym_string_literal] = ACTIONS(3342), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3344), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3344), + [sym_auto] = ACTIONS(3344), + [anon_sym_typename] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_COLON_COLON] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3344), + [sym_nullptr] = ACTIONS(3344), }, - [2800] = { - [sym_raw_string_literal] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3348), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3348), - [sym_preproc_directive] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_typedef] = ACTIONS(3348), - [anon_sym_extern] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_STAR] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_register] = ACTIONS(3348), - [anon_sym_inline] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_restrict] = ACTIONS(3348), - [anon_sym_volatile] = ACTIONS(3348), - [anon_sym__Atomic] = ACTIONS(3348), - [anon_sym_mutable] = ACTIONS(3348), - [anon_sym_explicit] = ACTIONS(3348), - [anon_sym_constexpr] = ACTIONS(3348), - [anon_sym_unsigned] = ACTIONS(3348), - [anon_sym_long] = ACTIONS(3348), - [anon_sym_short] = ACTIONS(3348), - [sym_primitive_type] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - [anon_sym_struct] = ACTIONS(3348), - [anon_sym_union] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_goto] = ACTIONS(3348), - [anon_sym_AMP] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_sizeof] = ACTIONS(3348), - [sym_number_literal] = ACTIONS(3346), - [sym_char_literal] = ACTIONS(3346), - [sym_string_literal] = ACTIONS(3346), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3348), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3348), - [sym_auto] = ACTIONS(3348), - [anon_sym_typename] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_COLON_COLON] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3348), - [sym_nullptr] = ACTIONS(3348), + [2821] = { + [sym_raw_string_literal] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3354), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3354), + [sym_preproc_directive] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_typedef] = ACTIONS(3354), + [anon_sym_extern] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_register] = ACTIONS(3354), + [anon_sym_inline] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_restrict] = ACTIONS(3354), + [anon_sym_volatile] = ACTIONS(3354), + [anon_sym__Atomic] = ACTIONS(3354), + [anon_sym_mutable] = ACTIONS(3354), + [anon_sym_explicit] = ACTIONS(3354), + [anon_sym_constexpr] = ACTIONS(3354), + [anon_sym_unsigned] = ACTIONS(3354), + [anon_sym_long] = ACTIONS(3354), + [anon_sym_short] = ACTIONS(3354), + [sym_primitive_type] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3354), + [anon_sym_union] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_goto] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_sizeof] = ACTIONS(3354), + [sym_number_literal] = ACTIONS(3352), + [sym_char_literal] = ACTIONS(3352), + [sym_string_literal] = ACTIONS(3352), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3354), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3354), + [sym_auto] = ACTIONS(3354), + [anon_sym_typename] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_COLON_COLON] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3354), + [sym_nullptr] = ACTIONS(3354), }, - [2801] = { - [sym_raw_string_literal] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6172), - [anon_sym_LPAREN] = ACTIONS(6170), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6172), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6172), - [sym_preproc_directive] = ACTIONS(6172), - [anon_sym_SEMI] = ACTIONS(6170), - [anon_sym_typedef] = ACTIONS(6172), - [anon_sym_extern] = ACTIONS(6172), - [anon_sym_LBRACE] = ACTIONS(6170), - [anon_sym_STAR] = ACTIONS(6170), - [anon_sym_LBRACK] = ACTIONS(6170), - [anon_sym_static] = ACTIONS(6172), - [anon_sym_register] = ACTIONS(6172), - [anon_sym_inline] = ACTIONS(6172), - [anon_sym_const] = ACTIONS(6172), - [anon_sym_restrict] = ACTIONS(6172), - [anon_sym_volatile] = ACTIONS(6172), - [anon_sym__Atomic] = ACTIONS(6172), - [anon_sym_mutable] = ACTIONS(6172), - [anon_sym_explicit] = ACTIONS(6172), - [anon_sym_constexpr] = ACTIONS(6172), - [anon_sym_unsigned] = ACTIONS(6172), - [anon_sym_long] = ACTIONS(6172), - [anon_sym_short] = ACTIONS(6172), - [sym_primitive_type] = ACTIONS(6172), - [anon_sym_enum] = ACTIONS(6172), - [anon_sym_struct] = ACTIONS(6172), - [anon_sym_union] = ACTIONS(6172), - [anon_sym_if] = ACTIONS(6172), - [anon_sym_switch] = ACTIONS(6172), - [anon_sym_case] = ACTIONS(6172), - [anon_sym_default] = ACTIONS(6172), - [anon_sym_while] = ACTIONS(6172), - [anon_sym_do] = ACTIONS(6172), - [anon_sym_for] = ACTIONS(6172), - [anon_sym_return] = ACTIONS(6172), - [anon_sym_break] = ACTIONS(6172), - [anon_sym_continue] = ACTIONS(6172), - [anon_sym_goto] = ACTIONS(6172), - [anon_sym_AMP] = ACTIONS(6170), - [anon_sym_BANG] = ACTIONS(6170), - [anon_sym_TILDE] = ACTIONS(6170), - [anon_sym_PLUS] = ACTIONS(6172), - [anon_sym_DASH] = ACTIONS(6172), - [anon_sym_DASH_DASH] = ACTIONS(6170), - [anon_sym_PLUS_PLUS] = ACTIONS(6170), - [anon_sym_sizeof] = ACTIONS(6172), - [sym_number_literal] = ACTIONS(6170), - [sym_char_literal] = ACTIONS(6170), - [sym_string_literal] = ACTIONS(6170), - [sym_true] = ACTIONS(6172), - [sym_false] = ACTIONS(6172), - [sym_null] = ACTIONS(6172), - [sym_identifier] = ACTIONS(6172), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6172), - [sym_auto] = ACTIONS(6172), - [anon_sym_typename] = ACTIONS(6172), - [anon_sym_new] = ACTIONS(6172), - [anon_sym_COLON_COLON] = ACTIONS(6170), - [anon_sym_delete] = ACTIONS(6172), - [sym_nullptr] = ACTIONS(6172), + [2822] = { + [sym_raw_string_literal] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6202), + [anon_sym_LPAREN] = ACTIONS(6200), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6202), + [sym_preproc_directive] = ACTIONS(6202), + [anon_sym_SEMI] = ACTIONS(6200), + [anon_sym_typedef] = ACTIONS(6202), + [anon_sym_extern] = ACTIONS(6202), + [anon_sym_LBRACE] = ACTIONS(6200), + [anon_sym_STAR] = ACTIONS(6200), + [anon_sym_LBRACK] = ACTIONS(6200), + [anon_sym_static] = ACTIONS(6202), + [anon_sym_register] = ACTIONS(6202), + [anon_sym_inline] = ACTIONS(6202), + [anon_sym_const] = ACTIONS(6202), + [anon_sym_restrict] = ACTIONS(6202), + [anon_sym_volatile] = ACTIONS(6202), + [anon_sym__Atomic] = ACTIONS(6202), + [anon_sym_mutable] = ACTIONS(6202), + [anon_sym_explicit] = ACTIONS(6202), + [anon_sym_constexpr] = ACTIONS(6202), + [anon_sym_unsigned] = ACTIONS(6202), + [anon_sym_long] = ACTIONS(6202), + [anon_sym_short] = ACTIONS(6202), + [sym_primitive_type] = ACTIONS(6202), + [anon_sym_enum] = ACTIONS(6202), + [anon_sym_struct] = ACTIONS(6202), + [anon_sym_union] = ACTIONS(6202), + [anon_sym_if] = ACTIONS(6202), + [anon_sym_switch] = ACTIONS(6202), + [anon_sym_case] = ACTIONS(6202), + [anon_sym_default] = ACTIONS(6202), + [anon_sym_while] = ACTIONS(6202), + [anon_sym_do] = ACTIONS(6202), + [anon_sym_for] = ACTIONS(6202), + [anon_sym_return] = ACTIONS(6202), + [anon_sym_break] = ACTIONS(6202), + [anon_sym_continue] = ACTIONS(6202), + [anon_sym_goto] = ACTIONS(6202), + [anon_sym_AMP] = ACTIONS(6200), + [anon_sym_BANG] = ACTIONS(6200), + [anon_sym_TILDE] = ACTIONS(6200), + [anon_sym_PLUS] = ACTIONS(6202), + [anon_sym_DASH] = ACTIONS(6202), + [anon_sym_DASH_DASH] = ACTIONS(6200), + [anon_sym_PLUS_PLUS] = ACTIONS(6200), + [anon_sym_sizeof] = ACTIONS(6202), + [sym_number_literal] = ACTIONS(6200), + [sym_char_literal] = ACTIONS(6200), + [sym_string_literal] = ACTIONS(6200), + [sym_true] = ACTIONS(6202), + [sym_false] = ACTIONS(6202), + [sym_null] = ACTIONS(6202), + [sym_identifier] = ACTIONS(6202), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6202), + [sym_auto] = ACTIONS(6202), + [anon_sym_typename] = ACTIONS(6202), + [anon_sym_new] = ACTIONS(6202), + [anon_sym_COLON_COLON] = ACTIONS(6200), + [anon_sym_delete] = ACTIONS(6202), + [sym_nullptr] = ACTIONS(6202), }, - [2802] = { - [sym_raw_string_literal] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6176), - [anon_sym_LPAREN] = ACTIONS(6174), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6176), - [sym_preproc_directive] = ACTIONS(6176), - [anon_sym_SEMI] = ACTIONS(6174), - [anon_sym_typedef] = ACTIONS(6176), - [anon_sym_extern] = ACTIONS(6176), - [anon_sym_LBRACE] = ACTIONS(6174), - [anon_sym_STAR] = ACTIONS(6174), - [anon_sym_LBRACK] = ACTIONS(6174), - [anon_sym_static] = ACTIONS(6176), - [anon_sym_register] = ACTIONS(6176), - [anon_sym_inline] = ACTIONS(6176), - [anon_sym_const] = ACTIONS(6176), - [anon_sym_restrict] = ACTIONS(6176), - [anon_sym_volatile] = ACTIONS(6176), - [anon_sym__Atomic] = ACTIONS(6176), - [anon_sym_mutable] = ACTIONS(6176), - [anon_sym_explicit] = ACTIONS(6176), - [anon_sym_constexpr] = ACTIONS(6176), - [anon_sym_unsigned] = ACTIONS(6176), - [anon_sym_long] = ACTIONS(6176), - [anon_sym_short] = ACTIONS(6176), - [sym_primitive_type] = ACTIONS(6176), - [anon_sym_enum] = ACTIONS(6176), - [anon_sym_struct] = ACTIONS(6176), - [anon_sym_union] = ACTIONS(6176), - [anon_sym_if] = ACTIONS(6176), - [anon_sym_switch] = ACTIONS(6176), - [anon_sym_case] = ACTIONS(6176), - [anon_sym_default] = ACTIONS(6176), - [anon_sym_while] = ACTIONS(6176), - [anon_sym_do] = ACTIONS(6176), - [anon_sym_for] = ACTIONS(6176), - [anon_sym_return] = ACTIONS(6176), - [anon_sym_break] = ACTIONS(6176), - [anon_sym_continue] = ACTIONS(6176), - [anon_sym_goto] = ACTIONS(6176), - [anon_sym_AMP] = ACTIONS(6174), - [anon_sym_BANG] = ACTIONS(6174), - [anon_sym_TILDE] = ACTIONS(6174), - [anon_sym_PLUS] = ACTIONS(6176), - [anon_sym_DASH] = ACTIONS(6176), - [anon_sym_DASH_DASH] = ACTIONS(6174), - [anon_sym_PLUS_PLUS] = ACTIONS(6174), - [anon_sym_sizeof] = ACTIONS(6176), - [sym_number_literal] = ACTIONS(6174), - [sym_char_literal] = ACTIONS(6174), - [sym_string_literal] = ACTIONS(6174), - [sym_true] = ACTIONS(6176), - [sym_false] = ACTIONS(6176), - [sym_null] = ACTIONS(6176), - [sym_identifier] = ACTIONS(6176), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6176), - [sym_auto] = ACTIONS(6176), - [anon_sym_typename] = ACTIONS(6176), - [anon_sym_new] = ACTIONS(6176), - [anon_sym_COLON_COLON] = ACTIONS(6174), - [anon_sym_delete] = ACTIONS(6176), - [sym_nullptr] = ACTIONS(6176), + [2823] = { + [sym_raw_string_literal] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6206), + [anon_sym_LPAREN] = ACTIONS(6204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6206), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6206), + [sym_preproc_directive] = ACTIONS(6206), + [anon_sym_SEMI] = ACTIONS(6204), + [anon_sym_typedef] = ACTIONS(6206), + [anon_sym_extern] = ACTIONS(6206), + [anon_sym_LBRACE] = ACTIONS(6204), + [anon_sym_STAR] = ACTIONS(6204), + [anon_sym_LBRACK] = ACTIONS(6204), + [anon_sym_static] = ACTIONS(6206), + [anon_sym_register] = ACTIONS(6206), + [anon_sym_inline] = ACTIONS(6206), + [anon_sym_const] = ACTIONS(6206), + [anon_sym_restrict] = ACTIONS(6206), + [anon_sym_volatile] = ACTIONS(6206), + [anon_sym__Atomic] = ACTIONS(6206), + [anon_sym_mutable] = ACTIONS(6206), + [anon_sym_explicit] = ACTIONS(6206), + [anon_sym_constexpr] = ACTIONS(6206), + [anon_sym_unsigned] = ACTIONS(6206), + [anon_sym_long] = ACTIONS(6206), + [anon_sym_short] = ACTIONS(6206), + [sym_primitive_type] = ACTIONS(6206), + [anon_sym_enum] = ACTIONS(6206), + [anon_sym_struct] = ACTIONS(6206), + [anon_sym_union] = ACTIONS(6206), + [anon_sym_if] = ACTIONS(6206), + [anon_sym_switch] = ACTIONS(6206), + [anon_sym_case] = ACTIONS(6206), + [anon_sym_default] = ACTIONS(6206), + [anon_sym_while] = ACTIONS(6206), + [anon_sym_do] = ACTIONS(6206), + [anon_sym_for] = ACTIONS(6206), + [anon_sym_return] = ACTIONS(6206), + [anon_sym_break] = ACTIONS(6206), + [anon_sym_continue] = ACTIONS(6206), + [anon_sym_goto] = ACTIONS(6206), + [anon_sym_AMP] = ACTIONS(6204), + [anon_sym_BANG] = ACTIONS(6204), + [anon_sym_TILDE] = ACTIONS(6204), + [anon_sym_PLUS] = ACTIONS(6206), + [anon_sym_DASH] = ACTIONS(6206), + [anon_sym_DASH_DASH] = ACTIONS(6204), + [anon_sym_PLUS_PLUS] = ACTIONS(6204), + [anon_sym_sizeof] = ACTIONS(6206), + [sym_number_literal] = ACTIONS(6204), + [sym_char_literal] = ACTIONS(6204), + [sym_string_literal] = ACTIONS(6204), + [sym_true] = ACTIONS(6206), + [sym_false] = ACTIONS(6206), + [sym_null] = ACTIONS(6206), + [sym_identifier] = ACTIONS(6206), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6206), + [sym_auto] = ACTIONS(6206), + [anon_sym_typename] = ACTIONS(6206), + [anon_sym_new] = ACTIONS(6206), + [anon_sym_COLON_COLON] = ACTIONS(6204), + [anon_sym_delete] = ACTIONS(6206), + [sym_nullptr] = ACTIONS(6206), }, - [2803] = { - [sym_raw_string_literal] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6180), - [anon_sym_LPAREN] = ACTIONS(6178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6180), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6180), - [sym_preproc_directive] = ACTIONS(6180), - [anon_sym_SEMI] = ACTIONS(6178), - [anon_sym_typedef] = ACTIONS(6180), - [anon_sym_extern] = ACTIONS(6180), - [anon_sym_LBRACE] = ACTIONS(6178), - [anon_sym_STAR] = ACTIONS(6178), - [anon_sym_LBRACK] = ACTIONS(6178), - [anon_sym_static] = ACTIONS(6180), - [anon_sym_register] = ACTIONS(6180), - [anon_sym_inline] = ACTIONS(6180), - [anon_sym_const] = ACTIONS(6180), - [anon_sym_restrict] = ACTIONS(6180), - [anon_sym_volatile] = ACTIONS(6180), - [anon_sym__Atomic] = ACTIONS(6180), - [anon_sym_mutable] = ACTIONS(6180), - [anon_sym_explicit] = ACTIONS(6180), - [anon_sym_constexpr] = ACTIONS(6180), - [anon_sym_unsigned] = ACTIONS(6180), - [anon_sym_long] = ACTIONS(6180), - [anon_sym_short] = ACTIONS(6180), - [sym_primitive_type] = ACTIONS(6180), - [anon_sym_enum] = ACTIONS(6180), - [anon_sym_struct] = ACTIONS(6180), - [anon_sym_union] = ACTIONS(6180), - [anon_sym_if] = ACTIONS(6180), - [anon_sym_switch] = ACTIONS(6180), - [anon_sym_case] = ACTIONS(6180), - [anon_sym_default] = ACTIONS(6180), - [anon_sym_while] = ACTIONS(6180), - [anon_sym_do] = ACTIONS(6180), - [anon_sym_for] = ACTIONS(6180), - [anon_sym_return] = ACTIONS(6180), - [anon_sym_break] = ACTIONS(6180), - [anon_sym_continue] = ACTIONS(6180), - [anon_sym_goto] = ACTIONS(6180), - [anon_sym_AMP] = ACTIONS(6178), - [anon_sym_BANG] = ACTIONS(6178), - [anon_sym_TILDE] = ACTIONS(6178), - [anon_sym_PLUS] = ACTIONS(6180), - [anon_sym_DASH] = ACTIONS(6180), - [anon_sym_DASH_DASH] = ACTIONS(6178), - [anon_sym_PLUS_PLUS] = ACTIONS(6178), - [anon_sym_sizeof] = ACTIONS(6180), - [sym_number_literal] = ACTIONS(6178), - [sym_char_literal] = ACTIONS(6178), - [sym_string_literal] = ACTIONS(6178), - [sym_true] = ACTIONS(6180), - [sym_false] = ACTIONS(6180), - [sym_null] = ACTIONS(6180), - [sym_identifier] = ACTIONS(6180), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6180), - [sym_auto] = ACTIONS(6180), - [anon_sym_typename] = ACTIONS(6180), - [anon_sym_new] = ACTIONS(6180), - [anon_sym_COLON_COLON] = ACTIONS(6178), - [anon_sym_delete] = ACTIONS(6180), - [sym_nullptr] = ACTIONS(6180), + [2824] = { + [sym_raw_string_literal] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6210), + [anon_sym_LPAREN] = ACTIONS(6208), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6210), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6210), + [sym_preproc_directive] = ACTIONS(6210), + [anon_sym_SEMI] = ACTIONS(6208), + [anon_sym_typedef] = ACTIONS(6210), + [anon_sym_extern] = ACTIONS(6210), + [anon_sym_LBRACE] = ACTIONS(6208), + [anon_sym_STAR] = ACTIONS(6208), + [anon_sym_LBRACK] = ACTIONS(6208), + [anon_sym_static] = ACTIONS(6210), + [anon_sym_register] = ACTIONS(6210), + [anon_sym_inline] = ACTIONS(6210), + [anon_sym_const] = ACTIONS(6210), + [anon_sym_restrict] = ACTIONS(6210), + [anon_sym_volatile] = ACTIONS(6210), + [anon_sym__Atomic] = ACTIONS(6210), + [anon_sym_mutable] = ACTIONS(6210), + [anon_sym_explicit] = ACTIONS(6210), + [anon_sym_constexpr] = ACTIONS(6210), + [anon_sym_unsigned] = ACTIONS(6210), + [anon_sym_long] = ACTIONS(6210), + [anon_sym_short] = ACTIONS(6210), + [sym_primitive_type] = ACTIONS(6210), + [anon_sym_enum] = ACTIONS(6210), + [anon_sym_struct] = ACTIONS(6210), + [anon_sym_union] = ACTIONS(6210), + [anon_sym_if] = ACTIONS(6210), + [anon_sym_switch] = ACTIONS(6210), + [anon_sym_case] = ACTIONS(6210), + [anon_sym_default] = ACTIONS(6210), + [anon_sym_while] = ACTIONS(6210), + [anon_sym_do] = ACTIONS(6210), + [anon_sym_for] = ACTIONS(6210), + [anon_sym_return] = ACTIONS(6210), + [anon_sym_break] = ACTIONS(6210), + [anon_sym_continue] = ACTIONS(6210), + [anon_sym_goto] = ACTIONS(6210), + [anon_sym_AMP] = ACTIONS(6208), + [anon_sym_BANG] = ACTIONS(6208), + [anon_sym_TILDE] = ACTIONS(6208), + [anon_sym_PLUS] = ACTIONS(6210), + [anon_sym_DASH] = ACTIONS(6210), + [anon_sym_DASH_DASH] = ACTIONS(6208), + [anon_sym_PLUS_PLUS] = ACTIONS(6208), + [anon_sym_sizeof] = ACTIONS(6210), + [sym_number_literal] = ACTIONS(6208), + [sym_char_literal] = ACTIONS(6208), + [sym_string_literal] = ACTIONS(6208), + [sym_true] = ACTIONS(6210), + [sym_false] = ACTIONS(6210), + [sym_null] = ACTIONS(6210), + [sym_identifier] = ACTIONS(6210), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6210), + [sym_auto] = ACTIONS(6210), + [anon_sym_typename] = ACTIONS(6210), + [anon_sym_new] = ACTIONS(6210), + [anon_sym_COLON_COLON] = ACTIONS(6208), + [anon_sym_delete] = ACTIONS(6210), + [sym_nullptr] = ACTIONS(6210), }, - [2804] = { - [sym_raw_string_literal] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6184), - [anon_sym_LPAREN] = ACTIONS(6182), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6184), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6184), - [sym_preproc_directive] = ACTIONS(6184), - [anon_sym_SEMI] = ACTIONS(6182), - [anon_sym_typedef] = ACTIONS(6184), - [anon_sym_extern] = ACTIONS(6184), - [anon_sym_LBRACE] = ACTIONS(6182), - [anon_sym_STAR] = ACTIONS(6182), - [anon_sym_LBRACK] = ACTIONS(6182), - [anon_sym_static] = ACTIONS(6184), - [anon_sym_register] = ACTIONS(6184), - [anon_sym_inline] = ACTIONS(6184), - [anon_sym_const] = ACTIONS(6184), - [anon_sym_restrict] = ACTIONS(6184), - [anon_sym_volatile] = ACTIONS(6184), - [anon_sym__Atomic] = ACTIONS(6184), - [anon_sym_mutable] = ACTIONS(6184), - [anon_sym_explicit] = ACTIONS(6184), - [anon_sym_constexpr] = ACTIONS(6184), - [anon_sym_unsigned] = ACTIONS(6184), - [anon_sym_long] = ACTIONS(6184), - [anon_sym_short] = ACTIONS(6184), - [sym_primitive_type] = ACTIONS(6184), - [anon_sym_enum] = ACTIONS(6184), - [anon_sym_struct] = ACTIONS(6184), - [anon_sym_union] = ACTIONS(6184), - [anon_sym_if] = ACTIONS(6184), - [anon_sym_switch] = ACTIONS(6184), - [anon_sym_case] = ACTIONS(6184), - [anon_sym_default] = ACTIONS(6184), - [anon_sym_while] = ACTIONS(6184), - [anon_sym_do] = ACTIONS(6184), - [anon_sym_for] = ACTIONS(6184), - [anon_sym_return] = ACTIONS(6184), - [anon_sym_break] = ACTIONS(6184), - [anon_sym_continue] = ACTIONS(6184), - [anon_sym_goto] = ACTIONS(6184), - [anon_sym_AMP] = ACTIONS(6182), - [anon_sym_BANG] = ACTIONS(6182), - [anon_sym_TILDE] = ACTIONS(6182), - [anon_sym_PLUS] = ACTIONS(6184), - [anon_sym_DASH] = ACTIONS(6184), - [anon_sym_DASH_DASH] = ACTIONS(6182), - [anon_sym_PLUS_PLUS] = ACTIONS(6182), - [anon_sym_sizeof] = ACTIONS(6184), - [sym_number_literal] = ACTIONS(6182), - [sym_char_literal] = ACTIONS(6182), - [sym_string_literal] = ACTIONS(6182), - [sym_true] = ACTIONS(6184), - [sym_false] = ACTIONS(6184), - [sym_null] = ACTIONS(6184), - [sym_identifier] = ACTIONS(6184), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6184), - [sym_auto] = ACTIONS(6184), - [anon_sym_typename] = ACTIONS(6184), - [anon_sym_new] = ACTIONS(6184), - [anon_sym_COLON_COLON] = ACTIONS(6182), - [anon_sym_delete] = ACTIONS(6184), - [sym_nullptr] = ACTIONS(6184), + [2825] = { + [sym_raw_string_literal] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6214), + [anon_sym_LPAREN] = ACTIONS(6212), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6214), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6214), + [sym_preproc_directive] = ACTIONS(6214), + [anon_sym_SEMI] = ACTIONS(6212), + [anon_sym_typedef] = ACTIONS(6214), + [anon_sym_extern] = ACTIONS(6214), + [anon_sym_LBRACE] = ACTIONS(6212), + [anon_sym_STAR] = ACTIONS(6212), + [anon_sym_LBRACK] = ACTIONS(6212), + [anon_sym_static] = ACTIONS(6214), + [anon_sym_register] = ACTIONS(6214), + [anon_sym_inline] = ACTIONS(6214), + [anon_sym_const] = ACTIONS(6214), + [anon_sym_restrict] = ACTIONS(6214), + [anon_sym_volatile] = ACTIONS(6214), + [anon_sym__Atomic] = ACTIONS(6214), + [anon_sym_mutable] = ACTIONS(6214), + [anon_sym_explicit] = ACTIONS(6214), + [anon_sym_constexpr] = ACTIONS(6214), + [anon_sym_unsigned] = ACTIONS(6214), + [anon_sym_long] = ACTIONS(6214), + [anon_sym_short] = ACTIONS(6214), + [sym_primitive_type] = ACTIONS(6214), + [anon_sym_enum] = ACTIONS(6214), + [anon_sym_struct] = ACTIONS(6214), + [anon_sym_union] = ACTIONS(6214), + [anon_sym_if] = ACTIONS(6214), + [anon_sym_switch] = ACTIONS(6214), + [anon_sym_case] = ACTIONS(6214), + [anon_sym_default] = ACTIONS(6214), + [anon_sym_while] = ACTIONS(6214), + [anon_sym_do] = ACTIONS(6214), + [anon_sym_for] = ACTIONS(6214), + [anon_sym_return] = ACTIONS(6214), + [anon_sym_break] = ACTIONS(6214), + [anon_sym_continue] = ACTIONS(6214), + [anon_sym_goto] = ACTIONS(6214), + [anon_sym_AMP] = ACTIONS(6212), + [anon_sym_BANG] = ACTIONS(6212), + [anon_sym_TILDE] = ACTIONS(6212), + [anon_sym_PLUS] = ACTIONS(6214), + [anon_sym_DASH] = ACTIONS(6214), + [anon_sym_DASH_DASH] = ACTIONS(6212), + [anon_sym_PLUS_PLUS] = ACTIONS(6212), + [anon_sym_sizeof] = ACTIONS(6214), + [sym_number_literal] = ACTIONS(6212), + [sym_char_literal] = ACTIONS(6212), + [sym_string_literal] = ACTIONS(6212), + [sym_true] = ACTIONS(6214), + [sym_false] = ACTIONS(6214), + [sym_null] = ACTIONS(6214), + [sym_identifier] = ACTIONS(6214), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6214), + [sym_auto] = ACTIONS(6214), + [anon_sym_typename] = ACTIONS(6214), + [anon_sym_new] = ACTIONS(6214), + [anon_sym_COLON_COLON] = ACTIONS(6212), + [anon_sym_delete] = ACTIONS(6214), + [sym_nullptr] = ACTIONS(6214), }, - [2805] = { - [sym_raw_string_literal] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6188), - [anon_sym_LPAREN] = ACTIONS(6186), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6188), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6188), - [sym_preproc_directive] = ACTIONS(6188), - [anon_sym_SEMI] = ACTIONS(6186), - [anon_sym_typedef] = ACTIONS(6188), - [anon_sym_extern] = ACTIONS(6188), - [anon_sym_LBRACE] = ACTIONS(6186), - [anon_sym_STAR] = ACTIONS(6186), - [anon_sym_LBRACK] = ACTIONS(6186), - [anon_sym_static] = ACTIONS(6188), - [anon_sym_register] = ACTIONS(6188), - [anon_sym_inline] = ACTIONS(6188), - [anon_sym_const] = ACTIONS(6188), - [anon_sym_restrict] = ACTIONS(6188), - [anon_sym_volatile] = ACTIONS(6188), - [anon_sym__Atomic] = ACTIONS(6188), - [anon_sym_mutable] = ACTIONS(6188), - [anon_sym_explicit] = ACTIONS(6188), - [anon_sym_constexpr] = ACTIONS(6188), - [anon_sym_unsigned] = ACTIONS(6188), - [anon_sym_long] = ACTIONS(6188), - [anon_sym_short] = ACTIONS(6188), - [sym_primitive_type] = ACTIONS(6188), - [anon_sym_enum] = ACTIONS(6188), - [anon_sym_struct] = ACTIONS(6188), - [anon_sym_union] = ACTIONS(6188), - [anon_sym_if] = ACTIONS(6188), - [anon_sym_switch] = ACTIONS(6188), - [anon_sym_case] = ACTIONS(6188), - [anon_sym_default] = ACTIONS(6188), - [anon_sym_while] = ACTIONS(6188), - [anon_sym_do] = ACTIONS(6188), - [anon_sym_for] = ACTIONS(6188), - [anon_sym_return] = ACTIONS(6188), - [anon_sym_break] = ACTIONS(6188), - [anon_sym_continue] = ACTIONS(6188), - [anon_sym_goto] = ACTIONS(6188), - [anon_sym_AMP] = ACTIONS(6186), - [anon_sym_BANG] = ACTIONS(6186), - [anon_sym_TILDE] = ACTIONS(6186), - [anon_sym_PLUS] = ACTIONS(6188), - [anon_sym_DASH] = ACTIONS(6188), - [anon_sym_DASH_DASH] = ACTIONS(6186), - [anon_sym_PLUS_PLUS] = ACTIONS(6186), - [anon_sym_sizeof] = ACTIONS(6188), - [sym_number_literal] = ACTIONS(6186), - [sym_char_literal] = ACTIONS(6186), - [sym_string_literal] = ACTIONS(6186), - [sym_true] = ACTIONS(6188), - [sym_false] = ACTIONS(6188), - [sym_null] = ACTIONS(6188), - [sym_identifier] = ACTIONS(6188), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6188), - [sym_auto] = ACTIONS(6188), - [anon_sym_typename] = ACTIONS(6188), - [anon_sym_new] = ACTIONS(6188), - [anon_sym_COLON_COLON] = ACTIONS(6186), - [anon_sym_delete] = ACTIONS(6188), - [sym_nullptr] = ACTIONS(6188), + [2826] = { + [sym_raw_string_literal] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6218), + [anon_sym_LPAREN] = ACTIONS(6216), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6218), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6218), + [sym_preproc_directive] = ACTIONS(6218), + [anon_sym_SEMI] = ACTIONS(6216), + [anon_sym_typedef] = ACTIONS(6218), + [anon_sym_extern] = ACTIONS(6218), + [anon_sym_LBRACE] = ACTIONS(6216), + [anon_sym_STAR] = ACTIONS(6216), + [anon_sym_LBRACK] = ACTIONS(6216), + [anon_sym_static] = ACTIONS(6218), + [anon_sym_register] = ACTIONS(6218), + [anon_sym_inline] = ACTIONS(6218), + [anon_sym_const] = ACTIONS(6218), + [anon_sym_restrict] = ACTIONS(6218), + [anon_sym_volatile] = ACTIONS(6218), + [anon_sym__Atomic] = ACTIONS(6218), + [anon_sym_mutable] = ACTIONS(6218), + [anon_sym_explicit] = ACTIONS(6218), + [anon_sym_constexpr] = ACTIONS(6218), + [anon_sym_unsigned] = ACTIONS(6218), + [anon_sym_long] = ACTIONS(6218), + [anon_sym_short] = ACTIONS(6218), + [sym_primitive_type] = ACTIONS(6218), + [anon_sym_enum] = ACTIONS(6218), + [anon_sym_struct] = ACTIONS(6218), + [anon_sym_union] = ACTIONS(6218), + [anon_sym_if] = ACTIONS(6218), + [anon_sym_switch] = ACTIONS(6218), + [anon_sym_case] = ACTIONS(6218), + [anon_sym_default] = ACTIONS(6218), + [anon_sym_while] = ACTIONS(6218), + [anon_sym_do] = ACTIONS(6218), + [anon_sym_for] = ACTIONS(6218), + [anon_sym_return] = ACTIONS(6218), + [anon_sym_break] = ACTIONS(6218), + [anon_sym_continue] = ACTIONS(6218), + [anon_sym_goto] = ACTIONS(6218), + [anon_sym_AMP] = ACTIONS(6216), + [anon_sym_BANG] = ACTIONS(6216), + [anon_sym_TILDE] = ACTIONS(6216), + [anon_sym_PLUS] = ACTIONS(6218), + [anon_sym_DASH] = ACTIONS(6218), + [anon_sym_DASH_DASH] = ACTIONS(6216), + [anon_sym_PLUS_PLUS] = ACTIONS(6216), + [anon_sym_sizeof] = ACTIONS(6218), + [sym_number_literal] = ACTIONS(6216), + [sym_char_literal] = ACTIONS(6216), + [sym_string_literal] = ACTIONS(6216), + [sym_true] = ACTIONS(6218), + [sym_false] = ACTIONS(6218), + [sym_null] = ACTIONS(6218), + [sym_identifier] = ACTIONS(6218), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6218), + [sym_auto] = ACTIONS(6218), + [anon_sym_typename] = ACTIONS(6218), + [anon_sym_new] = ACTIONS(6218), + [anon_sym_COLON_COLON] = ACTIONS(6216), + [anon_sym_delete] = ACTIONS(6218), + [sym_nullptr] = ACTIONS(6218), }, - [2806] = { - [sym_raw_string_literal] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6192), - [anon_sym_LPAREN] = ACTIONS(6190), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6192), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6192), - [sym_preproc_directive] = ACTIONS(6192), - [anon_sym_SEMI] = ACTIONS(6190), - [anon_sym_typedef] = ACTIONS(6192), - [anon_sym_extern] = ACTIONS(6192), - [anon_sym_LBRACE] = ACTIONS(6190), - [anon_sym_STAR] = ACTIONS(6190), - [anon_sym_LBRACK] = ACTIONS(6190), - [anon_sym_static] = ACTIONS(6192), - [anon_sym_register] = ACTIONS(6192), - [anon_sym_inline] = ACTIONS(6192), - [anon_sym_const] = ACTIONS(6192), - [anon_sym_restrict] = ACTIONS(6192), - [anon_sym_volatile] = ACTIONS(6192), - [anon_sym__Atomic] = ACTIONS(6192), - [anon_sym_mutable] = ACTIONS(6192), - [anon_sym_explicit] = ACTIONS(6192), - [anon_sym_constexpr] = ACTIONS(6192), - [anon_sym_unsigned] = ACTIONS(6192), - [anon_sym_long] = ACTIONS(6192), - [anon_sym_short] = ACTIONS(6192), - [sym_primitive_type] = ACTIONS(6192), - [anon_sym_enum] = ACTIONS(6192), - [anon_sym_struct] = ACTIONS(6192), - [anon_sym_union] = ACTIONS(6192), - [anon_sym_if] = ACTIONS(6192), - [anon_sym_switch] = ACTIONS(6192), - [anon_sym_case] = ACTIONS(6192), - [anon_sym_default] = ACTIONS(6192), - [anon_sym_while] = ACTIONS(6192), - [anon_sym_do] = ACTIONS(6192), - [anon_sym_for] = ACTIONS(6192), - [anon_sym_return] = ACTIONS(6192), - [anon_sym_break] = ACTIONS(6192), - [anon_sym_continue] = ACTIONS(6192), - [anon_sym_goto] = ACTIONS(6192), - [anon_sym_AMP] = ACTIONS(6190), - [anon_sym_BANG] = ACTIONS(6190), - [anon_sym_TILDE] = ACTIONS(6190), - [anon_sym_PLUS] = ACTIONS(6192), - [anon_sym_DASH] = ACTIONS(6192), - [anon_sym_DASH_DASH] = ACTIONS(6190), - [anon_sym_PLUS_PLUS] = ACTIONS(6190), - [anon_sym_sizeof] = ACTIONS(6192), - [sym_number_literal] = ACTIONS(6190), - [sym_char_literal] = ACTIONS(6190), - [sym_string_literal] = ACTIONS(6190), - [sym_true] = ACTIONS(6192), - [sym_false] = ACTIONS(6192), - [sym_null] = ACTIONS(6192), - [sym_identifier] = ACTIONS(6192), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6192), - [sym_auto] = ACTIONS(6192), - [anon_sym_typename] = ACTIONS(6192), - [anon_sym_new] = ACTIONS(6192), - [anon_sym_COLON_COLON] = ACTIONS(6190), - [anon_sym_delete] = ACTIONS(6192), - [sym_nullptr] = ACTIONS(6192), + [2827] = { + [sym_raw_string_literal] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6222), + [anon_sym_LPAREN] = ACTIONS(6220), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6222), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6222), + [sym_preproc_directive] = ACTIONS(6222), + [anon_sym_SEMI] = ACTIONS(6220), + [anon_sym_typedef] = ACTIONS(6222), + [anon_sym_extern] = ACTIONS(6222), + [anon_sym_LBRACE] = ACTIONS(6220), + [anon_sym_STAR] = ACTIONS(6220), + [anon_sym_LBRACK] = ACTIONS(6220), + [anon_sym_static] = ACTIONS(6222), + [anon_sym_register] = ACTIONS(6222), + [anon_sym_inline] = ACTIONS(6222), + [anon_sym_const] = ACTIONS(6222), + [anon_sym_restrict] = ACTIONS(6222), + [anon_sym_volatile] = ACTIONS(6222), + [anon_sym__Atomic] = ACTIONS(6222), + [anon_sym_mutable] = ACTIONS(6222), + [anon_sym_explicit] = ACTIONS(6222), + [anon_sym_constexpr] = ACTIONS(6222), + [anon_sym_unsigned] = ACTIONS(6222), + [anon_sym_long] = ACTIONS(6222), + [anon_sym_short] = ACTIONS(6222), + [sym_primitive_type] = ACTIONS(6222), + [anon_sym_enum] = ACTIONS(6222), + [anon_sym_struct] = ACTIONS(6222), + [anon_sym_union] = ACTIONS(6222), + [anon_sym_if] = ACTIONS(6222), + [anon_sym_switch] = ACTIONS(6222), + [anon_sym_case] = ACTIONS(6222), + [anon_sym_default] = ACTIONS(6222), + [anon_sym_while] = ACTIONS(6222), + [anon_sym_do] = ACTIONS(6222), + [anon_sym_for] = ACTIONS(6222), + [anon_sym_return] = ACTIONS(6222), + [anon_sym_break] = ACTIONS(6222), + [anon_sym_continue] = ACTIONS(6222), + [anon_sym_goto] = ACTIONS(6222), + [anon_sym_AMP] = ACTIONS(6220), + [anon_sym_BANG] = ACTIONS(6220), + [anon_sym_TILDE] = ACTIONS(6220), + [anon_sym_PLUS] = ACTIONS(6222), + [anon_sym_DASH] = ACTIONS(6222), + [anon_sym_DASH_DASH] = ACTIONS(6220), + [anon_sym_PLUS_PLUS] = ACTIONS(6220), + [anon_sym_sizeof] = ACTIONS(6222), + [sym_number_literal] = ACTIONS(6220), + [sym_char_literal] = ACTIONS(6220), + [sym_string_literal] = ACTIONS(6220), + [sym_true] = ACTIONS(6222), + [sym_false] = ACTIONS(6222), + [sym_null] = ACTIONS(6222), + [sym_identifier] = ACTIONS(6222), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6222), + [sym_auto] = ACTIONS(6222), + [anon_sym_typename] = ACTIONS(6222), + [anon_sym_new] = ACTIONS(6222), + [anon_sym_COLON_COLON] = ACTIONS(6220), + [anon_sym_delete] = ACTIONS(6222), + [sym_nullptr] = ACTIONS(6222), }, - [2807] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), + [2828] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), }, - [2808] = { + [2829] = { [sym_raw_string_literal] = ACTIONS(1614), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1616), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1616), @@ -112298,17 +113211,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1616), [sym_nullptr] = ACTIONS(1616), }, - [2809] = { - [sym_preproc_include] = STATE(2901), - [sym_preproc_def] = STATE(2901), - [sym_preproc_function_def] = STATE(2901), - [sym_preproc_call] = STATE(2901), + [2830] = { + [sym_preproc_include] = STATE(2929), + [sym_preproc_def] = STATE(2929), + [sym_preproc_function_def] = STATE(2929), + [sym_preproc_call] = STATE(2929), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(2901), - [sym_type_definition] = STATE(2901), + [sym_declaration] = STATE(2929), + [sym_type_definition] = STATE(2929), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(2901), + [sym_compound_statement] = STATE(2929), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -112316,18 +113229,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(2901), - [sym_expression_statement] = STATE(2901), - [sym_if_statement] = STATE(2901), - [sym_switch_statement] = STATE(2901), - [sym_case_statement] = STATE(2901), - [sym_while_statement] = STATE(2901), - [sym_do_statement] = STATE(2901), - [sym_for_statement] = STATE(2901), - [sym_return_statement] = STATE(2901), - [sym_break_statement] = STATE(2901), - [sym_continue_statement] = STATE(2901), - [sym_goto_statement] = STATE(2901), + [sym_labeled_statement] = STATE(2929), + [sym_expression_statement] = STATE(2929), + [sym_if_statement] = STATE(2929), + [sym_switch_statement] = STATE(2929), + [sym_case_statement] = STATE(2929), + [sym_while_statement] = STATE(2929), + [sym_do_statement] = STATE(2929), + [sym_for_statement] = STATE(2929), + [sym_return_statement] = STATE(2929), + [sym_break_statement] = STATE(2929), + [sym_continue_statement] = STATE(2929), + [sym_goto_statement] = STATE(2929), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -112347,14 +113260,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(2901), + [sym__empty_declaration] = STATE(2929), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(2901), + [sym_structured_binding_declaration] = STATE(2929), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2901), + [sym_for_range_loop] = STATE(2929), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -112362,7 +113275,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2901), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(2929), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -112377,7 +113290,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6879), + [anon_sym_RBRACE] = ACTIONS(6941), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -112432,135 +113345,136 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2810] = { - [anon_sym_LPAREN] = ACTIONS(6881), + [2831] = { + [anon_sym_LPAREN] = ACTIONS(6943), + [anon_sym_constexpr] = ACTIONS(6945), [sym_comment] = ACTIONS(49), }, - [2811] = { - [anon_sym_LPAREN] = ACTIONS(6883), + [2832] = { + [anon_sym_LPAREN] = ACTIONS(6947), [sym_comment] = ACTIONS(49), }, - [2812] = { - [sym__expression] = STATE(2904), - [sym_conditional_expression] = STATE(2904), - [sym_assignment_expression] = STATE(2904), - [sym_pointer_expression] = STATE(2904), - [sym_logical_expression] = STATE(2904), - [sym_bitwise_expression] = STATE(2904), - [sym_equality_expression] = STATE(2904), - [sym_relational_expression] = STATE(2904), - [sym_shift_expression] = STATE(2904), - [sym_math_expression] = STATE(2904), - [sym_cast_expression] = STATE(2904), - [sym_sizeof_expression] = STATE(2904), - [sym_subscript_expression] = STATE(2904), - [sym_call_expression] = STATE(2904), - [sym_field_expression] = STATE(2904), - [sym_compound_literal_expression] = STATE(2904), - [sym_parenthesized_expression] = STATE(2904), - [sym_concatenated_string] = STATE(2904), + [2833] = { + [sym__expression] = STATE(2933), + [sym_conditional_expression] = STATE(2933), + [sym_assignment_expression] = STATE(2933), + [sym_pointer_expression] = STATE(2933), + [sym_logical_expression] = STATE(2933), + [sym_bitwise_expression] = STATE(2933), + [sym_equality_expression] = STATE(2933), + [sym_relational_expression] = STATE(2933), + [sym_shift_expression] = STATE(2933), + [sym_math_expression] = STATE(2933), + [sym_cast_expression] = STATE(2933), + [sym_sizeof_expression] = STATE(2933), + [sym_subscript_expression] = STATE(2933), + [sym_call_expression] = STATE(2933), + [sym_field_expression] = STATE(2933), + [sym_compound_literal_expression] = STATE(2933), + [sym_parenthesized_expression] = STATE(2933), + [sym_concatenated_string] = STATE(2933), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2904), - [sym_new_expression] = STATE(2904), - [sym_delete_expression] = STATE(2904), - [sym_lambda_expression] = STATE(2904), + [sym_template_function] = STATE(2933), + [sym_new_expression] = STATE(2933), + [sym_delete_expression] = STATE(2933), + [sym_lambda_expression] = STATE(2933), [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(854), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6885), - [anon_sym_LPAREN] = ACTIONS(1632), - [anon_sym_STAR] = ACTIONS(1634), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(1634), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_sizeof] = ACTIONS(1644), - [sym_number_literal] = ACTIONS(6885), - [sym_char_literal] = ACTIONS(6885), - [sym_string_literal] = ACTIONS(1646), - [sym_true] = ACTIONS(6887), - [sym_false] = ACTIONS(6887), - [sym_null] = ACTIONS(6887), + [sym_scoped_identifier] = STATE(855), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6949), + [anon_sym_LPAREN] = ACTIONS(1634), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1640), + [anon_sym_PLUS] = ACTIONS(1642), + [anon_sym_DASH] = ACTIONS(1642), + [anon_sym_DASH_DASH] = ACTIONS(1644), + [anon_sym_PLUS_PLUS] = ACTIONS(1644), + [anon_sym_sizeof] = ACTIONS(1646), + [sym_number_literal] = ACTIONS(6949), + [sym_char_literal] = ACTIONS(6949), + [sym_string_literal] = ACTIONS(1648), + [sym_true] = ACTIONS(6951), + [sym_false] = ACTIONS(6951), + [sym_null] = ACTIONS(6951), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_delete] = ACTIONS(1652), - [sym_nullptr] = ACTIONS(6887), + [anon_sym_COLON_COLON] = ACTIONS(1652), + [anon_sym_delete] = ACTIONS(1654), + [sym_nullptr] = ACTIONS(6951), }, - [2813] = { - [anon_sym_COLON] = ACTIONS(6889), + [2834] = { + [anon_sym_COLON] = ACTIONS(6953), [sym_comment] = ACTIONS(49), }, - [2814] = { - [anon_sym_LPAREN] = ACTIONS(6891), + [2835] = { + [anon_sym_LPAREN] = ACTIONS(6955), [sym_comment] = ACTIONS(49), }, - [2815] = { - [sym_compound_statement] = STATE(2907), - [sym_labeled_statement] = STATE(2907), - [sym_expression_statement] = STATE(2907), - [sym_if_statement] = STATE(2907), - [sym_switch_statement] = STATE(2907), - [sym_case_statement] = STATE(2907), - [sym_while_statement] = STATE(2907), - [sym_do_statement] = STATE(2907), - [sym_for_statement] = STATE(2907), - [sym_return_statement] = STATE(2907), - [sym_break_statement] = STATE(2907), - [sym_continue_statement] = STATE(2907), - [sym_goto_statement] = STATE(2907), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2907), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2836] = { + [sym_compound_statement] = STATE(2936), + [sym_labeled_statement] = STATE(2936), + [sym_expression_statement] = STATE(2936), + [sym_if_statement] = STATE(2936), + [sym_switch_statement] = STATE(2936), + [sym_case_statement] = STATE(2936), + [sym_while_statement] = STATE(2936), + [sym_do_statement] = STATE(2936), + [sym_for_statement] = STATE(2936), + [sym_return_statement] = STATE(2936), + [sym_break_statement] = STATE(2936), + [sym_continue_statement] = STATE(2936), + [sym_goto_statement] = STATE(2936), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2936), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -112569,55 +113483,55 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2816] = { - [anon_sym_LPAREN] = ACTIONS(6893), + [2837] = { + [anon_sym_LPAREN] = ACTIONS(6957), [sym_comment] = ACTIONS(49), }, - [2817] = { - [sym__expression] = STATE(2910), - [sym_conditional_expression] = STATE(2910), - [sym_assignment_expression] = STATE(2910), - [sym_pointer_expression] = STATE(2910), - [sym_logical_expression] = STATE(2910), - [sym_bitwise_expression] = STATE(2910), - [sym_equality_expression] = STATE(2910), - [sym_relational_expression] = STATE(2910), - [sym_shift_expression] = STATE(2910), - [sym_math_expression] = STATE(2910), - [sym_cast_expression] = STATE(2910), - [sym_sizeof_expression] = STATE(2910), - [sym_subscript_expression] = STATE(2910), - [sym_call_expression] = STATE(2910), - [sym_field_expression] = STATE(2910), - [sym_compound_literal_expression] = STATE(2910), - [sym_parenthesized_expression] = STATE(2910), - [sym_initializer_list] = STATE(2911), - [sym_concatenated_string] = STATE(2910), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2910), - [sym_new_expression] = STATE(2910), - [sym_delete_expression] = STATE(2910), - [sym_lambda_expression] = STATE(2910), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6895), + [2838] = { + [sym__expression] = STATE(2939), + [sym_conditional_expression] = STATE(2939), + [sym_assignment_expression] = STATE(2939), + [sym_pointer_expression] = STATE(2939), + [sym_logical_expression] = STATE(2939), + [sym_bitwise_expression] = STATE(2939), + [sym_equality_expression] = STATE(2939), + [sym_relational_expression] = STATE(2939), + [sym_shift_expression] = STATE(2939), + [sym_math_expression] = STATE(2939), + [sym_cast_expression] = STATE(2939), + [sym_sizeof_expression] = STATE(2939), + [sym_subscript_expression] = STATE(2939), + [sym_call_expression] = STATE(2939), + [sym_field_expression] = STATE(2939), + [sym_compound_literal_expression] = STATE(2939), + [sym_parenthesized_expression] = STATE(2939), + [sym_initializer_list] = STATE(2940), + [sym_concatenated_string] = STATE(2939), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2939), + [sym_new_expression] = STATE(2939), + [sym_delete_expression] = STATE(2939), + [sym_lambda_expression] = STATE(2939), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6959), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6897), + [anon_sym_SEMI] = ACTIONS(6961), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -112629,34 +113543,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6895), - [sym_char_literal] = ACTIONS(6895), + [sym_number_literal] = ACTIONS(6959), + [sym_char_literal] = ACTIONS(6959), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6899), - [sym_false] = ACTIONS(6899), - [sym_null] = ACTIONS(6899), + [sym_true] = ACTIONS(6963), + [sym_false] = ACTIONS(6963), + [sym_null] = ACTIONS(6963), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6899), + [sym_nullptr] = ACTIONS(6963), }, - [2818] = { - [anon_sym_SEMI] = ACTIONS(6901), + [2839] = { + [anon_sym_SEMI] = ACTIONS(6965), [sym_comment] = ACTIONS(49), }, - [2819] = { - [anon_sym_SEMI] = ACTIONS(6903), + [2840] = { + [anon_sym_SEMI] = ACTIONS(6967), [sym_comment] = ACTIONS(49), }, - [2820] = { - [sym_identifier] = ACTIONS(6905), + [2841] = { + [sym_identifier] = ACTIONS(6969), [sym_comment] = ACTIONS(49), }, - [2821] = { + [2842] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(1096), + [sym_template_argument_list] = STATE(1097), [anon_sym_LPAREN] = ACTIONS(1477), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -112664,7 +113578,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_STAR] = ACTIONS(1479), [anon_sym_LBRACK] = ACTIONS(1477), [anon_sym_EQ] = ACTIONS(1479), - [anon_sym_COLON] = ACTIONS(6907), + [anon_sym_COLON] = ACTIONS(6971), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -112698,360 +113612,441 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1477), [anon_sym_DASH_GT] = ACTIONS(1477), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(2216), + [anon_sym_COLON_COLON] = ACTIONS(2218), }, - [2822] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(6909), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [2843] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(6973), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [2823] = { + [2844] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(1738), - [anon_sym_SEMI] = ACTIONS(6911), - [anon_sym_STAR] = ACTIONS(1742), + [anon_sym_COMMA] = ACTIONS(1740), + [anon_sym_SEMI] = ACTIONS(6975), + [anon_sym_STAR] = ACTIONS(1744), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(1744), - [anon_sym_QMARK] = ACTIONS(1746), - [anon_sym_STAR_EQ] = ACTIONS(1748), - [anon_sym_SLASH_EQ] = ACTIONS(1748), - [anon_sym_PERCENT_EQ] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1748), - [anon_sym_DASH_EQ] = ACTIONS(1748), - [anon_sym_LT_LT_EQ] = ACTIONS(1748), - [anon_sym_GT_GT_EQ] = ACTIONS(1748), - [anon_sym_AMP_EQ] = ACTIONS(1748), - [anon_sym_CARET_EQ] = ACTIONS(1748), - [anon_sym_PIPE_EQ] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1760), - [anon_sym_BANG_EQ] = ACTIONS(1760), - [anon_sym_LT] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1762), - [anon_sym_LT_EQ] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_SLASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), + [anon_sym_EQ] = ACTIONS(1746), + [anon_sym_QMARK] = ACTIONS(1748), + [anon_sym_STAR_EQ] = ACTIONS(1750), + [anon_sym_SLASH_EQ] = ACTIONS(1750), + [anon_sym_PERCENT_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1750), + [anon_sym_DASH_EQ] = ACTIONS(1750), + [anon_sym_LT_LT_EQ] = ACTIONS(1750), + [anon_sym_GT_GT_EQ] = ACTIONS(1750), + [anon_sym_AMP_EQ] = ACTIONS(1750), + [anon_sym_CARET_EQ] = ACTIONS(1750), + [anon_sym_PIPE_EQ] = ACTIONS(1750), + [anon_sym_AMP] = ACTIONS(1752), + [anon_sym_PIPE_PIPE] = ACTIONS(1754), + [anon_sym_AMP_AMP] = ACTIONS(1756), + [anon_sym_PIPE] = ACTIONS(1758), + [anon_sym_CARET] = ACTIONS(1760), + [anon_sym_EQ_EQ] = ACTIONS(1762), + [anon_sym_BANG_EQ] = ACTIONS(1762), + [anon_sym_LT] = ACTIONS(1764), + [anon_sym_GT] = ACTIONS(1764), + [anon_sym_LT_EQ] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1768), + [anon_sym_GT_GT] = ACTIONS(1768), + [anon_sym_PLUS] = ACTIONS(1770), + [anon_sym_DASH] = ACTIONS(1770), + [anon_sym_SLASH] = ACTIONS(1744), + [anon_sym_PERCENT] = ACTIONS(1744), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2824] = { - [anon_sym_SEMI] = ACTIONS(6911), + [2845] = { + [anon_sym_SEMI] = ACTIONS(6975), [sym_comment] = ACTIONS(49), }, - [2825] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), - }, - [2826] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), + [2846] = { + [sym_compound_statement] = STATE(2947), + [sym_labeled_statement] = STATE(2947), + [sym_expression_statement] = STATE(2947), + [sym_if_statement] = STATE(2947), + [sym_switch_statement] = STATE(2947), + [sym_case_statement] = STATE(2947), + [sym_while_statement] = STATE(2947), + [sym_do_statement] = STATE(2947), + [sym_for_statement] = STATE(2947), + [sym_return_statement] = STATE(2947), + [sym_break_statement] = STATE(2947), + [sym_continue_statement] = STATE(2947), + [sym_goto_statement] = STATE(2947), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(2947), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6760), }, - [2827] = { + [2847] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [2848] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), + }, + [2849] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6913), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6977), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2828] = { - [sym_compound_statement] = STATE(2919), - [sym_labeled_statement] = STATE(2919), - [sym_expression_statement] = STATE(2919), - [sym_if_statement] = STATE(2919), - [sym_switch_statement] = STATE(2919), - [sym_case_statement] = STATE(2919), - [sym_while_statement] = STATE(2919), - [sym_do_statement] = STATE(2919), - [sym_for_statement] = STATE(2919), - [sym_return_statement] = STATE(2919), - [sym_break_statement] = STATE(2919), - [sym_continue_statement] = STATE(2919), - [sym_goto_statement] = STATE(2919), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2919), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2850] = { + [sym_compound_statement] = STATE(2949), + [sym_labeled_statement] = STATE(2949), + [sym_expression_statement] = STATE(2949), + [sym_if_statement] = STATE(2949), + [sym_switch_statement] = STATE(2949), + [sym_case_statement] = STATE(2949), + [sym_while_statement] = STATE(2949), + [sym_do_statement] = STATE(2949), + [sym_for_statement] = STATE(2949), + [sym_return_statement] = STATE(2949), + [sym_break_statement] = STATE(2949), + [sym_continue_statement] = STATE(2949), + [sym_goto_statement] = STATE(2949), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(2949), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -113060,93 +114055,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2829] = { + [2851] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2921), + [aux_sym_for_statement_repeat1] = STATE(2951), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6915), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(6979), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2830] = { - [sym__expression] = STATE(2922), - [sym_conditional_expression] = STATE(2922), - [sym_assignment_expression] = STATE(2922), - [sym_pointer_expression] = STATE(2922), - [sym_logical_expression] = STATE(2922), - [sym_bitwise_expression] = STATE(2922), - [sym_equality_expression] = STATE(2922), - [sym_relational_expression] = STATE(2922), - [sym_shift_expression] = STATE(2922), - [sym_math_expression] = STATE(2922), - [sym_cast_expression] = STATE(2922), - [sym_sizeof_expression] = STATE(2922), - [sym_subscript_expression] = STATE(2922), - [sym_call_expression] = STATE(2922), - [sym_field_expression] = STATE(2922), - [sym_compound_literal_expression] = STATE(2922), - [sym_parenthesized_expression] = STATE(2922), - [sym_concatenated_string] = STATE(2922), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2922), - [sym_new_expression] = STATE(2922), - [sym_delete_expression] = STATE(2922), - [sym_lambda_expression] = STATE(2922), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6917), + [2852] = { + [sym__expression] = STATE(2952), + [sym_conditional_expression] = STATE(2952), + [sym_assignment_expression] = STATE(2952), + [sym_pointer_expression] = STATE(2952), + [sym_logical_expression] = STATE(2952), + [sym_bitwise_expression] = STATE(2952), + [sym_equality_expression] = STATE(2952), + [sym_relational_expression] = STATE(2952), + [sym_shift_expression] = STATE(2952), + [sym_math_expression] = STATE(2952), + [sym_cast_expression] = STATE(2952), + [sym_sizeof_expression] = STATE(2952), + [sym_subscript_expression] = STATE(2952), + [sym_call_expression] = STATE(2952), + [sym_field_expression] = STATE(2952), + [sym_compound_literal_expression] = STATE(2952), + [sym_parenthesized_expression] = STATE(2952), + [sym_concatenated_string] = STATE(2952), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2952), + [sym_new_expression] = STATE(2952), + [sym_delete_expression] = STATE(2952), + [sym_lambda_expression] = STATE(2952), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6981), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6915), + [anon_sym_RPAREN] = ACTIONS(6979), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -113157,238 +114152,238 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6917), - [sym_char_literal] = ACTIONS(6917), + [sym_number_literal] = ACTIONS(6981), + [sym_char_literal] = ACTIONS(6981), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6919), - [sym_false] = ACTIONS(6919), - [sym_null] = ACTIONS(6919), + [sym_true] = ACTIONS(6983), + [sym_false] = ACTIONS(6983), + [sym_null] = ACTIONS(6983), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6919), + [sym_nullptr] = ACTIONS(6983), }, - [2831] = { + [2853] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6921), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(6985), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2832] = { + [2854] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6923), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(6987), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2833] = { - [sym_raw_string_literal] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4058), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4060), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4060), - [sym_preproc_directive] = ACTIONS(4060), - [anon_sym_SEMI] = ACTIONS(4058), - [anon_sym_typedef] = ACTIONS(4060), - [anon_sym_extern] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(4058), - [anon_sym_LBRACK] = ACTIONS(4058), - [anon_sym_static] = ACTIONS(4060), - [anon_sym_register] = ACTIONS(4060), - [anon_sym_inline] = ACTIONS(4060), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_restrict] = ACTIONS(4060), - [anon_sym_volatile] = ACTIONS(4060), - [anon_sym__Atomic] = ACTIONS(4060), - [anon_sym_mutable] = ACTIONS(4060), - [anon_sym_explicit] = ACTIONS(4060), - [anon_sym_constexpr] = ACTIONS(4060), - [anon_sym_unsigned] = ACTIONS(4060), - [anon_sym_long] = ACTIONS(4060), - [anon_sym_short] = ACTIONS(4060), - [sym_primitive_type] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_switch] = ACTIONS(4060), - [anon_sym_case] = ACTIONS(4060), - [anon_sym_default] = ACTIONS(4060), - [anon_sym_while] = ACTIONS(4060), - [anon_sym_do] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4058), - [anon_sym_BANG] = ACTIONS(4058), - [anon_sym_TILDE] = ACTIONS(4058), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_DASH_DASH] = ACTIONS(4058), - [anon_sym_PLUS_PLUS] = ACTIONS(4058), - [anon_sym_sizeof] = ACTIONS(4060), - [sym_number_literal] = ACTIONS(4058), - [sym_char_literal] = ACTIONS(4058), - [sym_string_literal] = ACTIONS(4058), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_null] = ACTIONS(4060), - [sym_identifier] = ACTIONS(4060), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4060), - [sym_auto] = ACTIONS(4060), - [anon_sym_typename] = ACTIONS(4060), - [anon_sym_new] = ACTIONS(4060), - [anon_sym_COLON_COLON] = ACTIONS(4058), - [anon_sym_delete] = ACTIONS(4060), - [sym_nullptr] = ACTIONS(4060), + [2855] = { + [sym_raw_string_literal] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4066), + [anon_sym_LPAREN] = ACTIONS(4064), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4066), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4066), + [sym_preproc_directive] = ACTIONS(4066), + [anon_sym_SEMI] = ACTIONS(4064), + [anon_sym_typedef] = ACTIONS(4066), + [anon_sym_extern] = ACTIONS(4066), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_STAR] = ACTIONS(4064), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_static] = ACTIONS(4066), + [anon_sym_register] = ACTIONS(4066), + [anon_sym_inline] = ACTIONS(4066), + [anon_sym_const] = ACTIONS(4066), + [anon_sym_restrict] = ACTIONS(4066), + [anon_sym_volatile] = ACTIONS(4066), + [anon_sym__Atomic] = ACTIONS(4066), + [anon_sym_mutable] = ACTIONS(4066), + [anon_sym_explicit] = ACTIONS(4066), + [anon_sym_constexpr] = ACTIONS(4066), + [anon_sym_unsigned] = ACTIONS(4066), + [anon_sym_long] = ACTIONS(4066), + [anon_sym_short] = ACTIONS(4066), + [sym_primitive_type] = ACTIONS(4066), + [anon_sym_enum] = ACTIONS(4066), + [anon_sym_struct] = ACTIONS(4066), + [anon_sym_union] = ACTIONS(4066), + [anon_sym_if] = ACTIONS(4066), + [anon_sym_switch] = ACTIONS(4066), + [anon_sym_case] = ACTIONS(4066), + [anon_sym_default] = ACTIONS(4066), + [anon_sym_while] = ACTIONS(4066), + [anon_sym_do] = ACTIONS(4066), + [anon_sym_for] = ACTIONS(4066), + [anon_sym_return] = ACTIONS(4066), + [anon_sym_break] = ACTIONS(4066), + [anon_sym_continue] = ACTIONS(4066), + [anon_sym_goto] = ACTIONS(4066), + [anon_sym_AMP] = ACTIONS(4064), + [anon_sym_BANG] = ACTIONS(4064), + [anon_sym_TILDE] = ACTIONS(4064), + [anon_sym_PLUS] = ACTIONS(4066), + [anon_sym_DASH] = ACTIONS(4066), + [anon_sym_DASH_DASH] = ACTIONS(4064), + [anon_sym_PLUS_PLUS] = ACTIONS(4064), + [anon_sym_sizeof] = ACTIONS(4066), + [sym_number_literal] = ACTIONS(4064), + [sym_char_literal] = ACTIONS(4064), + [sym_string_literal] = ACTIONS(4064), + [sym_true] = ACTIONS(4066), + [sym_false] = ACTIONS(4066), + [sym_null] = ACTIONS(4066), + [sym_identifier] = ACTIONS(4066), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4066), + [sym_auto] = ACTIONS(4066), + [anon_sym_typename] = ACTIONS(4066), + [anon_sym_new] = ACTIONS(4066), + [anon_sym_COLON_COLON] = ACTIONS(4064), + [anon_sym_delete] = ACTIONS(4066), + [sym_nullptr] = ACTIONS(4066), }, - [2834] = { - [sym_raw_string_literal] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4108), - [anon_sym_LPAREN] = ACTIONS(4106), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4108), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4108), - [sym_preproc_directive] = ACTIONS(4108), - [anon_sym_SEMI] = ACTIONS(4106), - [anon_sym_typedef] = ACTIONS(4108), - [anon_sym_extern] = ACTIONS(4108), - [anon_sym_LBRACE] = ACTIONS(4106), - [anon_sym_STAR] = ACTIONS(4106), - [anon_sym_LBRACK] = ACTIONS(4106), - [anon_sym_static] = ACTIONS(4108), - [anon_sym_register] = ACTIONS(4108), - [anon_sym_inline] = ACTIONS(4108), - [anon_sym_const] = ACTIONS(4108), - [anon_sym_restrict] = ACTIONS(4108), - [anon_sym_volatile] = ACTIONS(4108), - [anon_sym__Atomic] = ACTIONS(4108), - [anon_sym_mutable] = ACTIONS(4108), - [anon_sym_explicit] = ACTIONS(4108), - [anon_sym_constexpr] = ACTIONS(4108), - [anon_sym_unsigned] = ACTIONS(4108), - [anon_sym_long] = ACTIONS(4108), - [anon_sym_short] = ACTIONS(4108), - [sym_primitive_type] = ACTIONS(4108), - [anon_sym_enum] = ACTIONS(4108), - [anon_sym_struct] = ACTIONS(4108), - [anon_sym_union] = ACTIONS(4108), - [anon_sym_if] = ACTIONS(4108), - [anon_sym_switch] = ACTIONS(4108), - [anon_sym_case] = ACTIONS(4108), - [anon_sym_default] = ACTIONS(4108), - [anon_sym_while] = ACTIONS(4108), - [anon_sym_do] = ACTIONS(4108), - [anon_sym_for] = ACTIONS(4108), - [anon_sym_return] = ACTIONS(4108), - [anon_sym_break] = ACTIONS(4108), - [anon_sym_continue] = ACTIONS(4108), - [anon_sym_goto] = ACTIONS(4108), - [anon_sym_AMP] = ACTIONS(4106), - [anon_sym_BANG] = ACTIONS(4106), - [anon_sym_TILDE] = ACTIONS(4106), - [anon_sym_PLUS] = ACTIONS(4108), - [anon_sym_DASH] = ACTIONS(4108), - [anon_sym_DASH_DASH] = ACTIONS(4106), - [anon_sym_PLUS_PLUS] = ACTIONS(4106), - [anon_sym_sizeof] = ACTIONS(4108), - [sym_number_literal] = ACTIONS(4106), - [sym_char_literal] = ACTIONS(4106), - [sym_string_literal] = ACTIONS(4106), - [sym_true] = ACTIONS(4108), - [sym_false] = ACTIONS(4108), - [sym_null] = ACTIONS(4108), - [sym_identifier] = ACTIONS(4108), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4108), - [sym_auto] = ACTIONS(4108), - [anon_sym_typename] = ACTIONS(4108), - [anon_sym_new] = ACTIONS(4108), - [anon_sym_COLON_COLON] = ACTIONS(4106), - [anon_sym_delete] = ACTIONS(4108), - [sym_nullptr] = ACTIONS(4108), + [2856] = { + [sym_raw_string_literal] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4114), + [anon_sym_LPAREN] = ACTIONS(4112), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4114), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4114), + [sym_preproc_directive] = ACTIONS(4114), + [anon_sym_SEMI] = ACTIONS(4112), + [anon_sym_typedef] = ACTIONS(4114), + [anon_sym_extern] = ACTIONS(4114), + [anon_sym_LBRACE] = ACTIONS(4112), + [anon_sym_STAR] = ACTIONS(4112), + [anon_sym_LBRACK] = ACTIONS(4112), + [anon_sym_static] = ACTIONS(4114), + [anon_sym_register] = ACTIONS(4114), + [anon_sym_inline] = ACTIONS(4114), + [anon_sym_const] = ACTIONS(4114), + [anon_sym_restrict] = ACTIONS(4114), + [anon_sym_volatile] = ACTIONS(4114), + [anon_sym__Atomic] = ACTIONS(4114), + [anon_sym_mutable] = ACTIONS(4114), + [anon_sym_explicit] = ACTIONS(4114), + [anon_sym_constexpr] = ACTIONS(4114), + [anon_sym_unsigned] = ACTIONS(4114), + [anon_sym_long] = ACTIONS(4114), + [anon_sym_short] = ACTIONS(4114), + [sym_primitive_type] = ACTIONS(4114), + [anon_sym_enum] = ACTIONS(4114), + [anon_sym_struct] = ACTIONS(4114), + [anon_sym_union] = ACTIONS(4114), + [anon_sym_if] = ACTIONS(4114), + [anon_sym_switch] = ACTIONS(4114), + [anon_sym_case] = ACTIONS(4114), + [anon_sym_default] = ACTIONS(4114), + [anon_sym_while] = ACTIONS(4114), + [anon_sym_do] = ACTIONS(4114), + [anon_sym_for] = ACTIONS(4114), + [anon_sym_return] = ACTIONS(4114), + [anon_sym_break] = ACTIONS(4114), + [anon_sym_continue] = ACTIONS(4114), + [anon_sym_goto] = ACTIONS(4114), + [anon_sym_AMP] = ACTIONS(4112), + [anon_sym_BANG] = ACTIONS(4112), + [anon_sym_TILDE] = ACTIONS(4112), + [anon_sym_PLUS] = ACTIONS(4114), + [anon_sym_DASH] = ACTIONS(4114), + [anon_sym_DASH_DASH] = ACTIONS(4112), + [anon_sym_PLUS_PLUS] = ACTIONS(4112), + [anon_sym_sizeof] = ACTIONS(4114), + [sym_number_literal] = ACTIONS(4112), + [sym_char_literal] = ACTIONS(4112), + [sym_string_literal] = ACTIONS(4112), + [sym_true] = ACTIONS(4114), + [sym_false] = ACTIONS(4114), + [sym_null] = ACTIONS(4114), + [sym_identifier] = ACTIONS(4114), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4114), + [sym_auto] = ACTIONS(4114), + [anon_sym_typename] = ACTIONS(4114), + [anon_sym_new] = ACTIONS(4114), + [anon_sym_COLON_COLON] = ACTIONS(4112), + [anon_sym_delete] = ACTIONS(4114), + [sym_nullptr] = ACTIONS(4114), }, - [2835] = { + [2857] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), @@ -113459,17 +114454,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [2836] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [2858] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -113477,18 +114472,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -113508,14 +114503,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -113523,7 +114518,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -113538,7 +114533,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6989), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -113593,158 +114588,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2837] = { - [sym__expression] = STATE(2926), - [sym_conditional_expression] = STATE(2926), - [sym_assignment_expression] = STATE(2926), - [sym_pointer_expression] = STATE(2926), - [sym_logical_expression] = STATE(2926), - [sym_bitwise_expression] = STATE(2926), - [sym_equality_expression] = STATE(2926), - [sym_relational_expression] = STATE(2926), - [sym_shift_expression] = STATE(2926), - [sym_math_expression] = STATE(2926), - [sym_cast_expression] = STATE(2926), - [sym_sizeof_expression] = STATE(2926), - [sym_subscript_expression] = STATE(2926), - [sym_call_expression] = STATE(2926), - [sym_field_expression] = STATE(2926), - [sym_compound_literal_expression] = STATE(2926), - [sym_parenthesized_expression] = STATE(2926), - [sym_concatenated_string] = STATE(2926), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2926), - [sym_new_expression] = STATE(2926), - [sym_delete_expression] = STATE(2926), - [sym_lambda_expression] = STATE(2926), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6927), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6927), - [sym_char_literal] = ACTIONS(6927), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6929), - [sym_false] = ACTIONS(6929), - [sym_null] = ACTIONS(6929), + [2859] = { + [sym__expression] = STATE(2956), + [sym_conditional_expression] = STATE(2956), + [sym_assignment_expression] = STATE(2956), + [sym_pointer_expression] = STATE(2956), + [sym_logical_expression] = STATE(2956), + [sym_bitwise_expression] = STATE(2956), + [sym_equality_expression] = STATE(2956), + [sym_relational_expression] = STATE(2956), + [sym_shift_expression] = STATE(2956), + [sym_math_expression] = STATE(2956), + [sym_cast_expression] = STATE(2956), + [sym_sizeof_expression] = STATE(2956), + [sym_subscript_expression] = STATE(2956), + [sym_call_expression] = STATE(2956), + [sym_field_expression] = STATE(2956), + [sym_compound_literal_expression] = STATE(2956), + [sym_parenthesized_expression] = STATE(2956), + [sym_concatenated_string] = STATE(2956), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2956), + [sym_new_expression] = STATE(2956), + [sym_delete_expression] = STATE(2956), + [sym_lambda_expression] = STATE(2956), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6991), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6991), + [sym_char_literal] = ACTIONS(6991), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6993), + [sym_false] = ACTIONS(6993), + [sym_null] = ACTIONS(6993), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6929), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6993), }, - [2838] = { - [sym__expression] = STATE(2927), - [sym_conditional_expression] = STATE(2927), - [sym_assignment_expression] = STATE(2927), - [sym_pointer_expression] = STATE(2927), - [sym_logical_expression] = STATE(2927), - [sym_bitwise_expression] = STATE(2927), - [sym_equality_expression] = STATE(2927), - [sym_relational_expression] = STATE(2927), - [sym_shift_expression] = STATE(2927), - [sym_math_expression] = STATE(2927), - [sym_cast_expression] = STATE(2927), - [sym_sizeof_expression] = STATE(2927), - [sym_subscript_expression] = STATE(2927), - [sym_call_expression] = STATE(2927), - [sym_field_expression] = STATE(2927), - [sym_compound_literal_expression] = STATE(2927), - [sym_parenthesized_expression] = STATE(2927), - [sym_concatenated_string] = STATE(2927), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2927), - [sym_new_expression] = STATE(2927), - [sym_delete_expression] = STATE(2927), - [sym_lambda_expression] = STATE(2927), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6931), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6931), - [sym_char_literal] = ACTIONS(6931), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6933), - [sym_false] = ACTIONS(6933), - [sym_null] = ACTIONS(6933), + [2860] = { + [anon_sym_LPAREN] = ACTIONS(6995), + [sym_comment] = ACTIONS(49), + }, + [2861] = { + [sym__expression] = STATE(2958), + [sym_conditional_expression] = STATE(2958), + [sym_assignment_expression] = STATE(2958), + [sym_pointer_expression] = STATE(2958), + [sym_logical_expression] = STATE(2958), + [sym_bitwise_expression] = STATE(2958), + [sym_equality_expression] = STATE(2958), + [sym_relational_expression] = STATE(2958), + [sym_shift_expression] = STATE(2958), + [sym_math_expression] = STATE(2958), + [sym_cast_expression] = STATE(2958), + [sym_sizeof_expression] = STATE(2958), + [sym_subscript_expression] = STATE(2958), + [sym_call_expression] = STATE(2958), + [sym_field_expression] = STATE(2958), + [sym_compound_literal_expression] = STATE(2958), + [sym_parenthesized_expression] = STATE(2958), + [sym_concatenated_string] = STATE(2958), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2958), + [sym_new_expression] = STATE(2958), + [sym_delete_expression] = STATE(2958), + [sym_lambda_expression] = STATE(2958), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6997), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(6997), + [sym_char_literal] = ACTIONS(6997), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(6999), + [sym_false] = ACTIONS(6999), + [sym_null] = ACTIONS(6999), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6933), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(6999), }, - [2839] = { + [2862] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(6935), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(7001), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2840] = { - [sym_declaration] = STATE(2931), - [sym_type_definition] = STATE(2931), - [sym__declaration_specifiers] = STATE(2932), - [sym_compound_statement] = STATE(2931), + [2863] = { + [sym_declaration] = STATE(2962), + [sym_type_definition] = STATE(2962), + [sym__declaration_specifiers] = STATE(2963), + [sym_compound_statement] = STATE(2962), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -113752,58 +114751,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2931), - [sym_expression_statement] = STATE(2931), - [sym_if_statement] = STATE(2931), - [sym_switch_statement] = STATE(2931), - [sym_case_statement] = STATE(2931), - [sym_while_statement] = STATE(2931), - [sym_do_statement] = STATE(2931), - [sym_for_statement] = STATE(2931), - [sym_return_statement] = STATE(2931), - [sym_break_statement] = STATE(2931), - [sym_continue_statement] = STATE(2931), - [sym_goto_statement] = STATE(2931), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), + [sym_labeled_statement] = STATE(2962), + [sym_expression_statement] = STATE(2962), + [sym_if_statement] = STATE(2962), + [sym_switch_statement] = STATE(2962), + [sym_case_statement] = STATE(2962), + [sym_while_statement] = STATE(2962), + [sym_do_statement] = STATE(2962), + [sym_for_statement] = STATE(2962), + [sym_return_statement] = STATE(2962), + [sym_break_statement] = STATE(2962), + [sym_continue_statement] = STATE(2962), + [sym_goto_statement] = STATE(2962), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(2931), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(2962), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6469), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_typedef] = ACTIONS(6937), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_typedef] = ACTIONS(7003), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -113823,17 +114822,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -113842,82 +114841,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6939), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(7005), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [2841] = { - [sym__expression] = STATE(2933), - [sym_conditional_expression] = STATE(2933), - [sym_assignment_expression] = STATE(2933), - [sym_pointer_expression] = STATE(2933), - [sym_logical_expression] = STATE(2933), - [sym_bitwise_expression] = STATE(2933), - [sym_equality_expression] = STATE(2933), - [sym_relational_expression] = STATE(2933), - [sym_shift_expression] = STATE(2933), - [sym_math_expression] = STATE(2933), - [sym_cast_expression] = STATE(2933), - [sym_sizeof_expression] = STATE(2933), - [sym_subscript_expression] = STATE(2933), - [sym_call_expression] = STATE(2933), - [sym_field_expression] = STATE(2933), - [sym_compound_literal_expression] = STATE(2933), - [sym_parenthesized_expression] = STATE(2933), - [sym_concatenated_string] = STATE(2933), + [2864] = { + [sym__expression] = STATE(2964), + [sym_conditional_expression] = STATE(2964), + [sym_assignment_expression] = STATE(2964), + [sym_pointer_expression] = STATE(2964), + [sym_logical_expression] = STATE(2964), + [sym_bitwise_expression] = STATE(2964), + [sym_equality_expression] = STATE(2964), + [sym_relational_expression] = STATE(2964), + [sym_shift_expression] = STATE(2964), + [sym_math_expression] = STATE(2964), + [sym_cast_expression] = STATE(2964), + [sym_sizeof_expression] = STATE(2964), + [sym_subscript_expression] = STATE(2964), + [sym_call_expression] = STATE(2964), + [sym_field_expression] = STATE(2964), + [sym_compound_literal_expression] = STATE(2964), + [sym_parenthesized_expression] = STATE(2964), + [sym_concatenated_string] = STATE(2964), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2933), - [sym_new_expression] = STATE(2933), - [sym_delete_expression] = STATE(2933), - [sym_lambda_expression] = STATE(2933), + [sym_template_function] = STATE(2964), + [sym_new_expression] = STATE(2964), + [sym_delete_expression] = STATE(2964), + [sym_lambda_expression] = STATE(2964), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6941), - [sym_char_literal] = ACTIONS(6941), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6943), - [sym_false] = ACTIONS(6943), - [sym_null] = ACTIONS(6943), + [sym_raw_string_literal] = ACTIONS(7007), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7007), + [sym_char_literal] = ACTIONS(7007), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7009), + [sym_false] = ACTIONS(7009), + [sym_null] = ACTIONS(7009), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6943), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7009), }, - [2842] = { - [anon_sym_while] = ACTIONS(6945), + [2865] = { + [anon_sym_while] = ACTIONS(7011), [sym_comment] = ACTIONS(49), }, - [2843] = { - [sym_declaration] = STATE(2935), - [sym__declaration_specifiers] = STATE(1497), + [2866] = { + [sym_declaration] = STATE(2966), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -113925,42 +114924,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2936), - [sym_conditional_expression] = STATE(2936), - [sym_assignment_expression] = STATE(2936), - [sym_pointer_expression] = STATE(2936), - [sym_logical_expression] = STATE(2936), - [sym_bitwise_expression] = STATE(2936), - [sym_equality_expression] = STATE(2936), - [sym_relational_expression] = STATE(2936), - [sym_shift_expression] = STATE(2936), - [sym_math_expression] = STATE(2936), - [sym_cast_expression] = STATE(2936), - [sym_sizeof_expression] = STATE(2936), - [sym_subscript_expression] = STATE(2936), - [sym_call_expression] = STATE(2936), - [sym_field_expression] = STATE(2936), - [sym_compound_literal_expression] = STATE(2936), - [sym_parenthesized_expression] = STATE(2936), - [sym_concatenated_string] = STATE(2936), + [sym__expression] = STATE(2967), + [sym_conditional_expression] = STATE(2967), + [sym_assignment_expression] = STATE(2967), + [sym_pointer_expression] = STATE(2967), + [sym_logical_expression] = STATE(2967), + [sym_bitwise_expression] = STATE(2967), + [sym_equality_expression] = STATE(2967), + [sym_relational_expression] = STATE(2967), + [sym_shift_expression] = STATE(2967), + [sym_math_expression] = STATE(2967), + [sym_cast_expression] = STATE(2967), + [sym_sizeof_expression] = STATE(2967), + [sym_subscript_expression] = STATE(2967), + [sym_call_expression] = STATE(2967), + [sym_field_expression] = STATE(2967), + [sym_compound_literal_expression] = STATE(2967), + [sym_parenthesized_expression] = STATE(2967), + [sym_concatenated_string] = STATE(2967), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2936), - [sym_for_range_declaration] = STATE(2937), - [sym_new_expression] = STATE(2936), - [sym_delete_expression] = STATE(2936), - [sym_lambda_expression] = STATE(2936), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2967), + [sym_for_range_declaration] = STATE(2968), + [sym_new_expression] = STATE(2967), + [sym_delete_expression] = STATE(2967), + [sym_lambda_expression] = STATE(2967), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6947), + [sym_raw_string_literal] = ACTIONS(7013), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6949), + [anon_sym_SEMI] = ACTIONS(7015), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -113989,139 +114988,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6947), - [sym_char_literal] = ACTIONS(6947), + [sym_number_literal] = ACTIONS(7013), + [sym_char_literal] = ACTIONS(7013), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6951), - [sym_false] = ACTIONS(6951), - [sym_null] = ACTIONS(6951), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(7017), + [sym_false] = ACTIONS(7017), + [sym_null] = ACTIONS(7017), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6951), - }, - [2844] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), - }, - [2845] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6953), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [2846] = { - [anon_sym_SEMI] = ACTIONS(6953), - [sym_comment] = ACTIONS(49), + [sym_nullptr] = ACTIONS(7017), }, - [2847] = { + [2867] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -114192,141 +115075,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [2848] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), + [2868] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(7019), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), }, - [2849] = { - [anon_sym_SEMI] = ACTIONS(6955), + [2869] = { + [anon_sym_SEMI] = ACTIONS(7019), [sym_comment] = ACTIONS(49), }, - [2850] = { - [sym_compound_statement] = STATE(2940), - [sym_labeled_statement] = STATE(2940), - [sym_expression_statement] = STATE(2940), - [sym_if_statement] = STATE(2940), - [sym_switch_statement] = STATE(2940), - [sym_case_statement] = STATE(2940), - [sym_while_statement] = STATE(2940), - [sym_do_statement] = STATE(2940), - [sym_for_statement] = STATE(2940), - [sym_return_statement] = STATE(2940), - [sym_break_statement] = STATE(2940), - [sym_continue_statement] = STATE(2940), - [sym_goto_statement] = STATE(2940), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(2940), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [2870] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), + }, + [2871] = { + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), + }, + [2872] = { + [anon_sym_SEMI] = ACTIONS(7021), + [sym_comment] = ACTIONS(49), + }, + [2873] = { + [sym_compound_statement] = STATE(2971), + [sym_labeled_statement] = STATE(2971), + [sym_expression_statement] = STATE(2971), + [sym_if_statement] = STATE(2971), + [sym_switch_statement] = STATE(2971), + [sym_case_statement] = STATE(2971), + [sym_while_statement] = STATE(2971), + [sym_do_statement] = STATE(2971), + [sym_for_statement] = STATE(2971), + [sym_return_statement] = STATE(2971), + [sym_break_statement] = STATE(2971), + [sym_continue_statement] = STATE(2971), + [sym_goto_statement] = STATE(2971), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(2971), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -114335,79 +115334,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [2851] = { - [sym_compound_statement] = STATE(2941), - [sym_labeled_statement] = STATE(2941), - [sym_expression_statement] = STATE(2941), - [sym_if_statement] = STATE(2941), - [sym_switch_statement] = STATE(2941), - [sym_case_statement] = STATE(2941), - [sym_while_statement] = STATE(2941), - [sym_do_statement] = STATE(2941), - [sym_for_statement] = STATE(2941), - [sym_return_statement] = STATE(2941), - [sym_break_statement] = STATE(2941), - [sym_continue_statement] = STATE(2941), - [sym_goto_statement] = STATE(2941), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2941), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2874] = { + [sym_compound_statement] = STATE(2972), + [sym_labeled_statement] = STATE(2972), + [sym_expression_statement] = STATE(2972), + [sym_if_statement] = STATE(2972), + [sym_switch_statement] = STATE(2972), + [sym_case_statement] = STATE(2972), + [sym_while_statement] = STATE(2972), + [sym_do_statement] = STATE(2972), + [sym_for_statement] = STATE(2972), + [sym_return_statement] = STATE(2972), + [sym_break_statement] = STATE(2972), + [sym_continue_statement] = STATE(2972), + [sym_goto_statement] = STATE(2972), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2972), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -114416,290 +115415,361 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2852] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), + [2875] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), }, - [2853] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), + [2876] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(7023), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), }, - [2854] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), + [2877] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), }, - [2855] = { - [sym_compound_statement] = STATE(2942), - [sym_labeled_statement] = STATE(2942), - [sym_expression_statement] = STATE(2942), - [sym_if_statement] = STATE(2942), - [sym_switch_statement] = STATE(2942), - [sym_case_statement] = STATE(2942), - [sym_while_statement] = STATE(2942), - [sym_do_statement] = STATE(2942), - [sym_for_statement] = STATE(2942), - [sym_return_statement] = STATE(2942), - [sym_break_statement] = STATE(2942), - [sym_continue_statement] = STATE(2942), - [sym_goto_statement] = STATE(2942), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2942), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2878] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), + }, + [2879] = { + [sym_compound_statement] = STATE(2974), + [sym_labeled_statement] = STATE(2974), + [sym_expression_statement] = STATE(2974), + [sym_if_statement] = STATE(2974), + [sym_switch_statement] = STATE(2974), + [sym_case_statement] = STATE(2974), + [sym_while_statement] = STATE(2974), + [sym_do_statement] = STATE(2974), + [sym_for_statement] = STATE(2974), + [sym_return_statement] = STATE(2974), + [sym_break_statement] = STATE(2974), + [sym_continue_statement] = STATE(2974), + [sym_goto_statement] = STATE(2974), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2974), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -114708,99 +115778,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2856] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6957), + [2880] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7025), [sym_comment] = ACTIONS(49), }, - [2857] = { + [2881] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2944), + [aux_sym_for_statement_repeat1] = STATE(2976), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(6957), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7025), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2858] = { - [sym__expression] = STATE(2945), - [sym_conditional_expression] = STATE(2945), - [sym_assignment_expression] = STATE(2945), - [sym_pointer_expression] = STATE(2945), - [sym_logical_expression] = STATE(2945), - [sym_bitwise_expression] = STATE(2945), - [sym_equality_expression] = STATE(2945), - [sym_relational_expression] = STATE(2945), - [sym_shift_expression] = STATE(2945), - [sym_math_expression] = STATE(2945), - [sym_cast_expression] = STATE(2945), - [sym_sizeof_expression] = STATE(2945), - [sym_subscript_expression] = STATE(2945), - [sym_call_expression] = STATE(2945), - [sym_field_expression] = STATE(2945), - [sym_compound_literal_expression] = STATE(2945), - [sym_parenthesized_expression] = STATE(2945), - [sym_concatenated_string] = STATE(2945), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2945), - [sym_new_expression] = STATE(2945), - [sym_delete_expression] = STATE(2945), - [sym_lambda_expression] = STATE(2945), + [2882] = { + [sym__expression] = STATE(2977), + [sym_conditional_expression] = STATE(2977), + [sym_assignment_expression] = STATE(2977), + [sym_pointer_expression] = STATE(2977), + [sym_logical_expression] = STATE(2977), + [sym_bitwise_expression] = STATE(2977), + [sym_equality_expression] = STATE(2977), + [sym_relational_expression] = STATE(2977), + [sym_shift_expression] = STATE(2977), + [sym_math_expression] = STATE(2977), + [sym_cast_expression] = STATE(2977), + [sym_sizeof_expression] = STATE(2977), + [sym_subscript_expression] = STATE(2977), + [sym_call_expression] = STATE(2977), + [sym_field_expression] = STATE(2977), + [sym_compound_literal_expression] = STATE(2977), + [sym_parenthesized_expression] = STATE(2977), + [sym_concatenated_string] = STATE(2977), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2977), + [sym_new_expression] = STATE(2977), + [sym_delete_expression] = STATE(2977), + [sym_lambda_expression] = STATE(2977), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6959), + [sym_raw_string_literal] = ACTIONS(7027), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6957), + [anon_sym_RPAREN] = ACTIONS(7025), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -114811,79 +115881,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6959), - [sym_char_literal] = ACTIONS(6959), + [sym_number_literal] = ACTIONS(7027), + [sym_char_literal] = ACTIONS(7027), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6961), - [sym_false] = ACTIONS(6961), - [sym_null] = ACTIONS(6961), + [sym_true] = ACTIONS(7029), + [sym_false] = ACTIONS(7029), + [sym_null] = ACTIONS(7029), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6961), + [sym_nullptr] = ACTIONS(7029), }, - [2859] = { - [sym_compound_statement] = STATE(2946), - [sym_labeled_statement] = STATE(2946), - [sym_expression_statement] = STATE(2946), - [sym_if_statement] = STATE(2946), - [sym_switch_statement] = STATE(2946), - [sym_case_statement] = STATE(2946), - [sym_while_statement] = STATE(2946), - [sym_do_statement] = STATE(2946), - [sym_for_statement] = STATE(2946), - [sym_return_statement] = STATE(2946), - [sym_break_statement] = STATE(2946), - [sym_continue_statement] = STATE(2946), - [sym_goto_statement] = STATE(2946), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(2946), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2883] = { + [sym_compound_statement] = STATE(2978), + [sym_labeled_statement] = STATE(2978), + [sym_expression_statement] = STATE(2978), + [sym_if_statement] = STATE(2978), + [sym_switch_statement] = STATE(2978), + [sym_case_statement] = STATE(2978), + [sym_while_statement] = STATE(2978), + [sym_do_statement] = STATE(2978), + [sym_for_statement] = STATE(2978), + [sym_return_statement] = STATE(2978), + [sym_break_statement] = STATE(2978), + [sym_continue_statement] = STATE(2978), + [sym_goto_statement] = STATE(2978), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(2978), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -114892,79 +115962,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2860] = { - [sym_compound_statement] = STATE(2947), - [sym_labeled_statement] = STATE(2947), - [sym_expression_statement] = STATE(2947), - [sym_if_statement] = STATE(2947), - [sym_switch_statement] = STATE(2947), - [sym_case_statement] = STATE(2947), - [sym_while_statement] = STATE(2947), - [sym_do_statement] = STATE(2947), - [sym_for_statement] = STATE(2947), - [sym_return_statement] = STATE(2947), - [sym_break_statement] = STATE(2947), - [sym_continue_statement] = STATE(2947), - [sym_goto_statement] = STATE(2947), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2947), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), + [2884] = { + [sym_compound_statement] = STATE(2979), + [sym_labeled_statement] = STATE(2979), + [sym_expression_statement] = STATE(2979), + [sym_if_statement] = STATE(2979), + [sym_switch_statement] = STATE(2979), + [sym_case_statement] = STATE(2979), + [sym_while_statement] = STATE(2979), + [sym_do_statement] = STATE(2979), + [sym_for_statement] = STATE(2979), + [sym_return_statement] = STATE(2979), + [sym_break_statement] = STATE(2979), + [sym_continue_statement] = STATE(2979), + [sym_goto_statement] = STATE(2979), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2979), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -114973,79 +116043,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2861] = { - [sym_compound_statement] = STATE(2948), - [sym_labeled_statement] = STATE(2948), - [sym_expression_statement] = STATE(2948), - [sym_if_statement] = STATE(2948), - [sym_switch_statement] = STATE(2948), - [sym_case_statement] = STATE(2948), - [sym_while_statement] = STATE(2948), - [sym_do_statement] = STATE(2948), - [sym_for_statement] = STATE(2948), - [sym_return_statement] = STATE(2948), - [sym_break_statement] = STATE(2948), - [sym_continue_statement] = STATE(2948), - [sym_goto_statement] = STATE(2948), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2948), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [2885] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(7031), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2886] = { + [sym_compound_statement] = STATE(2981), + [sym_labeled_statement] = STATE(2981), + [sym_expression_statement] = STATE(2981), + [sym_if_statement] = STATE(2981), + [sym_switch_statement] = STATE(2981), + [sym_case_statement] = STATE(2981), + [sym_while_statement] = STATE(2981), + [sym_do_statement] = STATE(2981), + [sym_for_statement] = STATE(2981), + [sym_return_statement] = STATE(2981), + [sym_break_statement] = STATE(2981), + [sym_continue_statement] = STATE(2981), + [sym_goto_statement] = STATE(2981), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2981), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -115054,90 +116165,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2862] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_RBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_else] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [2887] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_RBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_else] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [2863] = { - [sym__type_declarator] = STATE(2949), + [2888] = { + [sym__type_declarator] = STATE(2982), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -115146,16 +116257,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2864] = { + [2889] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(2950), - [sym_sized_type_specifier] = STATE(2950), - [sym_enum_specifier] = STATE(2950), - [sym_struct_specifier] = STATE(2950), - [sym_union_specifier] = STATE(2950), - [sym_macro_type_specifier] = STATE(2950), - [sym_class_specifier] = STATE(2950), - [sym_dependent_type] = STATE(2950), + [sym__type_specifier] = STATE(2983), + [sym_sized_type_specifier] = STATE(2983), + [sym_enum_specifier] = STATE(2983), + [sym_struct_specifier] = STATE(2983), + [sym_union_specifier] = STATE(2983), + [sym_macro_type_specifier] = STATE(2983), + [sym_class_specifier] = STATE(2983), + [sym_dependent_type] = STATE(2983), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -115171,96 +116282,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(6963), + [sym_primitive_type] = ACTIONS(7033), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(6963), + [sym_auto] = ACTIONS(7033), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2865] = { + [2890] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(2952), + [aux_sym_declaration_repeat1] = STATE(2985), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6965), + [anon_sym_SEMI] = ACTIONS(7035), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [2866] = { - [aux_sym_declaration_repeat1] = STATE(2952), + [2891] = { + [aux_sym_declaration_repeat1] = STATE(2985), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(6965), + [anon_sym_SEMI] = ACTIONS(7035), [sym_comment] = ACTIONS(49), }, - [2867] = { - [sym_compound_statement] = STATE(2953), - [sym_labeled_statement] = STATE(2953), - [sym_expression_statement] = STATE(2953), - [sym_if_statement] = STATE(2953), - [sym_switch_statement] = STATE(2953), - [sym_case_statement] = STATE(2953), - [sym_while_statement] = STATE(2953), - [sym_do_statement] = STATE(2953), - [sym_for_statement] = STATE(2953), - [sym_return_statement] = STATE(2953), - [sym_break_statement] = STATE(2953), - [sym_continue_statement] = STATE(2953), - [sym_goto_statement] = STATE(2953), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(2953), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [2892] = { + [sym_compound_statement] = STATE(2986), + [sym_labeled_statement] = STATE(2986), + [sym_expression_statement] = STATE(2986), + [sym_if_statement] = STATE(2986), + [sym_switch_statement] = STATE(2986), + [sym_case_statement] = STATE(2986), + [sym_while_statement] = STATE(2986), + [sym_do_statement] = STATE(2986), + [sym_for_statement] = STATE(2986), + [sym_return_statement] = STATE(2986), + [sym_break_statement] = STATE(2986), + [sym_continue_statement] = STATE(2986), + [sym_goto_statement] = STATE(2986), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(2986), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -115269,103 +116380,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2868] = { - [sym__expression] = STATE(2954), - [sym_conditional_expression] = STATE(2954), - [sym_assignment_expression] = STATE(2954), - [sym_pointer_expression] = STATE(2954), - [sym_logical_expression] = STATE(2954), - [sym_bitwise_expression] = STATE(2954), - [sym_equality_expression] = STATE(2954), - [sym_relational_expression] = STATE(2954), - [sym_shift_expression] = STATE(2954), - [sym_math_expression] = STATE(2954), - [sym_cast_expression] = STATE(2954), - [sym_sizeof_expression] = STATE(2954), - [sym_subscript_expression] = STATE(2954), - [sym_call_expression] = STATE(2954), - [sym_field_expression] = STATE(2954), - [sym_compound_literal_expression] = STATE(2954), - [sym_parenthesized_expression] = STATE(2954), - [sym_concatenated_string] = STATE(2954), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2954), - [sym_new_expression] = STATE(2954), - [sym_delete_expression] = STATE(2954), - [sym_lambda_expression] = STATE(2954), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6967), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6967), - [sym_char_literal] = ACTIONS(6967), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6969), - [sym_false] = ACTIONS(6969), - [sym_null] = ACTIONS(6969), + [2893] = { + [sym__expression] = STATE(2987), + [sym_conditional_expression] = STATE(2987), + [sym_assignment_expression] = STATE(2987), + [sym_pointer_expression] = STATE(2987), + [sym_logical_expression] = STATE(2987), + [sym_bitwise_expression] = STATE(2987), + [sym_equality_expression] = STATE(2987), + [sym_relational_expression] = STATE(2987), + [sym_shift_expression] = STATE(2987), + [sym_math_expression] = STATE(2987), + [sym_cast_expression] = STATE(2987), + [sym_sizeof_expression] = STATE(2987), + [sym_subscript_expression] = STATE(2987), + [sym_call_expression] = STATE(2987), + [sym_field_expression] = STATE(2987), + [sym_compound_literal_expression] = STATE(2987), + [sym_parenthesized_expression] = STATE(2987), + [sym_concatenated_string] = STATE(2987), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2987), + [sym_new_expression] = STATE(2987), + [sym_delete_expression] = STATE(2987), + [sym_lambda_expression] = STATE(2987), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7037), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7037), + [sym_char_literal] = ACTIONS(7037), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7039), + [sym_false] = ACTIONS(7039), + [sym_null] = ACTIONS(7039), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6969), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7039), }, - [2869] = { - [sym__expression] = STATE(2956), - [sym_conditional_expression] = STATE(2956), - [sym_assignment_expression] = STATE(2956), - [sym_pointer_expression] = STATE(2956), - [sym_logical_expression] = STATE(2956), - [sym_bitwise_expression] = STATE(2956), - [sym_equality_expression] = STATE(2956), - [sym_relational_expression] = STATE(2956), - [sym_shift_expression] = STATE(2956), - [sym_math_expression] = STATE(2956), - [sym_cast_expression] = STATE(2956), - [sym_sizeof_expression] = STATE(2956), - [sym_subscript_expression] = STATE(2956), - [sym_call_expression] = STATE(2956), - [sym_field_expression] = STATE(2956), - [sym_compound_literal_expression] = STATE(2956), - [sym_parenthesized_expression] = STATE(2956), - [sym_concatenated_string] = STATE(2956), + [2894] = { + [sym__expression] = STATE(2989), + [sym_conditional_expression] = STATE(2989), + [sym_assignment_expression] = STATE(2989), + [sym_pointer_expression] = STATE(2989), + [sym_logical_expression] = STATE(2989), + [sym_bitwise_expression] = STATE(2989), + [sym_equality_expression] = STATE(2989), + [sym_relational_expression] = STATE(2989), + [sym_shift_expression] = STATE(2989), + [sym_math_expression] = STATE(2989), + [sym_cast_expression] = STATE(2989), + [sym_sizeof_expression] = STATE(2989), + [sym_subscript_expression] = STATE(2989), + [sym_call_expression] = STATE(2989), + [sym_field_expression] = STATE(2989), + [sym_compound_literal_expression] = STATE(2989), + [sym_parenthesized_expression] = STATE(2989), + [sym_concatenated_string] = STATE(2989), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2956), - [sym_new_expression] = STATE(2956), - [sym_delete_expression] = STATE(2956), - [sym_lambda_expression] = STATE(2956), + [sym_template_function] = STATE(2989), + [sym_new_expression] = STATE(2989), + [sym_delete_expression] = STATE(2989), + [sym_lambda_expression] = STATE(2989), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6971), + [sym_raw_string_literal] = ACTIONS(7041), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(6973), + [anon_sym_RPAREN] = ACTIONS(7043), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -115376,91 +116487,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(6971), - [sym_char_literal] = ACTIONS(6971), + [sym_number_literal] = ACTIONS(7041), + [sym_char_literal] = ACTIONS(7041), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(6975), - [sym_false] = ACTIONS(6975), - [sym_null] = ACTIONS(6975), + [sym_true] = ACTIONS(7045), + [sym_false] = ACTIONS(7045), + [sym_null] = ACTIONS(7045), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(6975), + [sym_nullptr] = ACTIONS(7045), }, - [2870] = { + [2895] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6977), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7047), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2871] = { - [sym__expression] = STATE(2958), - [sym_conditional_expression] = STATE(2958), - [sym_assignment_expression] = STATE(2958), - [sym_pointer_expression] = STATE(2958), - [sym_logical_expression] = STATE(2958), - [sym_bitwise_expression] = STATE(2958), - [sym_equality_expression] = STATE(2958), - [sym_relational_expression] = STATE(2958), - [sym_shift_expression] = STATE(2958), - [sym_math_expression] = STATE(2958), - [sym_cast_expression] = STATE(2958), - [sym_sizeof_expression] = STATE(2958), - [sym_subscript_expression] = STATE(2958), - [sym_call_expression] = STATE(2958), - [sym_field_expression] = STATE(2958), - [sym_compound_literal_expression] = STATE(2958), - [sym_parenthesized_expression] = STATE(2958), - [sym_concatenated_string] = STATE(2958), + [2896] = { + [sym__expression] = STATE(2991), + [sym_conditional_expression] = STATE(2991), + [sym_assignment_expression] = STATE(2991), + [sym_pointer_expression] = STATE(2991), + [sym_logical_expression] = STATE(2991), + [sym_bitwise_expression] = STATE(2991), + [sym_equality_expression] = STATE(2991), + [sym_relational_expression] = STATE(2991), + [sym_shift_expression] = STATE(2991), + [sym_math_expression] = STATE(2991), + [sym_cast_expression] = STATE(2991), + [sym_sizeof_expression] = STATE(2991), + [sym_subscript_expression] = STATE(2991), + [sym_call_expression] = STATE(2991), + [sym_field_expression] = STATE(2991), + [sym_compound_literal_expression] = STATE(2991), + [sym_parenthesized_expression] = STATE(2991), + [sym_concatenated_string] = STATE(2991), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2958), - [sym_new_expression] = STATE(2958), - [sym_delete_expression] = STATE(2958), - [sym_lambda_expression] = STATE(2958), + [sym_template_function] = STATE(2991), + [sym_new_expression] = STATE(2991), + [sym_delete_expression] = STATE(2991), + [sym_lambda_expression] = STATE(2991), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6979), + [sym_raw_string_literal] = ACTIONS(7049), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6977), + [anon_sym_SEMI] = ACTIONS(7047), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -115471,159 +116582,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6979), - [sym_char_literal] = ACTIONS(6979), + [sym_number_literal] = ACTIONS(7049), + [sym_char_literal] = ACTIONS(7049), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6981), - [sym_false] = ACTIONS(6981), - [sym_null] = ACTIONS(6981), + [sym_true] = ACTIONS(7051), + [sym_false] = ACTIONS(7051), + [sym_null] = ACTIONS(7051), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6981), + [sym_nullptr] = ACTIONS(7051), }, - [2872] = { - [sym__expression] = STATE(2959), - [sym_conditional_expression] = STATE(2959), - [sym_assignment_expression] = STATE(2959), - [sym_pointer_expression] = STATE(2959), - [sym_logical_expression] = STATE(2959), - [sym_bitwise_expression] = STATE(2959), - [sym_equality_expression] = STATE(2959), - [sym_relational_expression] = STATE(2959), - [sym_shift_expression] = STATE(2959), - [sym_math_expression] = STATE(2959), - [sym_cast_expression] = STATE(2959), - [sym_sizeof_expression] = STATE(2959), - [sym_subscript_expression] = STATE(2959), - [sym_call_expression] = STATE(2959), - [sym_field_expression] = STATE(2959), - [sym_compound_literal_expression] = STATE(2959), - [sym_parenthesized_expression] = STATE(2959), - [sym_concatenated_string] = STATE(2959), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2959), - [sym_new_expression] = STATE(2959), - [sym_delete_expression] = STATE(2959), - [sym_lambda_expression] = STATE(2959), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6983), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(6983), - [sym_char_literal] = ACTIONS(6983), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(6985), - [sym_false] = ACTIONS(6985), - [sym_null] = ACTIONS(6985), + [2897] = { + [sym__expression] = STATE(2992), + [sym_conditional_expression] = STATE(2992), + [sym_assignment_expression] = STATE(2992), + [sym_pointer_expression] = STATE(2992), + [sym_logical_expression] = STATE(2992), + [sym_bitwise_expression] = STATE(2992), + [sym_equality_expression] = STATE(2992), + [sym_relational_expression] = STATE(2992), + [sym_shift_expression] = STATE(2992), + [sym_math_expression] = STATE(2992), + [sym_cast_expression] = STATE(2992), + [sym_sizeof_expression] = STATE(2992), + [sym_subscript_expression] = STATE(2992), + [sym_call_expression] = STATE(2992), + [sym_field_expression] = STATE(2992), + [sym_compound_literal_expression] = STATE(2992), + [sym_parenthesized_expression] = STATE(2992), + [sym_concatenated_string] = STATE(2992), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2992), + [sym_new_expression] = STATE(2992), + [sym_delete_expression] = STATE(2992), + [sym_lambda_expression] = STATE(2992), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7053), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7053), + [sym_char_literal] = ACTIONS(7053), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7055), + [sym_false] = ACTIONS(7055), + [sym_null] = ACTIONS(7055), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(6985), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7055), }, - [2873] = { + [2898] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_RBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), + }, + [2899] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6987), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7061), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2874] = { + [2900] = { + [sym__expression] = STATE(2994), + [sym_conditional_expression] = STATE(2994), + [sym_assignment_expression] = STATE(2994), + [sym_pointer_expression] = STATE(2994), + [sym_logical_expression] = STATE(2994), + [sym_bitwise_expression] = STATE(2994), + [sym_equality_expression] = STATE(2994), + [sym_relational_expression] = STATE(2994), + [sym_shift_expression] = STATE(2994), + [sym_math_expression] = STATE(2994), + [sym_cast_expression] = STATE(2994), + [sym_sizeof_expression] = STATE(2994), + [sym_subscript_expression] = STATE(2994), + [sym_call_expression] = STATE(2994), + [sym_field_expression] = STATE(2994), + [sym_compound_literal_expression] = STATE(2994), + [sym_parenthesized_expression] = STATE(2994), + [sym_concatenated_string] = STATE(2994), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2994), + [sym_new_expression] = STATE(2994), + [sym_delete_expression] = STATE(2994), + [sym_lambda_expression] = STATE(2994), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7063), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7063), + [sym_char_literal] = ACTIONS(7063), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7065), + [sym_false] = ACTIONS(7065), + [sym_null] = ACTIONS(7065), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7065), + }, + [2901] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6989), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7067), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2875] = { - [sym_declaration] = STATE(2394), - [sym_type_definition] = STATE(2394), - [sym__declaration_specifiers] = STATE(2045), - [sym_compound_statement] = STATE(2394), + [2902] = { + [sym_declaration] = STATE(2404), + [sym_type_definition] = STATE(2404), + [sym__declaration_specifiers] = STATE(2051), + [sym_compound_statement] = STATE(2404), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -115631,58 +116863,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2394), - [sym_expression_statement] = STATE(2394), - [sym_if_statement] = STATE(2394), - [sym_switch_statement] = STATE(2394), - [sym_case_statement] = STATE(2394), - [sym_while_statement] = STATE(2394), - [sym_do_statement] = STATE(2394), - [sym_for_statement] = STATE(2394), - [sym_return_statement] = STATE(2394), - [sym_break_statement] = STATE(2394), - [sym_continue_statement] = STATE(2394), - [sym_goto_statement] = STATE(2394), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), + [sym_labeled_statement] = STATE(2404), + [sym_expression_statement] = STATE(2404), + [sym_if_statement] = STATE(2404), + [sym_switch_statement] = STATE(2404), + [sym_case_statement] = STATE(2404), + [sym_while_statement] = STATE(2404), + [sym_do_statement] = STATE(2404), + [sym_for_statement] = STATE(2404), + [sym_return_statement] = STATE(2404), + [sym_break_statement] = STATE(2404), + [sym_continue_statement] = STATE(2404), + [sym_goto_statement] = STATE(2404), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2394), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2404), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(4643), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_typedef] = ACTIONS(4657), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -115702,17 +116934,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -115721,25 +116953,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6820), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6880), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2876] = { + [2903] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -115758,7 +116990,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(6583), + [anon_sym_COLON] = ACTIONS(6633), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -115794,81 +117026,81 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2877] = { + [2904] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(6991), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7069), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2878] = { - [sym__expression] = STATE(2964), - [sym_conditional_expression] = STATE(2964), - [sym_assignment_expression] = STATE(2964), - [sym_pointer_expression] = STATE(2964), - [sym_logical_expression] = STATE(2964), - [sym_bitwise_expression] = STATE(2964), - [sym_equality_expression] = STATE(2964), - [sym_relational_expression] = STATE(2964), - [sym_shift_expression] = STATE(2964), - [sym_math_expression] = STATE(2964), - [sym_cast_expression] = STATE(2964), - [sym_sizeof_expression] = STATE(2964), - [sym_subscript_expression] = STATE(2964), - [sym_call_expression] = STATE(2964), - [sym_field_expression] = STATE(2964), - [sym_compound_literal_expression] = STATE(2964), - [sym_parenthesized_expression] = STATE(2964), - [sym_concatenated_string] = STATE(2964), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2964), - [sym_new_expression] = STATE(2964), - [sym_delete_expression] = STATE(2964), - [sym_lambda_expression] = STATE(2964), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), + [2905] = { + [sym__expression] = STATE(2998), + [sym_conditional_expression] = STATE(2998), + [sym_assignment_expression] = STATE(2998), + [sym_pointer_expression] = STATE(2998), + [sym_logical_expression] = STATE(2998), + [sym_bitwise_expression] = STATE(2998), + [sym_equality_expression] = STATE(2998), + [sym_relational_expression] = STATE(2998), + [sym_shift_expression] = STATE(2998), + [sym_math_expression] = STATE(2998), + [sym_cast_expression] = STATE(2998), + [sym_sizeof_expression] = STATE(2998), + [sym_subscript_expression] = STATE(2998), + [sym_call_expression] = STATE(2998), + [sym_field_expression] = STATE(2998), + [sym_compound_literal_expression] = STATE(2998), + [sym_parenthesized_expression] = STATE(2998), + [sym_concatenated_string] = STATE(2998), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2998), + [sym_new_expression] = STATE(2998), + [sym_delete_expression] = STATE(2998), + [sym_lambda_expression] = STATE(2998), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6993), + [sym_raw_string_literal] = ACTIONS(7071), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(6995), + [anon_sym_SEMI] = ACTIONS(7073), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -115879,139 +117111,220 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(6993), - [sym_char_literal] = ACTIONS(6993), + [sym_number_literal] = ACTIONS(7071), + [sym_char_literal] = ACTIONS(7071), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(6997), - [sym_false] = ACTIONS(6997), - [sym_null] = ACTIONS(6997), + [sym_true] = ACTIONS(7075), + [sym_false] = ACTIONS(7075), + [sym_null] = ACTIONS(7075), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(6997), + [sym_nullptr] = ACTIONS(7075), }, - [2879] = { + [2906] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(6999), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7077), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2880] = { - [anon_sym_COLON] = ACTIONS(7001), + [2907] = { + [anon_sym_COLON] = ACTIONS(7079), [sym_comment] = ACTIONS(49), }, - [2881] = { - [anon_sym_else] = ACTIONS(6806), - [anon_sym_while] = ACTIONS(6806), + [2908] = { + [anon_sym_else] = ACTIONS(6864), + [anon_sym_while] = ACTIONS(6864), [sym_comment] = ACTIONS(49), }, - [2882] = { - [anon_sym_else] = ACTIONS(3513), - [anon_sym_while] = ACTIONS(3513), + [2909] = { + [sym_compound_statement] = STATE(3001), + [sym_labeled_statement] = STATE(3001), + [sym_expression_statement] = STATE(3001), + [sym_if_statement] = STATE(3001), + [sym_switch_statement] = STATE(3001), + [sym_case_statement] = STATE(3001), + [sym_while_statement] = STATE(3001), + [sym_do_statement] = STATE(3001), + [sym_for_statement] = STATE(3001), + [sym_return_statement] = STATE(3001), + [sym_break_statement] = STATE(3001), + [sym_continue_statement] = STATE(3001), + [sym_goto_statement] = STATE(3001), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3001), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(1688), }, - [2883] = { - [anon_sym_else] = ACTIONS(6840), - [anon_sym_while] = ACTIONS(6840), + [2910] = { + [anon_sym_else] = ACTIONS(3519), + [anon_sym_while] = ACTIONS(3519), [sym_comment] = ACTIONS(49), }, - [2884] = { - [sym_compound_statement] = STATE(2967), - [sym_labeled_statement] = STATE(2967), - [sym_expression_statement] = STATE(2967), - [sym_if_statement] = STATE(2967), - [sym_switch_statement] = STATE(2967), - [sym_case_statement] = STATE(2967), - [sym_while_statement] = STATE(2967), - [sym_do_statement] = STATE(2967), - [sym_for_statement] = STATE(2967), - [sym_return_statement] = STATE(2967), - [sym_break_statement] = STATE(2967), - [sym_continue_statement] = STATE(2967), - [sym_goto_statement] = STATE(2967), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2967), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2911] = { + [anon_sym_else] = ACTIONS(6902), + [anon_sym_while] = ACTIONS(6902), + [sym_comment] = ACTIONS(49), + }, + [2912] = { + [sym_compound_statement] = STATE(3002), + [sym_labeled_statement] = STATE(3002), + [sym_expression_statement] = STATE(3002), + [sym_if_statement] = STATE(3002), + [sym_switch_statement] = STATE(3002), + [sym_case_statement] = STATE(3002), + [sym_while_statement] = STATE(3002), + [sym_do_statement] = STATE(3002), + [sym_for_statement] = STATE(3002), + [sym_return_statement] = STATE(3002), + [sym_break_statement] = STATE(3002), + [sym_continue_statement] = STATE(3002), + [sym_goto_statement] = STATE(3002), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3002), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -116020,155 +117333,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2885] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7003), + [2913] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7081), [sym_comment] = ACTIONS(49), }, - [2886] = { + [2914] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2969), + [aux_sym_for_statement_repeat1] = STATE(3004), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7003), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7081), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2887] = { - [anon_sym_else] = ACTIONS(6863), - [anon_sym_while] = ACTIONS(6863), + [2915] = { + [anon_sym_else] = ACTIONS(6925), + [anon_sym_while] = ACTIONS(6925), [sym_comment] = ACTIONS(49), }, - [2888] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_RBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), + [2916] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), }, - [2889] = { - [sym_compound_statement] = STATE(2970), - [sym_labeled_statement] = STATE(2970), - [sym_expression_statement] = STATE(2970), - [sym_if_statement] = STATE(2970), - [sym_switch_statement] = STATE(2970), - [sym_case_statement] = STATE(2970), - [sym_while_statement] = STATE(2970), - [sym_do_statement] = STATE(2970), - [sym_for_statement] = STATE(2970), - [sym_return_statement] = STATE(2970), - [sym_break_statement] = STATE(2970), - [sym_continue_statement] = STATE(2970), - [sym_goto_statement] = STATE(2970), + [2917] = { + [sym_compound_statement] = STATE(3005), + [sym_labeled_statement] = STATE(3005), + [sym_expression_statement] = STATE(3005), + [sym_if_statement] = STATE(3005), + [sym_switch_statement] = STATE(3005), + [sym_case_statement] = STATE(3005), + [sym_while_statement] = STATE(3005), + [sym_do_statement] = STATE(3005), + [sym_for_statement] = STATE(3005), + [sym_return_statement] = STATE(3005), + [sym_break_statement] = STATE(3005), + [sym_continue_statement] = STATE(3005), + [sym_goto_statement] = STATE(3005), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -116190,7 +117503,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(2970), + [sym_for_range_loop] = STATE(3005), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -116229,113 +117542,113 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2890] = { - [sym__abstract_declarator] = STATE(2971), - [sym_abstract_pointer_declarator] = STATE(2971), - [sym_abstract_function_declarator] = STATE(2971), - [sym_abstract_array_declarator] = STATE(2971), - [sym_parameter_list] = STATE(2893), - [sym_abstract_reference_declarator] = STATE(2971), + [2918] = { + [sym__abstract_declarator] = STATE(3006), + [sym_abstract_pointer_declarator] = STATE(3006), + [sym_abstract_function_declarator] = STATE(3006), + [sym_abstract_array_declarator] = STATE(3006), + [sym_parameter_list] = STATE(2921), + [sym_abstract_reference_declarator] = STATE(3006), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_SEMI] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2268), - [anon_sym_STAR] = ACTIONS(6849), + [anon_sym_COMMA] = ACTIONS(2270), + [anon_sym_SEMI] = ACTIONS(2270), + [anon_sym_LBRACE] = ACTIONS(2270), + [anon_sym_STAR] = ACTIONS(6911), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2268), - [anon_sym_const] = ACTIONS(4354), - [anon_sym_restrict] = ACTIONS(2268), - [anon_sym_volatile] = ACTIONS(2268), - [anon_sym__Atomic] = ACTIONS(2268), - [anon_sym_mutable] = ACTIONS(2268), - [anon_sym_explicit] = ACTIONS(2268), - [anon_sym_constexpr] = ACTIONS(2268), - [anon_sym_COLON] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(6851), - [anon_sym_AMP_AMP] = ACTIONS(6853), - [anon_sym_DASH_GT] = ACTIONS(2268), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2268), + [anon_sym_EQ] = ACTIONS(2270), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_restrict] = ACTIONS(2270), + [anon_sym_volatile] = ACTIONS(2270), + [anon_sym__Atomic] = ACTIONS(2270), + [anon_sym_mutable] = ACTIONS(2270), + [anon_sym_explicit] = ACTIONS(2270), + [anon_sym_constexpr] = ACTIONS(2270), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_AMP] = ACTIONS(6913), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(2270), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2270), }, - [2891] = { - [sym__abstract_declarator] = STATE(2972), - [sym_abstract_pointer_declarator] = STATE(2972), - [sym_abstract_function_declarator] = STATE(2972), - [sym_abstract_array_declarator] = STATE(2972), - [sym_parameter_list] = STATE(2893), - [sym_abstract_reference_declarator] = STATE(2972), + [2919] = { + [sym__abstract_declarator] = STATE(3007), + [sym_abstract_pointer_declarator] = STATE(3007), + [sym_abstract_function_declarator] = STATE(3007), + [sym_abstract_array_declarator] = STATE(3007), + [sym_parameter_list] = STATE(2921), + [sym_abstract_reference_declarator] = STATE(3007), [anon_sym_LPAREN] = ACTIONS(1115), - [anon_sym_COMMA] = ACTIONS(2276), - [anon_sym_SEMI] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(6849), + [anon_sym_COMMA] = ACTIONS(2278), + [anon_sym_SEMI] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2278), + [anon_sym_STAR] = ACTIONS(6911), [anon_sym_LBRACK] = ACTIONS(1121), - [anon_sym_EQ] = ACTIONS(2276), - [anon_sym_const] = ACTIONS(4356), - [anon_sym_restrict] = ACTIONS(2276), - [anon_sym_volatile] = ACTIONS(2276), - [anon_sym__Atomic] = ACTIONS(2276), - [anon_sym_mutable] = ACTIONS(2276), - [anon_sym_explicit] = ACTIONS(2276), - [anon_sym_constexpr] = ACTIONS(2276), - [anon_sym_COLON] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(6851), - [anon_sym_AMP_AMP] = ACTIONS(6853), - [anon_sym_DASH_GT] = ACTIONS(2276), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2276), + [anon_sym_EQ] = ACTIONS(2278), + [anon_sym_const] = ACTIONS(4362), + [anon_sym_restrict] = ACTIONS(2278), + [anon_sym_volatile] = ACTIONS(2278), + [anon_sym__Atomic] = ACTIONS(2278), + [anon_sym_mutable] = ACTIONS(2278), + [anon_sym_explicit] = ACTIONS(2278), + [anon_sym_constexpr] = ACTIONS(2278), + [anon_sym_COLON] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(6913), + [anon_sym_AMP_AMP] = ACTIONS(6915), + [anon_sym_DASH_GT] = ACTIONS(2278), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(2278), }, - [2892] = { - [sym_parameter_list] = STATE(2973), + [2920] = { + [sym_parameter_list] = STATE(3008), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(4358), - [anon_sym_SEMI] = ACTIONS(4358), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(4358), - [anon_sym_const] = ACTIONS(4360), - [anon_sym_restrict] = ACTIONS(4358), - [anon_sym_volatile] = ACTIONS(4358), - [anon_sym__Atomic] = ACTIONS(4358), - [anon_sym_mutable] = ACTIONS(4358), - [anon_sym_explicit] = ACTIONS(4358), - [anon_sym_constexpr] = ACTIONS(4358), - [anon_sym_COLON] = ACTIONS(4358), - [anon_sym_DASH_GT] = ACTIONS(4358), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(4358), - }, - [2893] = { - [sym_type_qualifier] = STATE(2974), - [sym_trailing_return_type] = STATE(1128), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2974), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_SEMI] = ACTIONS(2282), - [anon_sym_LBRACE] = ACTIONS(2282), + [anon_sym_COMMA] = ACTIONS(4364), + [anon_sym_SEMI] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2282), - [anon_sym_const] = ACTIONS(4362), - [anon_sym_restrict] = ACTIONS(2282), - [anon_sym_volatile] = ACTIONS(2282), - [anon_sym__Atomic] = ACTIONS(2282), - [anon_sym_mutable] = ACTIONS(2282), - [anon_sym_explicit] = ACTIONS(2282), - [anon_sym_constexpr] = ACTIONS(2282), - [anon_sym_COLON] = ACTIONS(2282), - [anon_sym_DASH_GT] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4366), + [anon_sym_restrict] = ACTIONS(4364), + [anon_sym_volatile] = ACTIONS(4364), + [anon_sym__Atomic] = ACTIONS(4364), + [anon_sym_mutable] = ACTIONS(4364), + [anon_sym_explicit] = ACTIONS(4364), + [anon_sym_constexpr] = ACTIONS(4364), + [anon_sym_COLON] = ACTIONS(4364), + [anon_sym_DASH_GT] = ACTIONS(4364), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(4364), + }, + [2921] = { + [sym_type_qualifier] = STATE(3009), + [sym_trailing_return_type] = STATE(1129), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3009), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_SEMI] = ACTIONS(2284), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_LBRACK] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(2284), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_restrict] = ACTIONS(2284), + [anon_sym_volatile] = ACTIONS(2284), + [anon_sym__Atomic] = ACTIONS(2284), + [anon_sym_mutable] = ACTIONS(2284), + [anon_sym_explicit] = ACTIONS(2284), + [anon_sym_constexpr] = ACTIONS(2284), + [anon_sym_COLON] = ACTIONS(2284), + [anon_sym_DASH_GT] = ACTIONS(2284), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(2282), + [sym_noexcept] = ACTIONS(2284), }, - [2894] = { - [aux_sym_sized_type_specifier_repeat1] = STATE(2894), + [2922] = { + [aux_sym_sized_type_specifier_repeat1] = STATE(2922), [anon_sym_LPAREN] = ACTIONS(816), [anon_sym_COMMA] = ACTIONS(816), [anon_sym_SEMI] = ACTIONS(816), @@ -116350,9 +117663,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(818), [anon_sym_explicit] = ACTIONS(818), [anon_sym_constexpr] = ACTIONS(818), - [anon_sym_unsigned] = ACTIONS(7009), - [anon_sym_long] = ACTIONS(7009), - [anon_sym_short] = ACTIONS(7009), + [anon_sym_unsigned] = ACTIONS(7087), + [anon_sym_long] = ACTIONS(7087), + [anon_sym_short] = ACTIONS(7087), [sym_primitive_type] = ACTIONS(818), [anon_sym_COLON] = ACTIONS(816), [anon_sym_AMP] = ACTIONS(818), @@ -116362,76 +117675,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(49), [sym_noexcept] = ACTIONS(818), }, - [2895] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7012), + [2923] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7090), [sym_comment] = ACTIONS(49), }, - [2896] = { - [sym_parameter_list] = STATE(2898), + [2924] = { + [sym_parameter_list] = STATE(2926), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2897] = { - [sym_parameter_list] = STATE(2898), + [2925] = { + [sym_parameter_list] = STATE(2926), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2898] = { - [sym_type_qualifier] = STATE(2976), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2976), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [2926] = { + [sym_type_qualifier] = STATE(3011), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3011), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2899] = { - [sym_type_qualifier] = STATE(2977), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2977), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), + [2927] = { + [sym_type_qualifier] = STATE(3012), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3012), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -116439,12 +117752,12 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(5737), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(5761), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7014), + [sym_noexcept] = ACTIONS(7092), }, - [2900] = { + [2928] = { [sym_raw_string_literal] = ACTIONS(1622), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1624), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1624), @@ -116513,17 +117826,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1624), [sym_nullptr] = ACTIONS(1624), }, - [2901] = { - [sym_preproc_include] = STATE(912), - [sym_preproc_def] = STATE(912), - [sym_preproc_function_def] = STATE(912), - [sym_preproc_call] = STATE(912), + [2929] = { + [sym_preproc_include] = STATE(913), + [sym_preproc_def] = STATE(913), + [sym_preproc_function_def] = STATE(913), + [sym_preproc_call] = STATE(913), [sym_preproc_if_in_compound_statement] = STATE(410), [sym_preproc_ifdef_in_compound_statement] = STATE(411), - [sym_declaration] = STATE(912), - [sym_type_definition] = STATE(912), + [sym_declaration] = STATE(913), + [sym_type_definition] = STATE(913), [sym__declaration_specifiers] = STATE(412), - [sym_compound_statement] = STATE(912), + [sym_compound_statement] = STATE(913), [sym_storage_class_specifier] = STATE(419), [sym_type_qualifier] = STATE(419), [sym__type_specifier] = STATE(30), @@ -116531,18 +117844,18 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(30), [sym_struct_specifier] = STATE(30), [sym_union_specifier] = STATE(30), - [sym_labeled_statement] = STATE(912), - [sym_expression_statement] = STATE(912), - [sym_if_statement] = STATE(912), - [sym_switch_statement] = STATE(912), - [sym_case_statement] = STATE(912), - [sym_while_statement] = STATE(912), - [sym_do_statement] = STATE(912), - [sym_for_statement] = STATE(912), - [sym_return_statement] = STATE(912), - [sym_break_statement] = STATE(912), - [sym_continue_statement] = STATE(912), - [sym_goto_statement] = STATE(912), + [sym_labeled_statement] = STATE(913), + [sym_expression_statement] = STATE(913), + [sym_if_statement] = STATE(913), + [sym_switch_statement] = STATE(913), + [sym_case_statement] = STATE(913), + [sym_while_statement] = STATE(913), + [sym_do_statement] = STATE(913), + [sym_for_statement] = STATE(913), + [sym_return_statement] = STATE(913), + [sym_break_statement] = STATE(913), + [sym_continue_statement] = STATE(913), + [sym_goto_statement] = STATE(913), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -116562,14 +117875,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_compound_literal_expression] = STATE(413), [sym_parenthesized_expression] = STATE(413), [sym_concatenated_string] = STATE(413), - [sym__empty_declaration] = STATE(912), + [sym__empty_declaration] = STATE(913), [sym_macro_type_specifier] = STATE(30), [sym_class_specifier] = STATE(30), [sym_dependent_type] = STATE(30), - [sym_structured_binding_declaration] = STATE(912), + [sym_structured_binding_declaration] = STATE(913), [sym_template_type] = STATE(415), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(912), + [sym_for_range_loop] = STATE(913), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -116577,7 +117890,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), [sym_scoped_namespace_identifier] = STATE(417), - [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(912), + [aux_sym_preproc_if_in_compound_statement_repeat1] = STATE(913), [aux_sym__declaration_specifiers_repeat1] = STATE(419), [aux_sym_sized_type_specifier_repeat1] = STATE(38), [sym_raw_string_literal] = ACTIONS(620), @@ -116592,7 +117905,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_typedef] = ACTIONS(638), [anon_sym_extern] = ACTIONS(154), [anon_sym_LBRACE] = ACTIONS(640), - [anon_sym_RBRACE] = ACTIONS(7016), + [anon_sym_RBRACE] = ACTIONS(7094), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -116647,158 +117960,162 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2902] = { - [sym__expression] = STATE(2979), - [sym_conditional_expression] = STATE(2979), - [sym_assignment_expression] = STATE(2979), - [sym_pointer_expression] = STATE(2979), - [sym_logical_expression] = STATE(2979), - [sym_bitwise_expression] = STATE(2979), - [sym_equality_expression] = STATE(2979), - [sym_relational_expression] = STATE(2979), - [sym_shift_expression] = STATE(2979), - [sym_math_expression] = STATE(2979), - [sym_cast_expression] = STATE(2979), - [sym_sizeof_expression] = STATE(2979), - [sym_subscript_expression] = STATE(2979), - [sym_call_expression] = STATE(2979), - [sym_field_expression] = STATE(2979), - [sym_compound_literal_expression] = STATE(2979), - [sym_parenthesized_expression] = STATE(2979), - [sym_concatenated_string] = STATE(2979), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2979), - [sym_new_expression] = STATE(2979), - [sym_delete_expression] = STATE(2979), - [sym_lambda_expression] = STATE(2979), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7018), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7018), - [sym_char_literal] = ACTIONS(7018), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7020), - [sym_false] = ACTIONS(7020), - [sym_null] = ACTIONS(7020), + [2930] = { + [sym__expression] = STATE(3014), + [sym_conditional_expression] = STATE(3014), + [sym_assignment_expression] = STATE(3014), + [sym_pointer_expression] = STATE(3014), + [sym_logical_expression] = STATE(3014), + [sym_bitwise_expression] = STATE(3014), + [sym_equality_expression] = STATE(3014), + [sym_relational_expression] = STATE(3014), + [sym_shift_expression] = STATE(3014), + [sym_math_expression] = STATE(3014), + [sym_cast_expression] = STATE(3014), + [sym_sizeof_expression] = STATE(3014), + [sym_subscript_expression] = STATE(3014), + [sym_call_expression] = STATE(3014), + [sym_field_expression] = STATE(3014), + [sym_compound_literal_expression] = STATE(3014), + [sym_parenthesized_expression] = STATE(3014), + [sym_concatenated_string] = STATE(3014), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3014), + [sym_new_expression] = STATE(3014), + [sym_delete_expression] = STATE(3014), + [sym_lambda_expression] = STATE(3014), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7096), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7096), + [sym_char_literal] = ACTIONS(7096), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7098), + [sym_false] = ACTIONS(7098), + [sym_null] = ACTIONS(7098), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7020), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7098), }, - [2903] = { - [sym__expression] = STATE(2980), - [sym_conditional_expression] = STATE(2980), - [sym_assignment_expression] = STATE(2980), - [sym_pointer_expression] = STATE(2980), - [sym_logical_expression] = STATE(2980), - [sym_bitwise_expression] = STATE(2980), - [sym_equality_expression] = STATE(2980), - [sym_relational_expression] = STATE(2980), - [sym_shift_expression] = STATE(2980), - [sym_math_expression] = STATE(2980), - [sym_cast_expression] = STATE(2980), - [sym_sizeof_expression] = STATE(2980), - [sym_subscript_expression] = STATE(2980), - [sym_call_expression] = STATE(2980), - [sym_field_expression] = STATE(2980), - [sym_compound_literal_expression] = STATE(2980), - [sym_parenthesized_expression] = STATE(2980), - [sym_concatenated_string] = STATE(2980), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2980), - [sym_new_expression] = STATE(2980), - [sym_delete_expression] = STATE(2980), - [sym_lambda_expression] = STATE(2980), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7022), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7022), - [sym_char_literal] = ACTIONS(7022), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7024), - [sym_false] = ACTIONS(7024), - [sym_null] = ACTIONS(7024), + [2931] = { + [anon_sym_LPAREN] = ACTIONS(7100), + [sym_comment] = ACTIONS(49), + }, + [2932] = { + [sym__expression] = STATE(3016), + [sym_conditional_expression] = STATE(3016), + [sym_assignment_expression] = STATE(3016), + [sym_pointer_expression] = STATE(3016), + [sym_logical_expression] = STATE(3016), + [sym_bitwise_expression] = STATE(3016), + [sym_equality_expression] = STATE(3016), + [sym_relational_expression] = STATE(3016), + [sym_shift_expression] = STATE(3016), + [sym_math_expression] = STATE(3016), + [sym_cast_expression] = STATE(3016), + [sym_sizeof_expression] = STATE(3016), + [sym_subscript_expression] = STATE(3016), + [sym_call_expression] = STATE(3016), + [sym_field_expression] = STATE(3016), + [sym_compound_literal_expression] = STATE(3016), + [sym_parenthesized_expression] = STATE(3016), + [sym_concatenated_string] = STATE(3016), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3016), + [sym_new_expression] = STATE(3016), + [sym_delete_expression] = STATE(3016), + [sym_lambda_expression] = STATE(3016), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7102), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7102), + [sym_char_literal] = ACTIONS(7102), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7104), + [sym_false] = ACTIONS(7104), + [sym_null] = ACTIONS(7104), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7024), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7104), }, - [2904] = { + [2933] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_STAR] = ACTIONS(3003), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym_COLON] = ACTIONS(7026), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3007), - [anon_sym_SLASH_EQ] = ACTIONS(3007), - [anon_sym_PERCENT_EQ] = ACTIONS(3007), - [anon_sym_PLUS_EQ] = ACTIONS(3007), - [anon_sym_DASH_EQ] = ACTIONS(3007), - [anon_sym_LT_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_GT_EQ] = ACTIONS(3007), - [anon_sym_AMP_EQ] = ACTIONS(3007), - [anon_sym_CARET_EQ] = ACTIONS(3007), - [anon_sym_PIPE_EQ] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(2999), - [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(7106), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3011), + [anon_sym_SLASH_EQ] = ACTIONS(3011), + [anon_sym_PERCENT_EQ] = ACTIONS(3011), + [anon_sym_PLUS_EQ] = ACTIONS(3011), + [anon_sym_DASH_EQ] = ACTIONS(3011), + [anon_sym_LT_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_GT_EQ] = ACTIONS(3011), + [anon_sym_AMP_EQ] = ACTIONS(3011), + [anon_sym_CARET_EQ] = ACTIONS(3011), + [anon_sym_PIPE_EQ] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3019), + [anon_sym_CARET] = ACTIONS(3021), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3029), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_DASH_GT] = ACTIONS(3029), + [anon_sym_DOT] = ACTIONS(3033), + [anon_sym_DASH_GT] = ACTIONS(3033), [sym_comment] = ACTIONS(49), }, - [2905] = { - [sym_declaration] = STATE(2984), - [sym_type_definition] = STATE(2984), - [sym__declaration_specifiers] = STATE(2985), - [sym_compound_statement] = STATE(2984), + [2934] = { + [sym_declaration] = STATE(3020), + [sym_type_definition] = STATE(3020), + [sym__declaration_specifiers] = STATE(3021), + [sym_compound_statement] = STATE(3020), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -116806,58 +118123,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(2984), - [sym_expression_statement] = STATE(2984), - [sym_if_statement] = STATE(2984), - [sym_switch_statement] = STATE(2984), - [sym_case_statement] = STATE(2984), - [sym_while_statement] = STATE(2984), - [sym_do_statement] = STATE(2984), - [sym_for_statement] = STATE(2984), - [sym_return_statement] = STATE(2984), - [sym_break_statement] = STATE(2984), - [sym_continue_statement] = STATE(2984), - [sym_goto_statement] = STATE(2984), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), + [sym_labeled_statement] = STATE(3020), + [sym_expression_statement] = STATE(3020), + [sym_if_statement] = STATE(3020), + [sym_switch_statement] = STATE(3020), + [sym_case_statement] = STATE(3020), + [sym_while_statement] = STATE(3020), + [sym_do_statement] = STATE(3020), + [sym_for_statement] = STATE(3020), + [sym_return_statement] = STATE(3020), + [sym_break_statement] = STATE(3020), + [sym_continue_statement] = STATE(3020), + [sym_goto_statement] = STATE(3020), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(2984), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3020), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_typedef] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_typedef] = ACTIONS(7108), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -116877,17 +118194,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -116896,82 +118213,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(7030), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(7110), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [2906] = { - [sym__expression] = STATE(2986), - [sym_conditional_expression] = STATE(2986), - [sym_assignment_expression] = STATE(2986), - [sym_pointer_expression] = STATE(2986), - [sym_logical_expression] = STATE(2986), - [sym_bitwise_expression] = STATE(2986), - [sym_equality_expression] = STATE(2986), - [sym_relational_expression] = STATE(2986), - [sym_shift_expression] = STATE(2986), - [sym_math_expression] = STATE(2986), - [sym_cast_expression] = STATE(2986), - [sym_sizeof_expression] = STATE(2986), - [sym_subscript_expression] = STATE(2986), - [sym_call_expression] = STATE(2986), - [sym_field_expression] = STATE(2986), - [sym_compound_literal_expression] = STATE(2986), - [sym_parenthesized_expression] = STATE(2986), - [sym_concatenated_string] = STATE(2986), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2986), - [sym_new_expression] = STATE(2986), - [sym_delete_expression] = STATE(2986), - [sym_lambda_expression] = STATE(2986), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7032), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7032), - [sym_char_literal] = ACTIONS(7032), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7034), - [sym_false] = ACTIONS(7034), - [sym_null] = ACTIONS(7034), + [2935] = { + [sym__expression] = STATE(3022), + [sym_conditional_expression] = STATE(3022), + [sym_assignment_expression] = STATE(3022), + [sym_pointer_expression] = STATE(3022), + [sym_logical_expression] = STATE(3022), + [sym_bitwise_expression] = STATE(3022), + [sym_equality_expression] = STATE(3022), + [sym_relational_expression] = STATE(3022), + [sym_shift_expression] = STATE(3022), + [sym_math_expression] = STATE(3022), + [sym_cast_expression] = STATE(3022), + [sym_sizeof_expression] = STATE(3022), + [sym_subscript_expression] = STATE(3022), + [sym_call_expression] = STATE(3022), + [sym_field_expression] = STATE(3022), + [sym_compound_literal_expression] = STATE(3022), + [sym_parenthesized_expression] = STATE(3022), + [sym_concatenated_string] = STATE(3022), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3022), + [sym_new_expression] = STATE(3022), + [sym_delete_expression] = STATE(3022), + [sym_lambda_expression] = STATE(3022), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7112), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7112), + [sym_char_literal] = ACTIONS(7112), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7114), + [sym_false] = ACTIONS(7114), + [sym_null] = ACTIONS(7114), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7034), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7114), }, - [2907] = { - [anon_sym_while] = ACTIONS(7036), + [2936] = { + [anon_sym_while] = ACTIONS(7116), [sym_comment] = ACTIONS(49), }, - [2908] = { - [sym_declaration] = STATE(2988), - [sym__declaration_specifiers] = STATE(1497), + [2937] = { + [sym_declaration] = STATE(3024), + [sym__declaration_specifiers] = STATE(1500), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -116979,42 +118296,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym__expression] = STATE(2989), - [sym_conditional_expression] = STATE(2989), - [sym_assignment_expression] = STATE(2989), - [sym_pointer_expression] = STATE(2989), - [sym_logical_expression] = STATE(2989), - [sym_bitwise_expression] = STATE(2989), - [sym_equality_expression] = STATE(2989), - [sym_relational_expression] = STATE(2989), - [sym_shift_expression] = STATE(2989), - [sym_math_expression] = STATE(2989), - [sym_cast_expression] = STATE(2989), - [sym_sizeof_expression] = STATE(2989), - [sym_subscript_expression] = STATE(2989), - [sym_call_expression] = STATE(2989), - [sym_field_expression] = STATE(2989), - [sym_compound_literal_expression] = STATE(2989), - [sym_parenthesized_expression] = STATE(2989), - [sym_concatenated_string] = STATE(2989), + [sym__expression] = STATE(3025), + [sym_conditional_expression] = STATE(3025), + [sym_assignment_expression] = STATE(3025), + [sym_pointer_expression] = STATE(3025), + [sym_logical_expression] = STATE(3025), + [sym_bitwise_expression] = STATE(3025), + [sym_equality_expression] = STATE(3025), + [sym_relational_expression] = STATE(3025), + [sym_shift_expression] = STATE(3025), + [sym_math_expression] = STATE(3025), + [sym_cast_expression] = STATE(3025), + [sym_sizeof_expression] = STATE(3025), + [sym_subscript_expression] = STATE(3025), + [sym_call_expression] = STATE(3025), + [sym_field_expression] = STATE(3025), + [sym_compound_literal_expression] = STATE(3025), + [sym_parenthesized_expression] = STATE(3025), + [sym_concatenated_string] = STATE(3025), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2989), - [sym_for_range_declaration] = STATE(2990), - [sym_new_expression] = STATE(2989), - [sym_delete_expression] = STATE(2989), - [sym_lambda_expression] = STATE(2989), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(3025), + [sym_for_range_declaration] = STATE(3026), + [sym_new_expression] = STATE(3025), + [sym_delete_expression] = STATE(3025), + [sym_lambda_expression] = STATE(3025), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(7038), + [sym_raw_string_literal] = ACTIONS(7118), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7040), + [anon_sym_SEMI] = ACTIONS(7120), [anon_sym_extern] = ACTIONS(154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), @@ -117043,137 +118360,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7038), - [sym_char_literal] = ACTIONS(7038), + [sym_number_literal] = ACTIONS(7118), + [sym_char_literal] = ACTIONS(7118), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7042), - [sym_false] = ACTIONS(7042), - [sym_null] = ACTIONS(7042), - [sym_identifier] = ACTIONS(3082), + [sym_true] = ACTIONS(7122), + [sym_false] = ACTIONS(7122), + [sym_null] = ACTIONS(7122), + [sym_identifier] = ACTIONS(3088), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3084), + [anon_sym_COLON_COLON] = ACTIONS(3090), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7042), - }, - [2909] = { - [sym_raw_string_literal] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3086), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3088), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3088), - [sym_preproc_directive] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3086), - [anon_sym_typedef] = ACTIONS(3088), - [anon_sym_extern] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(3086), - [anon_sym_LBRACK] = ACTIONS(3086), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_register] = ACTIONS(3088), - [anon_sym_inline] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_restrict] = ACTIONS(3088), - [anon_sym_volatile] = ACTIONS(3088), - [anon_sym__Atomic] = ACTIONS(3088), - [anon_sym_mutable] = ACTIONS(3088), - [anon_sym_explicit] = ACTIONS(3088), - [anon_sym_constexpr] = ACTIONS(3088), - [anon_sym_unsigned] = ACTIONS(3088), - [anon_sym_long] = ACTIONS(3088), - [anon_sym_short] = ACTIONS(3088), - [sym_primitive_type] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [anon_sym_struct] = ACTIONS(3088), - [anon_sym_union] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_goto] = ACTIONS(3088), - [anon_sym_AMP] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(3086), - [anon_sym_TILDE] = ACTIONS(3086), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3086), - [anon_sym_PLUS_PLUS] = ACTIONS(3086), - [anon_sym_sizeof] = ACTIONS(3088), - [sym_number_literal] = ACTIONS(3086), - [sym_char_literal] = ACTIONS(3086), - [sym_string_literal] = ACTIONS(3086), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_identifier] = ACTIONS(3088), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3088), - [sym_auto] = ACTIONS(3088), - [anon_sym_typename] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_COLON_COLON] = ACTIONS(3086), - [anon_sym_delete] = ACTIONS(3088), - [sym_nullptr] = ACTIONS(3088), + [sym_nullptr] = ACTIONS(7122), }, - [2910] = { - [sym_argument_list] = STATE(802), - [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7044), - [anon_sym_STAR] = ACTIONS(2551), - [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_DASH_GT] = ACTIONS(1554), - [sym_comment] = ACTIONS(49), - }, - [2911] = { - [anon_sym_SEMI] = ACTIONS(7044), - [sym_comment] = ACTIONS(49), - }, - [2912] = { + [2938] = { [sym_raw_string_literal] = ACTIONS(3092), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3094), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3094), @@ -117242,139 +118445,253 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(3094), [sym_nullptr] = ACTIONS(3094), }, - [2913] = { - [sym_raw_string_literal] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3098), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3098), - [sym_preproc_directive] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_typedef] = ACTIONS(3098), - [anon_sym_extern] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_register] = ACTIONS(3098), - [anon_sym_inline] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_restrict] = ACTIONS(3098), - [anon_sym_volatile] = ACTIONS(3098), - [anon_sym__Atomic] = ACTIONS(3098), - [anon_sym_mutable] = ACTIONS(3098), - [anon_sym_explicit] = ACTIONS(3098), - [anon_sym_constexpr] = ACTIONS(3098), - [anon_sym_unsigned] = ACTIONS(3098), - [anon_sym_long] = ACTIONS(3098), - [anon_sym_short] = ACTIONS(3098), - [sym_primitive_type] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), - [anon_sym_struct] = ACTIONS(3098), - [anon_sym_union] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_goto] = ACTIONS(3098), - [anon_sym_AMP] = ACTIONS(3096), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_sizeof] = ACTIONS(3098), - [sym_number_literal] = ACTIONS(3096), - [sym_char_literal] = ACTIONS(3096), - [sym_string_literal] = ACTIONS(3096), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3098), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3098), - [sym_auto] = ACTIONS(3098), - [anon_sym_typename] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_COLON_COLON] = ACTIONS(3096), - [anon_sym_delete] = ACTIONS(3098), - [sym_nullptr] = ACTIONS(3098), + [2939] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_SEMI] = ACTIONS(7124), + [anon_sym_STAR] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), }, - [2914] = { - [anon_sym_SEMI] = ACTIONS(7046), + [2940] = { + [anon_sym_SEMI] = ACTIONS(7124), [sym_comment] = ACTIONS(49), }, - [2915] = { - [sym_compound_statement] = STATE(2993), - [sym_labeled_statement] = STATE(2993), - [sym_expression_statement] = STATE(2993), - [sym_if_statement] = STATE(2993), - [sym_switch_statement] = STATE(2993), - [sym_case_statement] = STATE(2993), - [sym_while_statement] = STATE(2993), - [sym_do_statement] = STATE(2993), - [sym_for_statement] = STATE(2993), - [sym_return_statement] = STATE(2993), - [sym_break_statement] = STATE(2993), - [sym_continue_statement] = STATE(2993), - [sym_goto_statement] = STATE(2993), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(2993), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [2941] = { + [sym_raw_string_literal] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3100), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3100), + [sym_preproc_directive] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_typedef] = ACTIONS(3100), + [anon_sym_extern] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_STAR] = ACTIONS(3098), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_register] = ACTIONS(3100), + [anon_sym_inline] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_restrict] = ACTIONS(3100), + [anon_sym_volatile] = ACTIONS(3100), + [anon_sym__Atomic] = ACTIONS(3100), + [anon_sym_mutable] = ACTIONS(3100), + [anon_sym_explicit] = ACTIONS(3100), + [anon_sym_constexpr] = ACTIONS(3100), + [anon_sym_unsigned] = ACTIONS(3100), + [anon_sym_long] = ACTIONS(3100), + [anon_sym_short] = ACTIONS(3100), + [sym_primitive_type] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [anon_sym_struct] = ACTIONS(3100), + [anon_sym_union] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_goto] = ACTIONS(3100), + [anon_sym_AMP] = ACTIONS(3098), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_sizeof] = ACTIONS(3100), + [sym_number_literal] = ACTIONS(3098), + [sym_char_literal] = ACTIONS(3098), + [sym_string_literal] = ACTIONS(3098), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_identifier] = ACTIONS(3100), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3100), + [sym_auto] = ACTIONS(3100), + [anon_sym_typename] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_COLON_COLON] = ACTIONS(3098), + [anon_sym_delete] = ACTIONS(3100), + [sym_nullptr] = ACTIONS(3100), + }, + [2942] = { + [sym_raw_string_literal] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3104), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3104), + [sym_preproc_directive] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_typedef] = ACTIONS(3104), + [anon_sym_extern] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_STAR] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_register] = ACTIONS(3104), + [anon_sym_inline] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_restrict] = ACTIONS(3104), + [anon_sym_volatile] = ACTIONS(3104), + [anon_sym__Atomic] = ACTIONS(3104), + [anon_sym_mutable] = ACTIONS(3104), + [anon_sym_explicit] = ACTIONS(3104), + [anon_sym_constexpr] = ACTIONS(3104), + [anon_sym_unsigned] = ACTIONS(3104), + [anon_sym_long] = ACTIONS(3104), + [anon_sym_short] = ACTIONS(3104), + [sym_primitive_type] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + [anon_sym_struct] = ACTIONS(3104), + [anon_sym_union] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_goto] = ACTIONS(3104), + [anon_sym_AMP] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_sizeof] = ACTIONS(3104), + [sym_number_literal] = ACTIONS(3102), + [sym_char_literal] = ACTIONS(3102), + [sym_string_literal] = ACTIONS(3102), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3104), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3104), + [sym_auto] = ACTIONS(3104), + [anon_sym_typename] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_COLON_COLON] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3104), + [sym_nullptr] = ACTIONS(3104), + }, + [2943] = { + [anon_sym_SEMI] = ACTIONS(7126), + [sym_comment] = ACTIONS(49), + }, + [2944] = { + [sym_compound_statement] = STATE(3029), + [sym_labeled_statement] = STATE(3029), + [sym_expression_statement] = STATE(3029), + [sym_if_statement] = STATE(3029), + [sym_switch_statement] = STATE(3029), + [sym_case_statement] = STATE(3029), + [sym_while_statement] = STATE(3029), + [sym_do_statement] = STATE(3029), + [sym_for_statement] = STATE(3029), + [sym_return_statement] = STATE(3029), + [sym_break_statement] = STATE(3029), + [sym_continue_statement] = STATE(3029), + [sym_goto_statement] = STATE(3029), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3029), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -117383,79 +118700,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [2916] = { - [sym_compound_statement] = STATE(2994), - [sym_labeled_statement] = STATE(2994), - [sym_expression_statement] = STATE(2994), - [sym_if_statement] = STATE(2994), - [sym_switch_statement] = STATE(2994), - [sym_case_statement] = STATE(2994), - [sym_while_statement] = STATE(2994), - [sym_do_statement] = STATE(2994), - [sym_for_statement] = STATE(2994), - [sym_return_statement] = STATE(2994), - [sym_break_statement] = STATE(2994), - [sym_continue_statement] = STATE(2994), - [sym_goto_statement] = STATE(2994), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2994), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2945] = { + [sym_compound_statement] = STATE(3030), + [sym_labeled_statement] = STATE(3030), + [sym_expression_statement] = STATE(3030), + [sym_if_statement] = STATE(3030), + [sym_switch_statement] = STATE(3030), + [sym_case_statement] = STATE(3030), + [sym_while_statement] = STATE(3030), + [sym_do_statement] = STATE(3030), + [sym_for_statement] = STATE(3030), + [sym_return_statement] = STATE(3030), + [sym_break_statement] = STATE(3030), + [sym_continue_statement] = STATE(3030), + [sym_goto_statement] = STATE(3030), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3030), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -117464,284 +118781,353 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2917] = { - [sym_raw_string_literal] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3128), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3128), - [sym_preproc_directive] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_typedef] = ACTIONS(3128), - [anon_sym_extern] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(3126), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_register] = ACTIONS(3128), - [anon_sym_inline] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_restrict] = ACTIONS(3128), - [anon_sym_volatile] = ACTIONS(3128), - [anon_sym__Atomic] = ACTIONS(3128), - [anon_sym_mutable] = ACTIONS(3128), - [anon_sym_explicit] = ACTIONS(3128), - [anon_sym_constexpr] = ACTIONS(3128), - [anon_sym_unsigned] = ACTIONS(3128), - [anon_sym_long] = ACTIONS(3128), - [anon_sym_short] = ACTIONS(3128), - [sym_primitive_type] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [anon_sym_struct] = ACTIONS(3128), - [anon_sym_union] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_goto] = ACTIONS(3128), - [anon_sym_AMP] = ACTIONS(3126), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_sizeof] = ACTIONS(3128), - [sym_number_literal] = ACTIONS(3126), - [sym_char_literal] = ACTIONS(3126), - [sym_string_literal] = ACTIONS(3126), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_identifier] = ACTIONS(3128), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3128), - [sym_auto] = ACTIONS(3128), - [anon_sym_typename] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_COLON_COLON] = ACTIONS(3126), - [anon_sym_delete] = ACTIONS(3128), - [sym_nullptr] = ACTIONS(3128), + [2946] = { + [sym_raw_string_literal] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3134), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3134), + [sym_preproc_directive] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_typedef] = ACTIONS(3134), + [anon_sym_extern] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_STAR] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_register] = ACTIONS(3134), + [anon_sym_inline] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_restrict] = ACTIONS(3134), + [anon_sym_volatile] = ACTIONS(3134), + [anon_sym__Atomic] = ACTIONS(3134), + [anon_sym_mutable] = ACTIONS(3134), + [anon_sym_explicit] = ACTIONS(3134), + [anon_sym_constexpr] = ACTIONS(3134), + [anon_sym_unsigned] = ACTIONS(3134), + [anon_sym_long] = ACTIONS(3134), + [anon_sym_short] = ACTIONS(3134), + [sym_primitive_type] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), + [anon_sym_struct] = ACTIONS(3134), + [anon_sym_union] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_goto] = ACTIONS(3134), + [anon_sym_AMP] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_sizeof] = ACTIONS(3134), + [sym_number_literal] = ACTIONS(3132), + [sym_char_literal] = ACTIONS(3132), + [sym_string_literal] = ACTIONS(3132), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_identifier] = ACTIONS(3134), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3134), + [sym_auto] = ACTIONS(3134), + [anon_sym_typename] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_COLON_COLON] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3134), + [sym_nullptr] = ACTIONS(3134), }, - [2918] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), + [2947] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(7128), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), }, - [2919] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), + [2948] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), }, - [2920] = { - [sym_compound_statement] = STATE(2995), - [sym_labeled_statement] = STATE(2995), - [sym_expression_statement] = STATE(2995), - [sym_if_statement] = STATE(2995), - [sym_switch_statement] = STATE(2995), - [sym_case_statement] = STATE(2995), - [sym_while_statement] = STATE(2995), - [sym_do_statement] = STATE(2995), - [sym_for_statement] = STATE(2995), - [sym_return_statement] = STATE(2995), - [sym_break_statement] = STATE(2995), - [sym_continue_statement] = STATE(2995), - [sym_goto_statement] = STATE(2995), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2995), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2949] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), + }, + [2950] = { + [sym_compound_statement] = STATE(3032), + [sym_labeled_statement] = STATE(3032), + [sym_expression_statement] = STATE(3032), + [sym_if_statement] = STATE(3032), + [sym_switch_statement] = STATE(3032), + [sym_case_statement] = STATE(3032), + [sym_while_statement] = STATE(3032), + [sym_do_statement] = STATE(3032), + [sym_for_statement] = STATE(3032), + [sym_return_statement] = STATE(3032), + [sym_break_statement] = STATE(3032), + [sym_continue_statement] = STATE(3032), + [sym_goto_statement] = STATE(3032), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3032), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -117750,99 +119136,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2921] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7048), + [2951] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7130), [sym_comment] = ACTIONS(49), }, - [2922] = { + [2952] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(2997), + [aux_sym_for_statement_repeat1] = STATE(3034), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7048), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7130), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2923] = { - [sym__expression] = STATE(2998), - [sym_conditional_expression] = STATE(2998), - [sym_assignment_expression] = STATE(2998), - [sym_pointer_expression] = STATE(2998), - [sym_logical_expression] = STATE(2998), - [sym_bitwise_expression] = STATE(2998), - [sym_equality_expression] = STATE(2998), - [sym_relational_expression] = STATE(2998), - [sym_shift_expression] = STATE(2998), - [sym_math_expression] = STATE(2998), - [sym_cast_expression] = STATE(2998), - [sym_sizeof_expression] = STATE(2998), - [sym_subscript_expression] = STATE(2998), - [sym_call_expression] = STATE(2998), - [sym_field_expression] = STATE(2998), - [sym_compound_literal_expression] = STATE(2998), - [sym_parenthesized_expression] = STATE(2998), - [sym_concatenated_string] = STATE(2998), + [2953] = { + [sym__expression] = STATE(3035), + [sym_conditional_expression] = STATE(3035), + [sym_assignment_expression] = STATE(3035), + [sym_pointer_expression] = STATE(3035), + [sym_logical_expression] = STATE(3035), + [sym_bitwise_expression] = STATE(3035), + [sym_equality_expression] = STATE(3035), + [sym_relational_expression] = STATE(3035), + [sym_shift_expression] = STATE(3035), + [sym_math_expression] = STATE(3035), + [sym_cast_expression] = STATE(3035), + [sym_sizeof_expression] = STATE(3035), + [sym_subscript_expression] = STATE(3035), + [sym_call_expression] = STATE(3035), + [sym_field_expression] = STATE(3035), + [sym_compound_literal_expression] = STATE(3035), + [sym_parenthesized_expression] = STATE(3035), + [sym_concatenated_string] = STATE(3035), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2998), - [sym_new_expression] = STATE(2998), - [sym_delete_expression] = STATE(2998), - [sym_lambda_expression] = STATE(2998), + [sym_template_function] = STATE(3035), + [sym_new_expression] = STATE(3035), + [sym_delete_expression] = STATE(3035), + [sym_lambda_expression] = STATE(3035), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7050), + [sym_raw_string_literal] = ACTIONS(7132), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7048), + [anon_sym_RPAREN] = ACTIONS(7130), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -117853,79 +119239,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7050), - [sym_char_literal] = ACTIONS(7050), + [sym_number_literal] = ACTIONS(7132), + [sym_char_literal] = ACTIONS(7132), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7052), - [sym_false] = ACTIONS(7052), - [sym_null] = ACTIONS(7052), + [sym_true] = ACTIONS(7134), + [sym_false] = ACTIONS(7134), + [sym_null] = ACTIONS(7134), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7052), + [sym_nullptr] = ACTIONS(7134), }, - [2924] = { - [sym_compound_statement] = STATE(2999), - [sym_labeled_statement] = STATE(2999), - [sym_expression_statement] = STATE(2999), - [sym_if_statement] = STATE(2999), - [sym_switch_statement] = STATE(2999), - [sym_case_statement] = STATE(2999), - [sym_while_statement] = STATE(2999), - [sym_do_statement] = STATE(2999), - [sym_for_statement] = STATE(2999), - [sym_return_statement] = STATE(2999), - [sym_break_statement] = STATE(2999), - [sym_continue_statement] = STATE(2999), - [sym_goto_statement] = STATE(2999), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(2999), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [2954] = { + [sym_compound_statement] = STATE(3036), + [sym_labeled_statement] = STATE(3036), + [sym_expression_statement] = STATE(3036), + [sym_if_statement] = STATE(3036), + [sym_switch_statement] = STATE(3036), + [sym_case_statement] = STATE(3036), + [sym_while_statement] = STATE(3036), + [sym_do_statement] = STATE(3036), + [sym_for_statement] = STATE(3036), + [sym_return_statement] = STATE(3036), + [sym_break_statement] = STATE(3036), + [sym_continue_statement] = STATE(3036), + [sym_goto_statement] = STATE(3036), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3036), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -117934,177 +119320,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2925] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), + [2955] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), }, - [2926] = { + [2956] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7054), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7136), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2927] = { + [2957] = { + [sym__expression] = STATE(3038), + [sym_conditional_expression] = STATE(3038), + [sym_assignment_expression] = STATE(3038), + [sym_pointer_expression] = STATE(3038), + [sym_logical_expression] = STATE(3038), + [sym_bitwise_expression] = STATE(3038), + [sym_equality_expression] = STATE(3038), + [sym_relational_expression] = STATE(3038), + [sym_shift_expression] = STATE(3038), + [sym_math_expression] = STATE(3038), + [sym_cast_expression] = STATE(3038), + [sym_sizeof_expression] = STATE(3038), + [sym_subscript_expression] = STATE(3038), + [sym_call_expression] = STATE(3038), + [sym_field_expression] = STATE(3038), + [sym_compound_literal_expression] = STATE(3038), + [sym_parenthesized_expression] = STATE(3038), + [sym_concatenated_string] = STATE(3038), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3038), + [sym_new_expression] = STATE(3038), + [sym_delete_expression] = STATE(3038), + [sym_lambda_expression] = STATE(3038), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7138), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7138), + [sym_char_literal] = ACTIONS(7138), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7140), + [sym_false] = ACTIONS(7140), + [sym_null] = ACTIONS(7140), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7140), + }, + [2958] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7056), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7142), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2928] = { - [sym_declaration] = STATE(3002), - [sym_type_definition] = STATE(3002), - [sym__declaration_specifiers] = STATE(2932), - [sym_compound_statement] = STATE(3002), + [2959] = { + [sym_declaration] = STATE(3040), + [sym_type_definition] = STATE(3040), + [sym__declaration_specifiers] = STATE(2963), + [sym_compound_statement] = STATE(3040), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -118112,58 +119551,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(3002), - [sym_expression_statement] = STATE(3002), - [sym_if_statement] = STATE(3002), - [sym_switch_statement] = STATE(3002), - [sym_case_statement] = STATE(3002), - [sym_while_statement] = STATE(3002), - [sym_do_statement] = STATE(3002), - [sym_for_statement] = STATE(3002), - [sym_return_statement] = STATE(3002), - [sym_break_statement] = STATE(3002), - [sym_continue_statement] = STATE(3002), - [sym_goto_statement] = STATE(3002), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), + [sym_labeled_statement] = STATE(3040), + [sym_expression_statement] = STATE(3040), + [sym_if_statement] = STATE(3040), + [sym_switch_statement] = STATE(3040), + [sym_case_statement] = STATE(3040), + [sym_while_statement] = STATE(3040), + [sym_do_statement] = STATE(3040), + [sym_for_statement] = STATE(3040), + [sym_return_statement] = STATE(3040), + [sym_break_statement] = STATE(3040), + [sym_continue_statement] = STATE(3040), + [sym_goto_statement] = STATE(3040), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3002), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3040), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6469), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_typedef] = ACTIONS(6937), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_typedef] = ACTIONS(7003), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -118183,17 +119622,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -118202,36 +119641,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6939), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(7005), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [2929] = { - [sym_type_qualifier] = STATE(3004), - [sym__type_specifier] = STATE(3003), - [sym_sized_type_specifier] = STATE(3003), - [sym_enum_specifier] = STATE(3003), - [sym_struct_specifier] = STATE(3003), - [sym_union_specifier] = STATE(3003), - [sym_macro_type_specifier] = STATE(3003), - [sym_class_specifier] = STATE(3003), - [sym_dependent_type] = STATE(3003), + [2960] = { + [sym_type_qualifier] = STATE(3042), + [sym__type_specifier] = STATE(3041), + [sym_sized_type_specifier] = STATE(3041), + [sym_enum_specifier] = STATE(3041), + [sym_struct_specifier] = STATE(3041), + [sym_union_specifier] = STATE(3041), + [sym_macro_type_specifier] = STATE(3041), + [sym_class_specifier] = STATE(3041), + [sym_dependent_type] = STATE(3041), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(3004), + [aux_sym_type_definition_repeat1] = STATE(3042), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -118243,20 +119682,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(7058), + [sym_primitive_type] = ACTIONS(7144), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(7058), + [sym_auto] = ACTIONS(7144), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2930] = { + [2961] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -118275,7 +119714,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(6766), + [anon_sym_COLON] = ACTIONS(6820), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -118311,90 +119750,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2931] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [2962] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [2932] = { - [sym__declarator] = STATE(3005), - [sym_pointer_declarator] = STATE(3005), - [sym_function_declarator] = STATE(3005), - [sym_array_declarator] = STATE(3005), - [sym_init_declarator] = STATE(3006), - [sym_reference_declarator] = STATE(3005), + [2963] = { + [sym__declarator] = STATE(3043), + [sym_pointer_declarator] = STATE(3043), + [sym_function_declarator] = STATE(3043), + [sym_array_declarator] = STATE(3043), + [sym_init_declarator] = STATE(3044), + [sym_reference_declarator] = STATE(3043), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(3005), - [sym_destructor_name] = STATE(3005), + [sym_template_function] = STATE(3043), + [sym_destructor_name] = STATE(3043), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -118406,84 +119845,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(7060), + [sym_operator_name] = ACTIONS(7146), }, - [2933] = { + [2964] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7062), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7148), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2934] = { - [anon_sym_LPAREN] = ACTIONS(7064), + [2965] = { + [anon_sym_LPAREN] = ACTIONS(7150), [sym_comment] = ACTIONS(49), }, - [2935] = { - [sym__expression] = STATE(3010), - [sym_conditional_expression] = STATE(3010), - [sym_assignment_expression] = STATE(3010), - [sym_pointer_expression] = STATE(3010), - [sym_logical_expression] = STATE(3010), - [sym_bitwise_expression] = STATE(3010), - [sym_equality_expression] = STATE(3010), - [sym_relational_expression] = STATE(3010), - [sym_shift_expression] = STATE(3010), - [sym_math_expression] = STATE(3010), - [sym_cast_expression] = STATE(3010), - [sym_sizeof_expression] = STATE(3010), - [sym_subscript_expression] = STATE(3010), - [sym_call_expression] = STATE(3010), - [sym_field_expression] = STATE(3010), - [sym_compound_literal_expression] = STATE(3010), - [sym_parenthesized_expression] = STATE(3010), - [sym_concatenated_string] = STATE(3010), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3010), - [sym_new_expression] = STATE(3010), - [sym_delete_expression] = STATE(3010), - [sym_lambda_expression] = STATE(3010), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7066), + [2966] = { + [sym__expression] = STATE(3048), + [sym_conditional_expression] = STATE(3048), + [sym_assignment_expression] = STATE(3048), + [sym_pointer_expression] = STATE(3048), + [sym_logical_expression] = STATE(3048), + [sym_bitwise_expression] = STATE(3048), + [sym_equality_expression] = STATE(3048), + [sym_relational_expression] = STATE(3048), + [sym_shift_expression] = STATE(3048), + [sym_math_expression] = STATE(3048), + [sym_cast_expression] = STATE(3048), + [sym_sizeof_expression] = STATE(3048), + [sym_subscript_expression] = STATE(3048), + [sym_call_expression] = STATE(3048), + [sym_field_expression] = STATE(3048), + [sym_compound_literal_expression] = STATE(3048), + [sym_parenthesized_expression] = STATE(3048), + [sym_concatenated_string] = STATE(3048), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3048), + [sym_new_expression] = STATE(3048), + [sym_delete_expression] = STATE(3048), + [sym_lambda_expression] = STATE(3048), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7152), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7068), + [anon_sym_SEMI] = ACTIONS(7154), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -118494,477 +119933,558 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7066), - [sym_char_literal] = ACTIONS(7066), + [sym_number_literal] = ACTIONS(7152), + [sym_char_literal] = ACTIONS(7152), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7070), - [sym_false] = ACTIONS(7070), - [sym_null] = ACTIONS(7070), + [sym_true] = ACTIONS(7156), + [sym_false] = ACTIONS(7156), + [sym_null] = ACTIONS(7156), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7070), + [sym_nullptr] = ACTIONS(7156), }, - [2936] = { + [2967] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7072), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7158), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2937] = { - [anon_sym_COLON] = ACTIONS(7074), + [2968] = { + [anon_sym_COLON] = ACTIONS(7160), [sym_comment] = ACTIONS(49), }, - [2938] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [2969] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_else] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [2939] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [2970] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_else] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [2940] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [2971] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [2941] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), + [2972] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), }, - [2942] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), + [2973] = { + [sym_compound_statement] = STATE(3051), + [sym_labeled_statement] = STATE(3051), + [sym_expression_statement] = STATE(3051), + [sym_if_statement] = STATE(3051), + [sym_switch_statement] = STATE(3051), + [sym_case_statement] = STATE(3051), + [sym_while_statement] = STATE(3051), + [sym_do_statement] = STATE(3051), + [sym_for_statement] = STATE(3051), + [sym_return_statement] = STATE(3051), + [sym_break_statement] = STATE(3051), + [sym_continue_statement] = STATE(3051), + [sym_goto_statement] = STATE(3051), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(3051), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(2927), }, - [2943] = { - [sym_compound_statement] = STATE(3013), - [sym_labeled_statement] = STATE(3013), - [sym_expression_statement] = STATE(3013), - [sym_if_statement] = STATE(3013), - [sym_switch_statement] = STATE(3013), - [sym_case_statement] = STATE(3013), - [sym_while_statement] = STATE(3013), - [sym_do_statement] = STATE(3013), - [sym_for_statement] = STATE(3013), - [sym_return_statement] = STATE(3013), - [sym_break_statement] = STATE(3013), - [sym_continue_statement] = STATE(3013), - [sym_goto_statement] = STATE(3013), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(3013), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [2974] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), + }, + [2975] = { + [sym_compound_statement] = STATE(3052), + [sym_labeled_statement] = STATE(3052), + [sym_expression_statement] = STATE(3052), + [sym_if_statement] = STATE(3052), + [sym_switch_statement] = STATE(3052), + [sym_case_statement] = STATE(3052), + [sym_while_statement] = STATE(3052), + [sym_do_statement] = STATE(3052), + [sym_for_statement] = STATE(3052), + [sym_return_statement] = STATE(3052), + [sym_break_statement] = STATE(3052), + [sym_continue_statement] = STATE(3052), + [sym_goto_statement] = STATE(3052), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(3052), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -118973,285 +120493,366 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [2944] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7076), + [2976] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7162), [sym_comment] = ACTIONS(49), }, - [2945] = { + [2977] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3015), + [aux_sym_for_statement_repeat1] = STATE(3054), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7076), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7162), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2946] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), + [2978] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), }, - [2947] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_RBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(7078), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [2979] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_RBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(7164), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [2948] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_RBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_else] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), + [2980] = { + [sym_compound_statement] = STATE(3056), + [sym_labeled_statement] = STATE(3056), + [sym_expression_statement] = STATE(3056), + [sym_if_statement] = STATE(3056), + [sym_switch_statement] = STATE(3056), + [sym_case_statement] = STATE(3056), + [sym_while_statement] = STATE(3056), + [sym_do_statement] = STATE(3056), + [sym_for_statement] = STATE(3056), + [sym_return_statement] = STATE(3056), + [sym_break_statement] = STATE(3056), + [sym_continue_statement] = STATE(3056), + [sym_goto_statement] = STATE(3056), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3056), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(5566), }, - [2949] = { + [2981] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_RBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_else] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [2982] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7080), + [anon_sym_SEMI] = ACTIONS(7166), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [2950] = { - [sym__type_declarator] = STATE(3018), + [2983] = { + [sym__type_declarator] = STATE(3058), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -119260,7 +120861,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [2951] = { + [2984] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -119329,182 +120930,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [2952] = { + [2985] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7082), + [anon_sym_SEMI] = ACTIONS(7168), [sym_comment] = ACTIONS(49), }, - [2953] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_RBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_else] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [2986] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_RBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_else] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), }, - [2954] = { + [2987] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7084), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7170), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2955] = { - [sym_compound_statement] = STATE(3021), - [sym_labeled_statement] = STATE(3021), - [sym_expression_statement] = STATE(3021), - [sym_if_statement] = STATE(3021), - [sym_switch_statement] = STATE(3021), - [sym_case_statement] = STATE(3021), - [sym_while_statement] = STATE(3021), - [sym_do_statement] = STATE(3021), - [sym_for_statement] = STATE(3021), - [sym_return_statement] = STATE(3021), - [sym_break_statement] = STATE(3021), - [sym_continue_statement] = STATE(3021), - [sym_goto_statement] = STATE(3021), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3021), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [2988] = { + [sym_compound_statement] = STATE(3061), + [sym_labeled_statement] = STATE(3061), + [sym_expression_statement] = STATE(3061), + [sym_if_statement] = STATE(3061), + [sym_switch_statement] = STATE(3061), + [sym_case_statement] = STATE(3061), + [sym_while_statement] = STATE(3061), + [sym_do_statement] = STATE(3061), + [sym_for_statement] = STATE(3061), + [sym_return_statement] = STATE(3061), + [sym_break_statement] = STATE(3061), + [sym_continue_statement] = STATE(3061), + [sym_goto_statement] = STATE(3061), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3061), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -119513,93 +121114,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [2956] = { + [2989] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3023), + [aux_sym_for_statement_repeat1] = STATE(3063), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7086), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7172), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2957] = { - [sym__expression] = STATE(3024), - [sym_conditional_expression] = STATE(3024), - [sym_assignment_expression] = STATE(3024), - [sym_pointer_expression] = STATE(3024), - [sym_logical_expression] = STATE(3024), - [sym_bitwise_expression] = STATE(3024), - [sym_equality_expression] = STATE(3024), - [sym_relational_expression] = STATE(3024), - [sym_shift_expression] = STATE(3024), - [sym_math_expression] = STATE(3024), - [sym_cast_expression] = STATE(3024), - [sym_sizeof_expression] = STATE(3024), - [sym_subscript_expression] = STATE(3024), - [sym_call_expression] = STATE(3024), - [sym_field_expression] = STATE(3024), - [sym_compound_literal_expression] = STATE(3024), - [sym_parenthesized_expression] = STATE(3024), - [sym_concatenated_string] = STATE(3024), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3024), - [sym_new_expression] = STATE(3024), - [sym_delete_expression] = STATE(3024), - [sym_lambda_expression] = STATE(3024), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7088), + [2990] = { + [sym__expression] = STATE(3064), + [sym_conditional_expression] = STATE(3064), + [sym_assignment_expression] = STATE(3064), + [sym_pointer_expression] = STATE(3064), + [sym_logical_expression] = STATE(3064), + [sym_bitwise_expression] = STATE(3064), + [sym_equality_expression] = STATE(3064), + [sym_relational_expression] = STATE(3064), + [sym_shift_expression] = STATE(3064), + [sym_math_expression] = STATE(3064), + [sym_cast_expression] = STATE(3064), + [sym_sizeof_expression] = STATE(3064), + [sym_subscript_expression] = STATE(3064), + [sym_call_expression] = STATE(3064), + [sym_field_expression] = STATE(3064), + [sym_compound_literal_expression] = STATE(3064), + [sym_parenthesized_expression] = STATE(3064), + [sym_concatenated_string] = STATE(3064), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3064), + [sym_new_expression] = STATE(3064), + [sym_delete_expression] = STATE(3064), + [sym_lambda_expression] = STATE(3064), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7174), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7086), + [anon_sym_RPAREN] = ACTIONS(7172), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -119610,161 +121211,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7088), - [sym_char_literal] = ACTIONS(7088), + [sym_number_literal] = ACTIONS(7174), + [sym_char_literal] = ACTIONS(7174), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7090), - [sym_false] = ACTIONS(7090), - [sym_null] = ACTIONS(7090), + [sym_true] = ACTIONS(7176), + [sym_false] = ACTIONS(7176), + [sym_null] = ACTIONS(7176), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7090), + [sym_nullptr] = ACTIONS(7176), }, - [2958] = { + [2991] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7092), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7178), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2959] = { + [2992] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7094), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7180), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2960] = { - [sym_compound_statement] = STATE(3027), - [sym_labeled_statement] = STATE(3027), - [sym_expression_statement] = STATE(3027), - [sym_if_statement] = STATE(3027), - [sym_switch_statement] = STATE(3027), - [sym_case_statement] = STATE(3027), - [sym_while_statement] = STATE(3027), - [sym_do_statement] = STATE(3027), - [sym_for_statement] = STATE(3027), - [sym_return_statement] = STATE(3027), - [sym_break_statement] = STATE(3027), - [sym_continue_statement] = STATE(3027), - [sym_goto_statement] = STATE(3027), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(3027), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2993] = { + [sym_compound_statement] = STATE(3067), + [sym_labeled_statement] = STATE(3067), + [sym_expression_statement] = STATE(3067), + [sym_if_statement] = STATE(3067), + [sym_switch_statement] = STATE(3067), + [sym_case_statement] = STATE(3067), + [sym_while_statement] = STATE(3067), + [sym_do_statement] = STATE(3067), + [sym_for_statement] = STATE(3067), + [sym_return_statement] = STATE(3067), + [sym_break_statement] = STATE(3067), + [sym_continue_statement] = STATE(3067), + [sym_goto_statement] = STATE(3067), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3067), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -119773,79 +121374,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2961] = { - [sym_compound_statement] = STATE(2612), - [sym_labeled_statement] = STATE(2612), - [sym_expression_statement] = STATE(2612), - [sym_if_statement] = STATE(2612), - [sym_switch_statement] = STATE(2612), - [sym_case_statement] = STATE(2612), - [sym_while_statement] = STATE(2612), - [sym_do_statement] = STATE(2612), - [sym_for_statement] = STATE(2612), - [sym_return_statement] = STATE(2612), - [sym_break_statement] = STATE(2612), - [sym_continue_statement] = STATE(2612), - [sym_goto_statement] = STATE(2612), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2612), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2994] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(7182), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [2995] = { + [sym_compound_statement] = STATE(2627), + [sym_labeled_statement] = STATE(2627), + [sym_expression_statement] = STATE(2627), + [sym_if_statement] = STATE(2627), + [sym_switch_statement] = STATE(2627), + [sym_case_statement] = STATE(2627), + [sym_while_statement] = STATE(2627), + [sym_do_statement] = STATE(2627), + [sym_for_statement] = STATE(2627), + [sym_return_statement] = STATE(2627), + [sym_break_statement] = STATE(2627), + [sym_continue_statement] = STATE(2627), + [sym_goto_statement] = STATE(2627), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2627), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -119854,79 +121496,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2962] = { - [sym_compound_statement] = STATE(2617), - [sym_labeled_statement] = STATE(2617), - [sym_expression_statement] = STATE(2617), - [sym_if_statement] = STATE(2617), - [sym_switch_statement] = STATE(2617), - [sym_case_statement] = STATE(2617), - [sym_while_statement] = STATE(2617), - [sym_do_statement] = STATE(2617), - [sym_for_statement] = STATE(2617), - [sym_return_statement] = STATE(2617), - [sym_break_statement] = STATE(2617), - [sym_continue_statement] = STATE(2617), - [sym_goto_statement] = STATE(2617), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2617), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [2996] = { + [sym_compound_statement] = STATE(2632), + [sym_labeled_statement] = STATE(2632), + [sym_expression_statement] = STATE(2632), + [sym_if_statement] = STATE(2632), + [sym_switch_statement] = STATE(2632), + [sym_case_statement] = STATE(2632), + [sym_while_statement] = STATE(2632), + [sym_do_statement] = STATE(2632), + [sym_for_statement] = STATE(2632), + [sym_return_statement] = STATE(2632), + [sym_break_statement] = STATE(2632), + [sym_continue_statement] = STATE(2632), + [sym_goto_statement] = STATE(2632), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2632), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -119935,50 +121577,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2963] = { - [sym__expression] = STATE(3029), - [sym_conditional_expression] = STATE(3029), - [sym_assignment_expression] = STATE(3029), - [sym_pointer_expression] = STATE(3029), - [sym_logical_expression] = STATE(3029), - [sym_bitwise_expression] = STATE(3029), - [sym_equality_expression] = STATE(3029), - [sym_relational_expression] = STATE(3029), - [sym_shift_expression] = STATE(3029), - [sym_math_expression] = STATE(3029), - [sym_cast_expression] = STATE(3029), - [sym_sizeof_expression] = STATE(3029), - [sym_subscript_expression] = STATE(3029), - [sym_call_expression] = STATE(3029), - [sym_field_expression] = STATE(3029), - [sym_compound_literal_expression] = STATE(3029), - [sym_parenthesized_expression] = STATE(3029), - [sym_concatenated_string] = STATE(3029), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3029), - [sym_new_expression] = STATE(3029), - [sym_delete_expression] = STATE(3029), - [sym_lambda_expression] = STATE(3029), + [2997] = { + [sym__expression] = STATE(3070), + [sym_conditional_expression] = STATE(3070), + [sym_assignment_expression] = STATE(3070), + [sym_pointer_expression] = STATE(3070), + [sym_logical_expression] = STATE(3070), + [sym_bitwise_expression] = STATE(3070), + [sym_equality_expression] = STATE(3070), + [sym_relational_expression] = STATE(3070), + [sym_shift_expression] = STATE(3070), + [sym_math_expression] = STATE(3070), + [sym_cast_expression] = STATE(3070), + [sym_sizeof_expression] = STATE(3070), + [sym_subscript_expression] = STATE(3070), + [sym_call_expression] = STATE(3070), + [sym_field_expression] = STATE(3070), + [sym_compound_literal_expression] = STATE(3070), + [sym_parenthesized_expression] = STATE(3070), + [sym_concatenated_string] = STATE(3070), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3070), + [sym_new_expression] = STATE(3070), + [sym_delete_expression] = STATE(3070), + [sym_lambda_expression] = STATE(3070), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7096), + [sym_raw_string_literal] = ACTIONS(7184), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7098), + [anon_sym_RPAREN] = ACTIONS(7186), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -119989,91 +121631,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7096), - [sym_char_literal] = ACTIONS(7096), + [sym_number_literal] = ACTIONS(7184), + [sym_char_literal] = ACTIONS(7184), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7100), - [sym_false] = ACTIONS(7100), - [sym_null] = ACTIONS(7100), + [sym_true] = ACTIONS(7188), + [sym_false] = ACTIONS(7188), + [sym_null] = ACTIONS(7188), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7100), + [sym_nullptr] = ACTIONS(7188), }, - [2964] = { + [2998] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7102), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7190), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2965] = { - [sym__expression] = STATE(3031), - [sym_conditional_expression] = STATE(3031), - [sym_assignment_expression] = STATE(3031), - [sym_pointer_expression] = STATE(3031), - [sym_logical_expression] = STATE(3031), - [sym_bitwise_expression] = STATE(3031), - [sym_equality_expression] = STATE(3031), - [sym_relational_expression] = STATE(3031), - [sym_shift_expression] = STATE(3031), - [sym_math_expression] = STATE(3031), - [sym_cast_expression] = STATE(3031), - [sym_sizeof_expression] = STATE(3031), - [sym_subscript_expression] = STATE(3031), - [sym_call_expression] = STATE(3031), - [sym_field_expression] = STATE(3031), - [sym_compound_literal_expression] = STATE(3031), - [sym_parenthesized_expression] = STATE(3031), - [sym_concatenated_string] = STATE(3031), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3031), - [sym_new_expression] = STATE(3031), - [sym_delete_expression] = STATE(3031), - [sym_lambda_expression] = STATE(3031), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7104), + [2999] = { + [sym__expression] = STATE(3072), + [sym_conditional_expression] = STATE(3072), + [sym_assignment_expression] = STATE(3072), + [sym_pointer_expression] = STATE(3072), + [sym_logical_expression] = STATE(3072), + [sym_bitwise_expression] = STATE(3072), + [sym_equality_expression] = STATE(3072), + [sym_relational_expression] = STATE(3072), + [sym_shift_expression] = STATE(3072), + [sym_math_expression] = STATE(3072), + [sym_cast_expression] = STATE(3072), + [sym_sizeof_expression] = STATE(3072), + [sym_subscript_expression] = STATE(3072), + [sym_call_expression] = STATE(3072), + [sym_field_expression] = STATE(3072), + [sym_compound_literal_expression] = STATE(3072), + [sym_parenthesized_expression] = STATE(3072), + [sym_concatenated_string] = STATE(3072), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3072), + [sym_new_expression] = STATE(3072), + [sym_delete_expression] = STATE(3072), + [sym_lambda_expression] = STATE(3072), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7192), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7102), + [anon_sym_SEMI] = ACTIONS(7190), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -120084,137 +121726,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7104), - [sym_char_literal] = ACTIONS(7104), + [sym_number_literal] = ACTIONS(7192), + [sym_char_literal] = ACTIONS(7192), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7106), - [sym_false] = ACTIONS(7106), - [sym_null] = ACTIONS(7106), + [sym_true] = ACTIONS(7194), + [sym_false] = ACTIONS(7194), + [sym_null] = ACTIONS(7194), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7106), + [sym_nullptr] = ACTIONS(7194), }, - [2966] = { - [sym__expression] = STATE(3032), - [sym_conditional_expression] = STATE(3032), - [sym_assignment_expression] = STATE(3032), - [sym_pointer_expression] = STATE(3032), - [sym_logical_expression] = STATE(3032), - [sym_bitwise_expression] = STATE(3032), - [sym_equality_expression] = STATE(3032), - [sym_relational_expression] = STATE(3032), - [sym_shift_expression] = STATE(3032), - [sym_math_expression] = STATE(3032), - [sym_cast_expression] = STATE(3032), - [sym_sizeof_expression] = STATE(3032), - [sym_subscript_expression] = STATE(3032), - [sym_call_expression] = STATE(3032), - [sym_field_expression] = STATE(3032), - [sym_compound_literal_expression] = STATE(3032), - [sym_parenthesized_expression] = STATE(3032), - [sym_concatenated_string] = STATE(3032), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3032), - [sym_new_expression] = STATE(3032), - [sym_delete_expression] = STATE(3032), - [sym_lambda_expression] = STATE(3032), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7108), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7108), - [sym_char_literal] = ACTIONS(7108), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7110), - [sym_false] = ACTIONS(7110), - [sym_null] = ACTIONS(7110), + [3000] = { + [sym__expression] = STATE(3073), + [sym_conditional_expression] = STATE(3073), + [sym_assignment_expression] = STATE(3073), + [sym_pointer_expression] = STATE(3073), + [sym_logical_expression] = STATE(3073), + [sym_bitwise_expression] = STATE(3073), + [sym_equality_expression] = STATE(3073), + [sym_relational_expression] = STATE(3073), + [sym_shift_expression] = STATE(3073), + [sym_math_expression] = STATE(3073), + [sym_cast_expression] = STATE(3073), + [sym_sizeof_expression] = STATE(3073), + [sym_subscript_expression] = STATE(3073), + [sym_call_expression] = STATE(3073), + [sym_field_expression] = STATE(3073), + [sym_compound_literal_expression] = STATE(3073), + [sym_parenthesized_expression] = STATE(3073), + [sym_concatenated_string] = STATE(3073), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3073), + [sym_new_expression] = STATE(3073), + [sym_delete_expression] = STATE(3073), + [sym_lambda_expression] = STATE(3073), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7196), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7196), + [sym_char_literal] = ACTIONS(7196), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7198), + [sym_false] = ACTIONS(7198), + [sym_null] = ACTIONS(7198), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7110), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7198), }, - [2967] = { - [anon_sym_else] = ACTIONS(7005), - [anon_sym_while] = ACTIONS(7005), + [3001] = { + [anon_sym_else] = ACTIONS(7057), + [anon_sym_while] = ACTIONS(7057), [sym_comment] = ACTIONS(49), }, - [2968] = { - [sym_compound_statement] = STATE(3033), - [sym_labeled_statement] = STATE(3033), - [sym_expression_statement] = STATE(3033), - [sym_if_statement] = STATE(3033), - [sym_switch_statement] = STATE(3033), - [sym_case_statement] = STATE(3033), - [sym_while_statement] = STATE(3033), - [sym_do_statement] = STATE(3033), - [sym_for_statement] = STATE(3033), - [sym_return_statement] = STATE(3033), - [sym_break_statement] = STATE(3033), - [sym_continue_statement] = STATE(3033), - [sym_goto_statement] = STATE(3033), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(3033), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3002] = { + [anon_sym_else] = ACTIONS(7083), + [anon_sym_while] = ACTIONS(7083), + [sym_comment] = ACTIONS(49), + }, + [3003] = { + [sym_compound_statement] = STATE(3074), + [sym_labeled_statement] = STATE(3074), + [sym_expression_statement] = STATE(3074), + [sym_if_statement] = STATE(3074), + [sym_switch_statement] = STATE(3074), + [sym_case_statement] = STATE(3074), + [sym_while_statement] = STATE(3074), + [sym_do_statement] = STATE(3074), + [sym_for_statement] = STATE(3074), + [sym_return_statement] = STATE(3074), + [sym_break_statement] = STATE(3074), + [sym_continue_statement] = STATE(3074), + [sym_goto_statement] = STATE(3074), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3074), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -120223,165 +121870,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [2969] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7112), + [3004] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7200), [sym_comment] = ACTIONS(49), }, - [2970] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_RBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), + [3005] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), }, - [2971] = { - [sym_parameter_list] = STATE(2973), + [3006] = { + [sym_parameter_list] = STATE(3008), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3744), - [anon_sym_SEMI] = ACTIONS(3744), - [anon_sym_LBRACE] = ACTIONS(3744), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3744), - [anon_sym_const] = ACTIONS(5269), - [anon_sym_restrict] = ACTIONS(3744), - [anon_sym_volatile] = ACTIONS(3744), - [anon_sym__Atomic] = ACTIONS(3744), - [anon_sym_mutable] = ACTIONS(3744), - [anon_sym_explicit] = ACTIONS(3744), - [anon_sym_constexpr] = ACTIONS(3744), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_DASH_GT] = ACTIONS(3744), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3744), + [anon_sym_COMMA] = ACTIONS(3750), + [anon_sym_SEMI] = ACTIONS(3750), + [anon_sym_LBRACE] = ACTIONS(3750), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3750), + [anon_sym_const] = ACTIONS(5283), + [anon_sym_restrict] = ACTIONS(3750), + [anon_sym_volatile] = ACTIONS(3750), + [anon_sym__Atomic] = ACTIONS(3750), + [anon_sym_mutable] = ACTIONS(3750), + [anon_sym_explicit] = ACTIONS(3750), + [anon_sym_constexpr] = ACTIONS(3750), + [anon_sym_COLON] = ACTIONS(3750), + [anon_sym_DASH_GT] = ACTIONS(3750), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3750), }, - [2972] = { - [sym_parameter_list] = STATE(2973), + [3007] = { + [sym_parameter_list] = STATE(3008), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_COMMA] = ACTIONS(3756), - [anon_sym_SEMI] = ACTIONS(3756), - [anon_sym_LBRACE] = ACTIONS(3756), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_EQ] = ACTIONS(3756), - [anon_sym_const] = ACTIONS(5271), - [anon_sym_restrict] = ACTIONS(3756), - [anon_sym_volatile] = ACTIONS(3756), - [anon_sym__Atomic] = ACTIONS(3756), - [anon_sym_mutable] = ACTIONS(3756), - [anon_sym_explicit] = ACTIONS(3756), - [anon_sym_constexpr] = ACTIONS(3756), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_DASH_GT] = ACTIONS(3756), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3756), + [anon_sym_COMMA] = ACTIONS(3762), + [anon_sym_SEMI] = ACTIONS(3762), + [anon_sym_LBRACE] = ACTIONS(3762), + [anon_sym_LBRACK] = ACTIONS(2282), + [anon_sym_EQ] = ACTIONS(3762), + [anon_sym_const] = ACTIONS(5285), + [anon_sym_restrict] = ACTIONS(3762), + [anon_sym_volatile] = ACTIONS(3762), + [anon_sym__Atomic] = ACTIONS(3762), + [anon_sym_mutable] = ACTIONS(3762), + [anon_sym_explicit] = ACTIONS(3762), + [anon_sym_constexpr] = ACTIONS(3762), + [anon_sym_COLON] = ACTIONS(3762), + [anon_sym_DASH_GT] = ACTIONS(3762), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3762), }, - [2973] = { - [sym_type_qualifier] = STATE(3035), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3035), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), - [anon_sym_const] = ACTIONS(3764), - [anon_sym_restrict] = ACTIONS(3758), - [anon_sym_volatile] = ACTIONS(3758), - [anon_sym__Atomic] = ACTIONS(3758), - [anon_sym_mutable] = ACTIONS(3758), - [anon_sym_explicit] = ACTIONS(3758), - [anon_sym_constexpr] = ACTIONS(3758), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(3758), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(3758), + [3008] = { + [sym_type_qualifier] = STATE(3076), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3076), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), + [anon_sym_const] = ACTIONS(3770), + [anon_sym_restrict] = ACTIONS(3764), + [anon_sym_volatile] = ACTIONS(3764), + [anon_sym__Atomic] = ACTIONS(3764), + [anon_sym_mutable] = ACTIONS(3764), + [anon_sym_explicit] = ACTIONS(3764), + [anon_sym_constexpr] = ACTIONS(3764), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(3764), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(3764), }, - [2974] = { - [sym_type_qualifier] = STATE(3036), - [sym_trailing_return_type] = STATE(1710), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3036), - [anon_sym_LPAREN] = ACTIONS(3758), - [anon_sym_COMMA] = ACTIONS(3758), - [anon_sym_SEMI] = ACTIONS(3758), - [anon_sym_LBRACE] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3758), - [anon_sym_EQ] = ACTIONS(3758), + [3009] = { + [sym_type_qualifier] = STATE(3077), + [sym_trailing_return_type] = STATE(1713), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3077), + [anon_sym_LPAREN] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(3764), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -120389,25 +122036,25 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(3758), - [anon_sym_DASH_GT] = ACTIONS(6313), + [anon_sym_COLON] = ACTIONS(3764), + [anon_sym_DASH_GT] = ACTIONS(6347), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7118), + [sym_noexcept] = ACTIONS(7206), }, - [2975] = { - [sym_compound_statement] = STATE(3037), - [sym_labeled_statement] = STATE(3037), - [sym_expression_statement] = STATE(3037), - [sym_if_statement] = STATE(3037), - [sym_switch_statement] = STATE(3037), - [sym_case_statement] = STATE(3037), - [sym_while_statement] = STATE(3037), - [sym_do_statement] = STATE(3037), - [sym_for_statement] = STATE(3037), - [sym_return_statement] = STATE(3037), - [sym_break_statement] = STATE(3037), - [sym_continue_statement] = STATE(3037), - [sym_goto_statement] = STATE(3037), + [3010] = { + [sym_compound_statement] = STATE(3078), + [sym_labeled_statement] = STATE(3078), + [sym_expression_statement] = STATE(3078), + [sym_if_statement] = STATE(3078), + [sym_switch_statement] = STATE(3078), + [sym_case_statement] = STATE(3078), + [sym_while_statement] = STATE(3078), + [sym_do_statement] = STATE(3078), + [sym_for_statement] = STATE(3078), + [sym_return_statement] = STATE(3078), + [sym_break_statement] = STATE(3078), + [sym_continue_statement] = STATE(3078), + [sym_goto_statement] = STATE(3078), [sym__expression] = STATE(413), [sym_comma_expression] = STATE(414), [sym_conditional_expression] = STATE(413), @@ -120429,7 +122076,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_concatenated_string] = STATE(413), [sym_template_type] = STATE(586), [sym_template_function] = STATE(413), - [sym_for_range_loop] = STATE(3037), + [sym_for_range_loop] = STATE(3078), [sym_new_expression] = STATE(413), [sym_delete_expression] = STATE(413), [sym_lambda_expression] = STATE(413), @@ -120468,21 +122115,21 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(680), [sym_false] = ACTIONS(680), [sym_null] = ACTIONS(680), - [sym_identifier] = ACTIONS(3104), + [sym_identifier] = ACTIONS(3110), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), [sym_nullptr] = ACTIONS(680), }, - [2976] = { - [sym_type_qualifier] = STATE(2977), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2977), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), + [3011] = { + [sym_type_qualifier] = STATE(3012), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3012), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -120490,186 +122137,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(5737), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(5761), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7014), + [sym_noexcept] = ACTIONS(7092), }, - [2977] = { - [sym_type_qualifier] = STATE(2977), - [aux_sym_abstract_function_declarator_repeat1] = STATE(2977), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7120), + [3012] = { + [sym_type_qualifier] = STATE(3012), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3012), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(7208), }, - [2978] = { - [sym_raw_string_literal] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3176), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3178), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3178), - [sym_preproc_directive] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_typedef] = ACTIONS(3178), - [anon_sym_extern] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_STAR] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_register] = ACTIONS(3178), - [anon_sym_inline] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_restrict] = ACTIONS(3178), - [anon_sym_volatile] = ACTIONS(3178), - [anon_sym__Atomic] = ACTIONS(3178), - [anon_sym_mutable] = ACTIONS(3178), - [anon_sym_explicit] = ACTIONS(3178), - [anon_sym_constexpr] = ACTIONS(3178), - [anon_sym_unsigned] = ACTIONS(3178), - [anon_sym_long] = ACTIONS(3178), - [anon_sym_short] = ACTIONS(3178), - [sym_primitive_type] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [anon_sym_struct] = ACTIONS(3178), - [anon_sym_union] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_goto] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_sizeof] = ACTIONS(3178), - [sym_number_literal] = ACTIONS(3176), - [sym_char_literal] = ACTIONS(3176), - [sym_string_literal] = ACTIONS(3176), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3178), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3178), - [sym_auto] = ACTIONS(3178), - [anon_sym_typename] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3178), - [sym_nullptr] = ACTIONS(3178), + [3013] = { + [sym_raw_string_literal] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3182), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3184), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3184), + [sym_preproc_directive] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_typedef] = ACTIONS(3184), + [anon_sym_extern] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_STAR] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_register] = ACTIONS(3184), + [anon_sym_inline] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_restrict] = ACTIONS(3184), + [anon_sym_volatile] = ACTIONS(3184), + [anon_sym__Atomic] = ACTIONS(3184), + [anon_sym_mutable] = ACTIONS(3184), + [anon_sym_explicit] = ACTIONS(3184), + [anon_sym_constexpr] = ACTIONS(3184), + [anon_sym_unsigned] = ACTIONS(3184), + [anon_sym_long] = ACTIONS(3184), + [anon_sym_short] = ACTIONS(3184), + [sym_primitive_type] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), + [anon_sym_struct] = ACTIONS(3184), + [anon_sym_union] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_goto] = ACTIONS(3184), + [anon_sym_AMP] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_sizeof] = ACTIONS(3184), + [sym_number_literal] = ACTIONS(3182), + [sym_char_literal] = ACTIONS(3182), + [sym_string_literal] = ACTIONS(3182), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3184), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3184), + [sym_auto] = ACTIONS(3184), + [anon_sym_typename] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_COLON_COLON] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3184), + [sym_nullptr] = ACTIONS(3184), }, - [2979] = { + [3014] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7123), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7211), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2980] = { + [3015] = { + [sym__expression] = STATE(3080), + [sym_conditional_expression] = STATE(3080), + [sym_assignment_expression] = STATE(3080), + [sym_pointer_expression] = STATE(3080), + [sym_logical_expression] = STATE(3080), + [sym_bitwise_expression] = STATE(3080), + [sym_equality_expression] = STATE(3080), + [sym_relational_expression] = STATE(3080), + [sym_shift_expression] = STATE(3080), + [sym_math_expression] = STATE(3080), + [sym_cast_expression] = STATE(3080), + [sym_sizeof_expression] = STATE(3080), + [sym_subscript_expression] = STATE(3080), + [sym_call_expression] = STATE(3080), + [sym_field_expression] = STATE(3080), + [sym_compound_literal_expression] = STATE(3080), + [sym_parenthesized_expression] = STATE(3080), + [sym_concatenated_string] = STATE(3080), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3080), + [sym_new_expression] = STATE(3080), + [sym_delete_expression] = STATE(3080), + [sym_lambda_expression] = STATE(3080), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7213), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7213), + [sym_char_literal] = ACTIONS(7213), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7215), + [sym_false] = ACTIONS(7215), + [sym_null] = ACTIONS(7215), + [sym_identifier] = ACTIONS(1105), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7215), + }, + [3016] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7125), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7217), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2981] = { - [sym_declaration] = STATE(3040), - [sym_type_definition] = STATE(3040), - [sym__declaration_specifiers] = STATE(2985), - [sym_compound_statement] = STATE(3040), + [3017] = { + [sym_declaration] = STATE(3082), + [sym_type_definition] = STATE(3082), + [sym__declaration_specifiers] = STATE(3021), + [sym_compound_statement] = STATE(3082), [sym_storage_class_specifier] = STATE(109), [sym_type_qualifier] = STATE(109), [sym__type_specifier] = STATE(105), @@ -120677,58 +122377,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_enum_specifier] = STATE(105), [sym_struct_specifier] = STATE(105), [sym_union_specifier] = STATE(105), - [sym_labeled_statement] = STATE(3040), - [sym_expression_statement] = STATE(3040), - [sym_if_statement] = STATE(3040), - [sym_switch_statement] = STATE(3040), - [sym_case_statement] = STATE(3040), - [sym_while_statement] = STATE(3040), - [sym_do_statement] = STATE(3040), - [sym_for_statement] = STATE(3040), - [sym_return_statement] = STATE(3040), - [sym_break_statement] = STATE(3040), - [sym_continue_statement] = STATE(3040), - [sym_goto_statement] = STATE(3040), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), + [sym_labeled_statement] = STATE(3082), + [sym_expression_statement] = STATE(3082), + [sym_if_statement] = STATE(3082), + [sym_switch_statement] = STATE(3082), + [sym_case_statement] = STATE(3082), + [sym_while_statement] = STATE(3082), + [sym_do_statement] = STATE(3082), + [sym_for_statement] = STATE(3082), + [sym_return_statement] = STATE(3082), + [sym_break_statement] = STATE(3082), + [sym_continue_statement] = STATE(3082), + [sym_goto_statement] = STATE(3082), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), [sym_macro_type_specifier] = STATE(105), [sym_class_specifier] = STATE(105), [sym_dependent_type] = STATE(105), - [sym_template_type] = STATE(1473), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3040), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), + [sym_template_type] = STATE(1475), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3082), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(416), - [sym_scoped_namespace_identifier] = STATE(1474), + [sym_scoped_namespace_identifier] = STATE(1476), [aux_sym__declaration_specifiers_repeat1] = STATE(109), [aux_sym_sized_type_specifier_repeat1] = STATE(110), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_typedef] = ACTIONS(7028), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_typedef] = ACTIONS(7108), [anon_sym_extern] = ACTIONS(154), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_static] = ACTIONS(154), @@ -120748,17 +122448,17 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(35), [anon_sym_struct] = ACTIONS(37), [anon_sym_union] = ACTIONS(39), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -120767,36 +122467,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(7030), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(7110), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(51), [sym_auto] = ACTIONS(162), [anon_sym_typename] = ACTIONS(172), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(3036), + [anon_sym_COLON_COLON] = ACTIONS(3040), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [2982] = { - [sym_type_qualifier] = STATE(3042), - [sym__type_specifier] = STATE(3041), - [sym_sized_type_specifier] = STATE(3041), - [sym_enum_specifier] = STATE(3041), - [sym_struct_specifier] = STATE(3041), - [sym_union_specifier] = STATE(3041), - [sym_macro_type_specifier] = STATE(3041), - [sym_class_specifier] = STATE(3041), - [sym_dependent_type] = STATE(3041), + [3018] = { + [sym_type_qualifier] = STATE(3084), + [sym__type_specifier] = STATE(3083), + [sym_sized_type_specifier] = STATE(3083), + [sym_enum_specifier] = STATE(3083), + [sym_struct_specifier] = STATE(3083), + [sym_union_specifier] = STATE(3083), + [sym_macro_type_specifier] = STATE(3083), + [sym_class_specifier] = STATE(3083), + [sym_dependent_type] = STATE(3083), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), - [aux_sym_type_definition_repeat1] = STATE(3042), + [aux_sym_type_definition_repeat1] = STATE(3084), [aux_sym_sized_type_specifier_repeat1] = STATE(66), [anon_sym_const] = ACTIONS(93), [anon_sym_restrict] = ACTIONS(93), @@ -120808,20 +122508,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(7127), + [sym_primitive_type] = ACTIONS(7219), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(7127), + [sym_auto] = ACTIONS(7219), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [2983] = { + [3019] = { [sym_initializer_list] = STATE(765), - [sym_template_argument_list] = STATE(2034), + [sym_template_argument_list] = STATE(2039), [anon_sym_LPAREN] = ACTIONS(1483), [anon_sym_COMMA] = ACTIONS(1477), [anon_sym_SEMI] = ACTIONS(1477), @@ -120840,7 +122540,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(144), [anon_sym_explicit] = ACTIONS(144), [anon_sym_constexpr] = ACTIONS(144), - [anon_sym_COLON] = ACTIONS(6907), + [anon_sym_COLON] = ACTIONS(6971), [anon_sym_QMARK] = ACTIONS(1477), [anon_sym_STAR_EQ] = ACTIONS(1477), [anon_sym_SLASH_EQ] = ACTIONS(1477), @@ -120876,88 +122576,88 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1477), [sym_identifier] = ACTIONS(144), [sym_comment] = ACTIONS(49), - [anon_sym_COLON_COLON] = ACTIONS(4619), + [anon_sym_COLON_COLON] = ACTIONS(4631), [sym_operator_name] = ACTIONS(142), }, - [2984] = { - [sym_raw_string_literal] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4625), - [anon_sym_LPAREN] = ACTIONS(4623), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4625), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4625), - [sym_preproc_directive] = ACTIONS(4625), - [anon_sym_SEMI] = ACTIONS(4623), - [anon_sym_typedef] = ACTIONS(4625), - [anon_sym_extern] = ACTIONS(4625), - [anon_sym_LBRACE] = ACTIONS(4623), - [anon_sym_STAR] = ACTIONS(4623), - [anon_sym_LBRACK] = ACTIONS(4623), - [anon_sym_static] = ACTIONS(4625), - [anon_sym_register] = ACTIONS(4625), - [anon_sym_inline] = ACTIONS(4625), - [anon_sym_const] = ACTIONS(4625), - [anon_sym_restrict] = ACTIONS(4625), - [anon_sym_volatile] = ACTIONS(4625), - [anon_sym__Atomic] = ACTIONS(4625), - [anon_sym_mutable] = ACTIONS(4625), - [anon_sym_explicit] = ACTIONS(4625), - [anon_sym_constexpr] = ACTIONS(4625), - [anon_sym_unsigned] = ACTIONS(4625), - [anon_sym_long] = ACTIONS(4625), - [anon_sym_short] = ACTIONS(4625), - [sym_primitive_type] = ACTIONS(4625), - [anon_sym_enum] = ACTIONS(4625), - [anon_sym_struct] = ACTIONS(4625), - [anon_sym_union] = ACTIONS(4625), - [anon_sym_if] = ACTIONS(4625), - [anon_sym_else] = ACTIONS(4625), - [anon_sym_switch] = ACTIONS(4625), - [anon_sym_case] = ACTIONS(4625), - [anon_sym_default] = ACTIONS(4625), - [anon_sym_while] = ACTIONS(4625), - [anon_sym_do] = ACTIONS(4625), - [anon_sym_for] = ACTIONS(4625), - [anon_sym_return] = ACTIONS(4625), - [anon_sym_break] = ACTIONS(4625), - [anon_sym_continue] = ACTIONS(4625), - [anon_sym_goto] = ACTIONS(4625), - [anon_sym_AMP] = ACTIONS(4623), - [anon_sym_BANG] = ACTIONS(4623), - [anon_sym_TILDE] = ACTIONS(4623), - [anon_sym_PLUS] = ACTIONS(4625), - [anon_sym_DASH] = ACTIONS(4625), - [anon_sym_DASH_DASH] = ACTIONS(4623), - [anon_sym_PLUS_PLUS] = ACTIONS(4623), - [anon_sym_sizeof] = ACTIONS(4625), - [sym_number_literal] = ACTIONS(4623), - [sym_char_literal] = ACTIONS(4623), - [sym_string_literal] = ACTIONS(4623), - [sym_true] = ACTIONS(4625), - [sym_false] = ACTIONS(4625), - [sym_null] = ACTIONS(4625), - [sym_identifier] = ACTIONS(4625), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4625), - [sym_auto] = ACTIONS(4625), - [anon_sym_typename] = ACTIONS(4625), - [anon_sym_new] = ACTIONS(4625), - [anon_sym_COLON_COLON] = ACTIONS(4623), - [anon_sym_delete] = ACTIONS(4625), - [sym_nullptr] = ACTIONS(4625), + [3020] = { + [sym_raw_string_literal] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4637), + [anon_sym_LPAREN] = ACTIONS(4635), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4637), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4637), + [sym_preproc_directive] = ACTIONS(4637), + [anon_sym_SEMI] = ACTIONS(4635), + [anon_sym_typedef] = ACTIONS(4637), + [anon_sym_extern] = ACTIONS(4637), + [anon_sym_LBRACE] = ACTIONS(4635), + [anon_sym_STAR] = ACTIONS(4635), + [anon_sym_LBRACK] = ACTIONS(4635), + [anon_sym_static] = ACTIONS(4637), + [anon_sym_register] = ACTIONS(4637), + [anon_sym_inline] = ACTIONS(4637), + [anon_sym_const] = ACTIONS(4637), + [anon_sym_restrict] = ACTIONS(4637), + [anon_sym_volatile] = ACTIONS(4637), + [anon_sym__Atomic] = ACTIONS(4637), + [anon_sym_mutable] = ACTIONS(4637), + [anon_sym_explicit] = ACTIONS(4637), + [anon_sym_constexpr] = ACTIONS(4637), + [anon_sym_unsigned] = ACTIONS(4637), + [anon_sym_long] = ACTIONS(4637), + [anon_sym_short] = ACTIONS(4637), + [sym_primitive_type] = ACTIONS(4637), + [anon_sym_enum] = ACTIONS(4637), + [anon_sym_struct] = ACTIONS(4637), + [anon_sym_union] = ACTIONS(4637), + [anon_sym_if] = ACTIONS(4637), + [anon_sym_else] = ACTIONS(4637), + [anon_sym_switch] = ACTIONS(4637), + [anon_sym_case] = ACTIONS(4637), + [anon_sym_default] = ACTIONS(4637), + [anon_sym_while] = ACTIONS(4637), + [anon_sym_do] = ACTIONS(4637), + [anon_sym_for] = ACTIONS(4637), + [anon_sym_return] = ACTIONS(4637), + [anon_sym_break] = ACTIONS(4637), + [anon_sym_continue] = ACTIONS(4637), + [anon_sym_goto] = ACTIONS(4637), + [anon_sym_AMP] = ACTIONS(4635), + [anon_sym_BANG] = ACTIONS(4635), + [anon_sym_TILDE] = ACTIONS(4635), + [anon_sym_PLUS] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DASH_DASH] = ACTIONS(4635), + [anon_sym_PLUS_PLUS] = ACTIONS(4635), + [anon_sym_sizeof] = ACTIONS(4637), + [sym_number_literal] = ACTIONS(4635), + [sym_char_literal] = ACTIONS(4635), + [sym_string_literal] = ACTIONS(4635), + [sym_true] = ACTIONS(4637), + [sym_false] = ACTIONS(4637), + [sym_null] = ACTIONS(4637), + [sym_identifier] = ACTIONS(4637), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4637), + [sym_auto] = ACTIONS(4637), + [anon_sym_typename] = ACTIONS(4637), + [anon_sym_new] = ACTIONS(4637), + [anon_sym_COLON_COLON] = ACTIONS(4635), + [anon_sym_delete] = ACTIONS(4637), + [sym_nullptr] = ACTIONS(4637), }, - [2985] = { - [sym__declarator] = STATE(3043), - [sym_pointer_declarator] = STATE(3043), - [sym_function_declarator] = STATE(3043), - [sym_array_declarator] = STATE(3043), - [sym_init_declarator] = STATE(3044), - [sym_reference_declarator] = STATE(3043), + [3021] = { + [sym__declarator] = STATE(3085), + [sym_pointer_declarator] = STATE(3085), + [sym_function_declarator] = STATE(3085), + [sym_array_declarator] = STATE(3085), + [sym_init_declarator] = STATE(3086), + [sym_reference_declarator] = STATE(3085), [sym_template_type] = STATE(46), - [sym_template_function] = STATE(3043), - [sym_destructor_name] = STATE(3043), + [sym_template_function] = STATE(3085), + [sym_destructor_name] = STATE(3085), [sym_scoped_identifier] = STATE(33), [sym_scoped_type_identifier] = STATE(47), [sym_scoped_namespace_identifier] = STATE(46), @@ -120969,84 +122669,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(75), [sym_comment] = ACTIONS(49), [anon_sym_COLON_COLON] = ACTIONS(77), - [sym_operator_name] = ACTIONS(7129), + [sym_operator_name] = ACTIONS(7221), }, - [2986] = { + [3022] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7131), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7223), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2987] = { - [anon_sym_LPAREN] = ACTIONS(7133), + [3023] = { + [anon_sym_LPAREN] = ACTIONS(7225), [sym_comment] = ACTIONS(49), }, - [2988] = { - [sym__expression] = STATE(3048), - [sym_conditional_expression] = STATE(3048), - [sym_assignment_expression] = STATE(3048), - [sym_pointer_expression] = STATE(3048), - [sym_logical_expression] = STATE(3048), - [sym_bitwise_expression] = STATE(3048), - [sym_equality_expression] = STATE(3048), - [sym_relational_expression] = STATE(3048), - [sym_shift_expression] = STATE(3048), - [sym_math_expression] = STATE(3048), - [sym_cast_expression] = STATE(3048), - [sym_sizeof_expression] = STATE(3048), - [sym_subscript_expression] = STATE(3048), - [sym_call_expression] = STATE(3048), - [sym_field_expression] = STATE(3048), - [sym_compound_literal_expression] = STATE(3048), - [sym_parenthesized_expression] = STATE(3048), - [sym_concatenated_string] = STATE(3048), + [3024] = { + [sym__expression] = STATE(3090), + [sym_conditional_expression] = STATE(3090), + [sym_assignment_expression] = STATE(3090), + [sym_pointer_expression] = STATE(3090), + [sym_logical_expression] = STATE(3090), + [sym_bitwise_expression] = STATE(3090), + [sym_equality_expression] = STATE(3090), + [sym_relational_expression] = STATE(3090), + [sym_shift_expression] = STATE(3090), + [sym_math_expression] = STATE(3090), + [sym_cast_expression] = STATE(3090), + [sym_sizeof_expression] = STATE(3090), + [sym_subscript_expression] = STATE(3090), + [sym_call_expression] = STATE(3090), + [sym_field_expression] = STATE(3090), + [sym_compound_literal_expression] = STATE(3090), + [sym_parenthesized_expression] = STATE(3090), + [sym_concatenated_string] = STATE(3090), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3048), - [sym_new_expression] = STATE(3048), - [sym_delete_expression] = STATE(3048), - [sym_lambda_expression] = STATE(3048), + [sym_template_function] = STATE(3090), + [sym_new_expression] = STATE(3090), + [sym_delete_expression] = STATE(3090), + [sym_lambda_expression] = STATE(3090), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7135), + [sym_raw_string_literal] = ACTIONS(7227), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7137), + [anon_sym_SEMI] = ACTIONS(7229), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -121057,467 +122757,548 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7135), - [sym_char_literal] = ACTIONS(7135), + [sym_number_literal] = ACTIONS(7227), + [sym_char_literal] = ACTIONS(7227), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7139), - [sym_false] = ACTIONS(7139), - [sym_null] = ACTIONS(7139), + [sym_true] = ACTIONS(7231), + [sym_false] = ACTIONS(7231), + [sym_null] = ACTIONS(7231), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7139), + [sym_nullptr] = ACTIONS(7231), }, - [2989] = { + [3025] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7141), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7233), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2990] = { - [anon_sym_COLON] = ACTIONS(7143), + [3026] = { + [anon_sym_COLON] = ACTIONS(7235), [sym_comment] = ACTIONS(49), }, - [2991] = { - [sym_raw_string_literal] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4685), - [anon_sym_LPAREN] = ACTIONS(4683), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4685), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4685), - [sym_preproc_directive] = ACTIONS(4685), - [anon_sym_SEMI] = ACTIONS(4683), - [anon_sym_typedef] = ACTIONS(4685), - [anon_sym_extern] = ACTIONS(4685), - [anon_sym_LBRACE] = ACTIONS(4683), - [anon_sym_STAR] = ACTIONS(4683), - [anon_sym_LBRACK] = ACTIONS(4683), - [anon_sym_static] = ACTIONS(4685), - [anon_sym_register] = ACTIONS(4685), - [anon_sym_inline] = ACTIONS(4685), - [anon_sym_const] = ACTIONS(4685), - [anon_sym_restrict] = ACTIONS(4685), - [anon_sym_volatile] = ACTIONS(4685), - [anon_sym__Atomic] = ACTIONS(4685), - [anon_sym_mutable] = ACTIONS(4685), - [anon_sym_explicit] = ACTIONS(4685), - [anon_sym_constexpr] = ACTIONS(4685), - [anon_sym_unsigned] = ACTIONS(4685), - [anon_sym_long] = ACTIONS(4685), - [anon_sym_short] = ACTIONS(4685), - [sym_primitive_type] = ACTIONS(4685), - [anon_sym_enum] = ACTIONS(4685), - [anon_sym_struct] = ACTIONS(4685), - [anon_sym_union] = ACTIONS(4685), - [anon_sym_if] = ACTIONS(4685), - [anon_sym_else] = ACTIONS(4685), - [anon_sym_switch] = ACTIONS(4685), - [anon_sym_case] = ACTIONS(4685), - [anon_sym_default] = ACTIONS(4685), - [anon_sym_while] = ACTIONS(4685), - [anon_sym_do] = ACTIONS(4685), - [anon_sym_for] = ACTIONS(4685), - [anon_sym_return] = ACTIONS(4685), - [anon_sym_break] = ACTIONS(4685), - [anon_sym_continue] = ACTIONS(4685), - [anon_sym_goto] = ACTIONS(4685), - [anon_sym_AMP] = ACTIONS(4683), - [anon_sym_BANG] = ACTIONS(4683), - [anon_sym_TILDE] = ACTIONS(4683), - [anon_sym_PLUS] = ACTIONS(4685), - [anon_sym_DASH] = ACTIONS(4685), - [anon_sym_DASH_DASH] = ACTIONS(4683), - [anon_sym_PLUS_PLUS] = ACTIONS(4683), - [anon_sym_sizeof] = ACTIONS(4685), - [sym_number_literal] = ACTIONS(4683), - [sym_char_literal] = ACTIONS(4683), - [sym_string_literal] = ACTIONS(4683), - [sym_true] = ACTIONS(4685), - [sym_false] = ACTIONS(4685), - [sym_null] = ACTIONS(4685), - [sym_identifier] = ACTIONS(4685), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4685), - [sym_auto] = ACTIONS(4685), - [anon_sym_typename] = ACTIONS(4685), - [anon_sym_new] = ACTIONS(4685), - [anon_sym_COLON_COLON] = ACTIONS(4683), - [anon_sym_delete] = ACTIONS(4685), - [sym_nullptr] = ACTIONS(4685), + [3027] = { + [sym_raw_string_literal] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4699), + [anon_sym_LPAREN] = ACTIONS(4697), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4699), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4699), + [sym_preproc_directive] = ACTIONS(4699), + [anon_sym_SEMI] = ACTIONS(4697), + [anon_sym_typedef] = ACTIONS(4699), + [anon_sym_extern] = ACTIONS(4699), + [anon_sym_LBRACE] = ACTIONS(4697), + [anon_sym_STAR] = ACTIONS(4697), + [anon_sym_LBRACK] = ACTIONS(4697), + [anon_sym_static] = ACTIONS(4699), + [anon_sym_register] = ACTIONS(4699), + [anon_sym_inline] = ACTIONS(4699), + [anon_sym_const] = ACTIONS(4699), + [anon_sym_restrict] = ACTIONS(4699), + [anon_sym_volatile] = ACTIONS(4699), + [anon_sym__Atomic] = ACTIONS(4699), + [anon_sym_mutable] = ACTIONS(4699), + [anon_sym_explicit] = ACTIONS(4699), + [anon_sym_constexpr] = ACTIONS(4699), + [anon_sym_unsigned] = ACTIONS(4699), + [anon_sym_long] = ACTIONS(4699), + [anon_sym_short] = ACTIONS(4699), + [sym_primitive_type] = ACTIONS(4699), + [anon_sym_enum] = ACTIONS(4699), + [anon_sym_struct] = ACTIONS(4699), + [anon_sym_union] = ACTIONS(4699), + [anon_sym_if] = ACTIONS(4699), + [anon_sym_else] = ACTIONS(4699), + [anon_sym_switch] = ACTIONS(4699), + [anon_sym_case] = ACTIONS(4699), + [anon_sym_default] = ACTIONS(4699), + [anon_sym_while] = ACTIONS(4699), + [anon_sym_do] = ACTIONS(4699), + [anon_sym_for] = ACTIONS(4699), + [anon_sym_return] = ACTIONS(4699), + [anon_sym_break] = ACTIONS(4699), + [anon_sym_continue] = ACTIONS(4699), + [anon_sym_goto] = ACTIONS(4699), + [anon_sym_AMP] = ACTIONS(4697), + [anon_sym_BANG] = ACTIONS(4697), + [anon_sym_TILDE] = ACTIONS(4697), + [anon_sym_PLUS] = ACTIONS(4699), + [anon_sym_DASH] = ACTIONS(4699), + [anon_sym_DASH_DASH] = ACTIONS(4697), + [anon_sym_PLUS_PLUS] = ACTIONS(4697), + [anon_sym_sizeof] = ACTIONS(4699), + [sym_number_literal] = ACTIONS(4697), + [sym_char_literal] = ACTIONS(4697), + [sym_string_literal] = ACTIONS(4697), + [sym_true] = ACTIONS(4699), + [sym_false] = ACTIONS(4699), + [sym_null] = ACTIONS(4699), + [sym_identifier] = ACTIONS(4699), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4699), + [sym_auto] = ACTIONS(4699), + [anon_sym_typename] = ACTIONS(4699), + [anon_sym_new] = ACTIONS(4699), + [anon_sym_COLON_COLON] = ACTIONS(4697), + [anon_sym_delete] = ACTIONS(4699), + [sym_nullptr] = ACTIONS(4699), }, - [2992] = { - [sym_raw_string_literal] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4689), - [anon_sym_LPAREN] = ACTIONS(4687), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4689), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4689), - [sym_preproc_directive] = ACTIONS(4689), - [anon_sym_SEMI] = ACTIONS(4687), - [anon_sym_typedef] = ACTIONS(4689), - [anon_sym_extern] = ACTIONS(4689), - [anon_sym_LBRACE] = ACTIONS(4687), - [anon_sym_STAR] = ACTIONS(4687), - [anon_sym_LBRACK] = ACTIONS(4687), - [anon_sym_static] = ACTIONS(4689), - [anon_sym_register] = ACTIONS(4689), - [anon_sym_inline] = ACTIONS(4689), - [anon_sym_const] = ACTIONS(4689), - [anon_sym_restrict] = ACTIONS(4689), - [anon_sym_volatile] = ACTIONS(4689), - [anon_sym__Atomic] = ACTIONS(4689), - [anon_sym_mutable] = ACTIONS(4689), - [anon_sym_explicit] = ACTIONS(4689), - [anon_sym_constexpr] = ACTIONS(4689), - [anon_sym_unsigned] = ACTIONS(4689), - [anon_sym_long] = ACTIONS(4689), - [anon_sym_short] = ACTIONS(4689), - [sym_primitive_type] = ACTIONS(4689), - [anon_sym_enum] = ACTIONS(4689), - [anon_sym_struct] = ACTIONS(4689), - [anon_sym_union] = ACTIONS(4689), - [anon_sym_if] = ACTIONS(4689), - [anon_sym_else] = ACTIONS(4689), - [anon_sym_switch] = ACTIONS(4689), - [anon_sym_case] = ACTIONS(4689), - [anon_sym_default] = ACTIONS(4689), - [anon_sym_while] = ACTIONS(4689), - [anon_sym_do] = ACTIONS(4689), - [anon_sym_for] = ACTIONS(4689), - [anon_sym_return] = ACTIONS(4689), - [anon_sym_break] = ACTIONS(4689), - [anon_sym_continue] = ACTIONS(4689), - [anon_sym_goto] = ACTIONS(4689), - [anon_sym_AMP] = ACTIONS(4687), - [anon_sym_BANG] = ACTIONS(4687), - [anon_sym_TILDE] = ACTIONS(4687), - [anon_sym_PLUS] = ACTIONS(4689), - [anon_sym_DASH] = ACTIONS(4689), - [anon_sym_DASH_DASH] = ACTIONS(4687), - [anon_sym_PLUS_PLUS] = ACTIONS(4687), - [anon_sym_sizeof] = ACTIONS(4689), - [sym_number_literal] = ACTIONS(4687), - [sym_char_literal] = ACTIONS(4687), - [sym_string_literal] = ACTIONS(4687), - [sym_true] = ACTIONS(4689), - [sym_false] = ACTIONS(4689), - [sym_null] = ACTIONS(4689), - [sym_identifier] = ACTIONS(4689), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4689), - [sym_auto] = ACTIONS(4689), - [anon_sym_typename] = ACTIONS(4689), - [anon_sym_new] = ACTIONS(4689), - [anon_sym_COLON_COLON] = ACTIONS(4687), - [anon_sym_delete] = ACTIONS(4689), - [sym_nullptr] = ACTIONS(4689), + [3028] = { + [sym_raw_string_literal] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4703), + [anon_sym_LPAREN] = ACTIONS(4701), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4703), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4703), + [sym_preproc_directive] = ACTIONS(4703), + [anon_sym_SEMI] = ACTIONS(4701), + [anon_sym_typedef] = ACTIONS(4703), + [anon_sym_extern] = ACTIONS(4703), + [anon_sym_LBRACE] = ACTIONS(4701), + [anon_sym_STAR] = ACTIONS(4701), + [anon_sym_LBRACK] = ACTIONS(4701), + [anon_sym_static] = ACTIONS(4703), + [anon_sym_register] = ACTIONS(4703), + [anon_sym_inline] = ACTIONS(4703), + [anon_sym_const] = ACTIONS(4703), + [anon_sym_restrict] = ACTIONS(4703), + [anon_sym_volatile] = ACTIONS(4703), + [anon_sym__Atomic] = ACTIONS(4703), + [anon_sym_mutable] = ACTIONS(4703), + [anon_sym_explicit] = ACTIONS(4703), + [anon_sym_constexpr] = ACTIONS(4703), + [anon_sym_unsigned] = ACTIONS(4703), + [anon_sym_long] = ACTIONS(4703), + [anon_sym_short] = ACTIONS(4703), + [sym_primitive_type] = ACTIONS(4703), + [anon_sym_enum] = ACTIONS(4703), + [anon_sym_struct] = ACTIONS(4703), + [anon_sym_union] = ACTIONS(4703), + [anon_sym_if] = ACTIONS(4703), + [anon_sym_else] = ACTIONS(4703), + [anon_sym_switch] = ACTIONS(4703), + [anon_sym_case] = ACTIONS(4703), + [anon_sym_default] = ACTIONS(4703), + [anon_sym_while] = ACTIONS(4703), + [anon_sym_do] = ACTIONS(4703), + [anon_sym_for] = ACTIONS(4703), + [anon_sym_return] = ACTIONS(4703), + [anon_sym_break] = ACTIONS(4703), + [anon_sym_continue] = ACTIONS(4703), + [anon_sym_goto] = ACTIONS(4703), + [anon_sym_AMP] = ACTIONS(4701), + [anon_sym_BANG] = ACTIONS(4701), + [anon_sym_TILDE] = ACTIONS(4701), + [anon_sym_PLUS] = ACTIONS(4703), + [anon_sym_DASH] = ACTIONS(4703), + [anon_sym_DASH_DASH] = ACTIONS(4701), + [anon_sym_PLUS_PLUS] = ACTIONS(4701), + [anon_sym_sizeof] = ACTIONS(4703), + [sym_number_literal] = ACTIONS(4701), + [sym_char_literal] = ACTIONS(4701), + [sym_string_literal] = ACTIONS(4701), + [sym_true] = ACTIONS(4703), + [sym_false] = ACTIONS(4703), + [sym_null] = ACTIONS(4703), + [sym_identifier] = ACTIONS(4703), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4703), + [sym_auto] = ACTIONS(4703), + [anon_sym_typename] = ACTIONS(4703), + [anon_sym_new] = ACTIONS(4703), + [anon_sym_COLON_COLON] = ACTIONS(4701), + [anon_sym_delete] = ACTIONS(4703), + [sym_nullptr] = ACTIONS(4703), }, - [2993] = { - [sym_raw_string_literal] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4698), - [anon_sym_LPAREN] = ACTIONS(4696), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4698), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4698), - [sym_preproc_directive] = ACTIONS(4698), - [anon_sym_SEMI] = ACTIONS(4696), - [anon_sym_typedef] = ACTIONS(4698), - [anon_sym_extern] = ACTIONS(4698), - [anon_sym_LBRACE] = ACTIONS(4696), - [anon_sym_STAR] = ACTIONS(4696), - [anon_sym_LBRACK] = ACTIONS(4696), - [anon_sym_static] = ACTIONS(4698), - [anon_sym_register] = ACTIONS(4698), - [anon_sym_inline] = ACTIONS(4698), - [anon_sym_const] = ACTIONS(4698), - [anon_sym_restrict] = ACTIONS(4698), - [anon_sym_volatile] = ACTIONS(4698), - [anon_sym__Atomic] = ACTIONS(4698), - [anon_sym_mutable] = ACTIONS(4698), - [anon_sym_explicit] = ACTIONS(4698), - [anon_sym_constexpr] = ACTIONS(4698), - [anon_sym_unsigned] = ACTIONS(4698), - [anon_sym_long] = ACTIONS(4698), - [anon_sym_short] = ACTIONS(4698), - [sym_primitive_type] = ACTIONS(4698), - [anon_sym_enum] = ACTIONS(4698), - [anon_sym_struct] = ACTIONS(4698), - [anon_sym_union] = ACTIONS(4698), - [anon_sym_if] = ACTIONS(4698), - [anon_sym_else] = ACTIONS(4698), - [anon_sym_switch] = ACTIONS(4698), - [anon_sym_case] = ACTIONS(4698), - [anon_sym_default] = ACTIONS(4698), - [anon_sym_while] = ACTIONS(4698), - [anon_sym_do] = ACTIONS(4698), - [anon_sym_for] = ACTIONS(4698), - [anon_sym_return] = ACTIONS(4698), - [anon_sym_break] = ACTIONS(4698), - [anon_sym_continue] = ACTIONS(4698), - [anon_sym_goto] = ACTIONS(4698), - [anon_sym_AMP] = ACTIONS(4696), - [anon_sym_BANG] = ACTIONS(4696), - [anon_sym_TILDE] = ACTIONS(4696), - [anon_sym_PLUS] = ACTIONS(4698), - [anon_sym_DASH] = ACTIONS(4698), - [anon_sym_DASH_DASH] = ACTIONS(4696), - [anon_sym_PLUS_PLUS] = ACTIONS(4696), - [anon_sym_sizeof] = ACTIONS(4698), - [sym_number_literal] = ACTIONS(4696), - [sym_char_literal] = ACTIONS(4696), - [sym_string_literal] = ACTIONS(4696), - [sym_true] = ACTIONS(4698), - [sym_false] = ACTIONS(4698), - [sym_null] = ACTIONS(4698), - [sym_identifier] = ACTIONS(4698), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(4698), - [sym_auto] = ACTIONS(4698), - [anon_sym_typename] = ACTIONS(4698), - [anon_sym_new] = ACTIONS(4698), - [anon_sym_COLON_COLON] = ACTIONS(4696), - [anon_sym_delete] = ACTIONS(4698), - [sym_nullptr] = ACTIONS(4698), + [3029] = { + [sym_raw_string_literal] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(4712), + [anon_sym_LPAREN] = ACTIONS(4710), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(4712), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(4712), + [sym_preproc_directive] = ACTIONS(4712), + [anon_sym_SEMI] = ACTIONS(4710), + [anon_sym_typedef] = ACTIONS(4712), + [anon_sym_extern] = ACTIONS(4712), + [anon_sym_LBRACE] = ACTIONS(4710), + [anon_sym_STAR] = ACTIONS(4710), + [anon_sym_LBRACK] = ACTIONS(4710), + [anon_sym_static] = ACTIONS(4712), + [anon_sym_register] = ACTIONS(4712), + [anon_sym_inline] = ACTIONS(4712), + [anon_sym_const] = ACTIONS(4712), + [anon_sym_restrict] = ACTIONS(4712), + [anon_sym_volatile] = ACTIONS(4712), + [anon_sym__Atomic] = ACTIONS(4712), + [anon_sym_mutable] = ACTIONS(4712), + [anon_sym_explicit] = ACTIONS(4712), + [anon_sym_constexpr] = ACTIONS(4712), + [anon_sym_unsigned] = ACTIONS(4712), + [anon_sym_long] = ACTIONS(4712), + [anon_sym_short] = ACTIONS(4712), + [sym_primitive_type] = ACTIONS(4712), + [anon_sym_enum] = ACTIONS(4712), + [anon_sym_struct] = ACTIONS(4712), + [anon_sym_union] = ACTIONS(4712), + [anon_sym_if] = ACTIONS(4712), + [anon_sym_else] = ACTIONS(4712), + [anon_sym_switch] = ACTIONS(4712), + [anon_sym_case] = ACTIONS(4712), + [anon_sym_default] = ACTIONS(4712), + [anon_sym_while] = ACTIONS(4712), + [anon_sym_do] = ACTIONS(4712), + [anon_sym_for] = ACTIONS(4712), + [anon_sym_return] = ACTIONS(4712), + [anon_sym_break] = ACTIONS(4712), + [anon_sym_continue] = ACTIONS(4712), + [anon_sym_goto] = ACTIONS(4712), + [anon_sym_AMP] = ACTIONS(4710), + [anon_sym_BANG] = ACTIONS(4710), + [anon_sym_TILDE] = ACTIONS(4710), + [anon_sym_PLUS] = ACTIONS(4712), + [anon_sym_DASH] = ACTIONS(4712), + [anon_sym_DASH_DASH] = ACTIONS(4710), + [anon_sym_PLUS_PLUS] = ACTIONS(4710), + [anon_sym_sizeof] = ACTIONS(4712), + [sym_number_literal] = ACTIONS(4710), + [sym_char_literal] = ACTIONS(4710), + [sym_string_literal] = ACTIONS(4710), + [sym_true] = ACTIONS(4712), + [sym_false] = ACTIONS(4712), + [sym_null] = ACTIONS(4712), + [sym_identifier] = ACTIONS(4712), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(4712), + [sym_auto] = ACTIONS(4712), + [anon_sym_typename] = ACTIONS(4712), + [anon_sym_new] = ACTIONS(4712), + [anon_sym_COLON_COLON] = ACTIONS(4710), + [anon_sym_delete] = ACTIONS(4712), + [sym_nullptr] = ACTIONS(4712), }, - [2994] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), + [3030] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), }, - [2995] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), + [3031] = { + [sym_compound_statement] = STATE(3093), + [sym_labeled_statement] = STATE(3093), + [sym_expression_statement] = STATE(3093), + [sym_if_statement] = STATE(3093), + [sym_switch_statement] = STATE(3093), + [sym_case_statement] = STATE(3093), + [sym_while_statement] = STATE(3093), + [sym_do_statement] = STATE(3093), + [sym_for_statement] = STATE(3093), + [sym_return_statement] = STATE(3093), + [sym_break_statement] = STATE(3093), + [sym_continue_statement] = STATE(3093), + [sym_goto_statement] = STATE(3093), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3093), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(4439), }, - [2996] = { - [sym_compound_statement] = STATE(3051), - [sym_labeled_statement] = STATE(3051), - [sym_expression_statement] = STATE(3051), - [sym_if_statement] = STATE(3051), - [sym_switch_statement] = STATE(3051), - [sym_case_statement] = STATE(3051), - [sym_while_statement] = STATE(3051), - [sym_do_statement] = STATE(3051), - [sym_for_statement] = STATE(3051), - [sym_return_statement] = STATE(3051), - [sym_break_statement] = STATE(3051), - [sym_continue_statement] = STATE(3051), - [sym_goto_statement] = STATE(3051), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(3051), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), + [3032] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), + }, + [3033] = { + [sym_compound_statement] = STATE(3094), + [sym_labeled_statement] = STATE(3094), + [sym_expression_statement] = STATE(3094), + [sym_if_statement] = STATE(3094), + [sym_switch_statement] = STATE(3094), + [sym_case_statement] = STATE(3094), + [sym_while_statement] = STATE(3094), + [sym_do_statement] = STATE(3094), + [sym_for_statement] = STATE(3094), + [sym_return_statement] = STATE(3094), + [sym_break_statement] = STATE(3094), + [sym_continue_statement] = STATE(3094), + [sym_goto_statement] = STATE(3094), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3094), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -121526,196 +123307,196 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [2997] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7145), + [3034] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7237), [sym_comment] = ACTIONS(49), }, - [2998] = { + [3035] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3053), + [aux_sym_for_statement_repeat1] = STATE(3096), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7145), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7237), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [2999] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), + [3036] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), }, - [3000] = { - [sym_compound_statement] = STATE(3054), - [sym_labeled_statement] = STATE(3054), - [sym_expression_statement] = STATE(3054), - [sym_if_statement] = STATE(3054), - [sym_switch_statement] = STATE(3054), - [sym_case_statement] = STATE(3054), - [sym_while_statement] = STATE(3054), - [sym_do_statement] = STATE(3054), - [sym_for_statement] = STATE(3054), - [sym_return_statement] = STATE(3054), - [sym_break_statement] = STATE(3054), - [sym_continue_statement] = STATE(3054), - [sym_goto_statement] = STATE(3054), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3054), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3037] = { + [sym_compound_statement] = STATE(3097), + [sym_labeled_statement] = STATE(3097), + [sym_expression_statement] = STATE(3097), + [sym_if_statement] = STATE(3097), + [sym_switch_statement] = STATE(3097), + [sym_case_statement] = STATE(3097), + [sym_while_statement] = STATE(3097), + [sym_do_statement] = STATE(3097), + [sym_for_statement] = STATE(3097), + [sym_return_statement] = STATE(3097), + [sym_break_statement] = STATE(3097), + [sym_continue_statement] = STATE(3097), + [sym_goto_statement] = STATE(3097), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3097), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -121724,79 +123505,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3001] = { - [sym_compound_statement] = STATE(3055), - [sym_labeled_statement] = STATE(3055), - [sym_expression_statement] = STATE(3055), - [sym_if_statement] = STATE(3055), - [sym_switch_statement] = STATE(3055), - [sym_case_statement] = STATE(3055), - [sym_while_statement] = STATE(3055), - [sym_do_statement] = STATE(3055), - [sym_for_statement] = STATE(3055), - [sym_return_statement] = STATE(3055), - [sym_break_statement] = STATE(3055), - [sym_continue_statement] = STATE(3055), - [sym_goto_statement] = STATE(3055), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3055), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3038] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(7239), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [3039] = { + [sym_compound_statement] = STATE(3099), + [sym_labeled_statement] = STATE(3099), + [sym_expression_statement] = STATE(3099), + [sym_if_statement] = STATE(3099), + [sym_switch_statement] = STATE(3099), + [sym_case_statement] = STATE(3099), + [sym_while_statement] = STATE(3099), + [sym_do_statement] = STATE(3099), + [sym_for_statement] = STATE(3099), + [sym_return_statement] = STATE(3099), + [sym_break_statement] = STATE(3099), + [sym_continue_statement] = STATE(3099), + [sym_goto_statement] = STATE(3099), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3099), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -121805,92 +123627,92 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3002] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_else] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [3040] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_else] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [3003] = { - [sym__type_declarator] = STATE(3056), + [3041] = { + [sym__type_declarator] = STATE(3100), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -121899,16 +123721,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [3004] = { + [3042] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(3057), - [sym_sized_type_specifier] = STATE(3057), - [sym_enum_specifier] = STATE(3057), - [sym_struct_specifier] = STATE(3057), - [sym_union_specifier] = STATE(3057), - [sym_macro_type_specifier] = STATE(3057), - [sym_class_specifier] = STATE(3057), - [sym_dependent_type] = STATE(3057), + [sym__type_specifier] = STATE(3101), + [sym_sized_type_specifier] = STATE(3101), + [sym_enum_specifier] = STATE(3101), + [sym_struct_specifier] = STATE(3101), + [sym_union_specifier] = STATE(3101), + [sym_macro_type_specifier] = STATE(3101), + [sym_class_specifier] = STATE(3101), + [sym_dependent_type] = STATE(3101), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -121924,96 +123746,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(7147), + [sym_primitive_type] = ACTIONS(7241), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(7147), + [sym_auto] = ACTIONS(7241), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [3005] = { + [3043] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(3059), + [aux_sym_declaration_repeat1] = STATE(3103), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7149), + [anon_sym_SEMI] = ACTIONS(7243), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [3006] = { - [aux_sym_declaration_repeat1] = STATE(3059), + [3044] = { + [aux_sym_declaration_repeat1] = STATE(3103), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7149), + [anon_sym_SEMI] = ACTIONS(7243), [sym_comment] = ACTIONS(49), }, - [3007] = { - [sym_compound_statement] = STATE(3060), - [sym_labeled_statement] = STATE(3060), - [sym_expression_statement] = STATE(3060), - [sym_if_statement] = STATE(3060), - [sym_switch_statement] = STATE(3060), - [sym_case_statement] = STATE(3060), - [sym_while_statement] = STATE(3060), - [sym_do_statement] = STATE(3060), - [sym_for_statement] = STATE(3060), - [sym_return_statement] = STATE(3060), - [sym_break_statement] = STATE(3060), - [sym_continue_statement] = STATE(3060), - [sym_goto_statement] = STATE(3060), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3060), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3045] = { + [sym_compound_statement] = STATE(3104), + [sym_labeled_statement] = STATE(3104), + [sym_expression_statement] = STATE(3104), + [sym_if_statement] = STATE(3104), + [sym_switch_statement] = STATE(3104), + [sym_case_statement] = STATE(3104), + [sym_while_statement] = STATE(3104), + [sym_do_statement] = STATE(3104), + [sym_for_statement] = STATE(3104), + [sym_return_statement] = STATE(3104), + [sym_break_statement] = STATE(3104), + [sym_continue_statement] = STATE(3104), + [sym_goto_statement] = STATE(3104), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3104), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -122022,103 +123844,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3008] = { - [sym__expression] = STATE(3061), - [sym_conditional_expression] = STATE(3061), - [sym_assignment_expression] = STATE(3061), - [sym_pointer_expression] = STATE(3061), - [sym_logical_expression] = STATE(3061), - [sym_bitwise_expression] = STATE(3061), - [sym_equality_expression] = STATE(3061), - [sym_relational_expression] = STATE(3061), - [sym_shift_expression] = STATE(3061), - [sym_math_expression] = STATE(3061), - [sym_cast_expression] = STATE(3061), - [sym_sizeof_expression] = STATE(3061), - [sym_subscript_expression] = STATE(3061), - [sym_call_expression] = STATE(3061), - [sym_field_expression] = STATE(3061), - [sym_compound_literal_expression] = STATE(3061), - [sym_parenthesized_expression] = STATE(3061), - [sym_concatenated_string] = STATE(3061), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3061), - [sym_new_expression] = STATE(3061), - [sym_delete_expression] = STATE(3061), - [sym_lambda_expression] = STATE(3061), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7151), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7151), - [sym_char_literal] = ACTIONS(7151), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7153), - [sym_false] = ACTIONS(7153), - [sym_null] = ACTIONS(7153), + [3046] = { + [sym__expression] = STATE(3105), + [sym_conditional_expression] = STATE(3105), + [sym_assignment_expression] = STATE(3105), + [sym_pointer_expression] = STATE(3105), + [sym_logical_expression] = STATE(3105), + [sym_bitwise_expression] = STATE(3105), + [sym_equality_expression] = STATE(3105), + [sym_relational_expression] = STATE(3105), + [sym_shift_expression] = STATE(3105), + [sym_math_expression] = STATE(3105), + [sym_cast_expression] = STATE(3105), + [sym_sizeof_expression] = STATE(3105), + [sym_subscript_expression] = STATE(3105), + [sym_call_expression] = STATE(3105), + [sym_field_expression] = STATE(3105), + [sym_compound_literal_expression] = STATE(3105), + [sym_parenthesized_expression] = STATE(3105), + [sym_concatenated_string] = STATE(3105), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3105), + [sym_new_expression] = STATE(3105), + [sym_delete_expression] = STATE(3105), + [sym_lambda_expression] = STATE(3105), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7245), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7245), + [sym_char_literal] = ACTIONS(7245), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7247), + [sym_false] = ACTIONS(7247), + [sym_null] = ACTIONS(7247), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7153), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7247), }, - [3009] = { - [sym__expression] = STATE(3063), - [sym_conditional_expression] = STATE(3063), - [sym_assignment_expression] = STATE(3063), - [sym_pointer_expression] = STATE(3063), - [sym_logical_expression] = STATE(3063), - [sym_bitwise_expression] = STATE(3063), - [sym_equality_expression] = STATE(3063), - [sym_relational_expression] = STATE(3063), - [sym_shift_expression] = STATE(3063), - [sym_math_expression] = STATE(3063), - [sym_cast_expression] = STATE(3063), - [sym_sizeof_expression] = STATE(3063), - [sym_subscript_expression] = STATE(3063), - [sym_call_expression] = STATE(3063), - [sym_field_expression] = STATE(3063), - [sym_compound_literal_expression] = STATE(3063), - [sym_parenthesized_expression] = STATE(3063), - [sym_concatenated_string] = STATE(3063), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3063), - [sym_new_expression] = STATE(3063), - [sym_delete_expression] = STATE(3063), - [sym_lambda_expression] = STATE(3063), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7155), + [3047] = { + [sym__expression] = STATE(3107), + [sym_conditional_expression] = STATE(3107), + [sym_assignment_expression] = STATE(3107), + [sym_pointer_expression] = STATE(3107), + [sym_logical_expression] = STATE(3107), + [sym_bitwise_expression] = STATE(3107), + [sym_equality_expression] = STATE(3107), + [sym_relational_expression] = STATE(3107), + [sym_shift_expression] = STATE(3107), + [sym_math_expression] = STATE(3107), + [sym_cast_expression] = STATE(3107), + [sym_sizeof_expression] = STATE(3107), + [sym_subscript_expression] = STATE(3107), + [sym_call_expression] = STATE(3107), + [sym_field_expression] = STATE(3107), + [sym_compound_literal_expression] = STATE(3107), + [sym_parenthesized_expression] = STATE(3107), + [sym_concatenated_string] = STATE(3107), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3107), + [sym_new_expression] = STATE(3107), + [sym_delete_expression] = STATE(3107), + [sym_lambda_expression] = STATE(3107), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7249), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7157), + [anon_sym_RPAREN] = ACTIONS(7251), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -122129,91 +123951,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7155), - [sym_char_literal] = ACTIONS(7155), + [sym_number_literal] = ACTIONS(7249), + [sym_char_literal] = ACTIONS(7249), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7159), - [sym_false] = ACTIONS(7159), - [sym_null] = ACTIONS(7159), + [sym_true] = ACTIONS(7253), + [sym_false] = ACTIONS(7253), + [sym_null] = ACTIONS(7253), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7159), + [sym_nullptr] = ACTIONS(7253), }, - [3010] = { + [3048] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7161), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7255), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3011] = { - [sym__expression] = STATE(3065), - [sym_conditional_expression] = STATE(3065), - [sym_assignment_expression] = STATE(3065), - [sym_pointer_expression] = STATE(3065), - [sym_logical_expression] = STATE(3065), - [sym_bitwise_expression] = STATE(3065), - [sym_equality_expression] = STATE(3065), - [sym_relational_expression] = STATE(3065), - [sym_shift_expression] = STATE(3065), - [sym_math_expression] = STATE(3065), - [sym_cast_expression] = STATE(3065), - [sym_sizeof_expression] = STATE(3065), - [sym_subscript_expression] = STATE(3065), - [sym_call_expression] = STATE(3065), - [sym_field_expression] = STATE(3065), - [sym_compound_literal_expression] = STATE(3065), - [sym_parenthesized_expression] = STATE(3065), - [sym_concatenated_string] = STATE(3065), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3065), - [sym_new_expression] = STATE(3065), - [sym_delete_expression] = STATE(3065), - [sym_lambda_expression] = STATE(3065), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7163), + [3049] = { + [sym__expression] = STATE(3109), + [sym_conditional_expression] = STATE(3109), + [sym_assignment_expression] = STATE(3109), + [sym_pointer_expression] = STATE(3109), + [sym_logical_expression] = STATE(3109), + [sym_bitwise_expression] = STATE(3109), + [sym_equality_expression] = STATE(3109), + [sym_relational_expression] = STATE(3109), + [sym_shift_expression] = STATE(3109), + [sym_math_expression] = STATE(3109), + [sym_cast_expression] = STATE(3109), + [sym_sizeof_expression] = STATE(3109), + [sym_subscript_expression] = STATE(3109), + [sym_call_expression] = STATE(3109), + [sym_field_expression] = STATE(3109), + [sym_compound_literal_expression] = STATE(3109), + [sym_parenthesized_expression] = STATE(3109), + [sym_concatenated_string] = STATE(3109), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3109), + [sym_new_expression] = STATE(3109), + [sym_delete_expression] = STATE(3109), + [sym_lambda_expression] = STATE(3109), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7257), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7161), + [anon_sym_SEMI] = ACTIONS(7255), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -122224,202 +124046,272 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7163), - [sym_char_literal] = ACTIONS(7163), + [sym_number_literal] = ACTIONS(7257), + [sym_char_literal] = ACTIONS(7257), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7165), - [sym_false] = ACTIONS(7165), - [sym_null] = ACTIONS(7165), + [sym_true] = ACTIONS(7259), + [sym_false] = ACTIONS(7259), + [sym_null] = ACTIONS(7259), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7165), + [sym_nullptr] = ACTIONS(7259), }, - [3012] = { - [sym__expression] = STATE(3066), - [sym_conditional_expression] = STATE(3066), - [sym_assignment_expression] = STATE(3066), - [sym_pointer_expression] = STATE(3066), - [sym_logical_expression] = STATE(3066), - [sym_bitwise_expression] = STATE(3066), - [sym_equality_expression] = STATE(3066), - [sym_relational_expression] = STATE(3066), - [sym_shift_expression] = STATE(3066), - [sym_math_expression] = STATE(3066), - [sym_cast_expression] = STATE(3066), - [sym_sizeof_expression] = STATE(3066), - [sym_subscript_expression] = STATE(3066), - [sym_call_expression] = STATE(3066), - [sym_field_expression] = STATE(3066), - [sym_compound_literal_expression] = STATE(3066), - [sym_parenthesized_expression] = STATE(3066), - [sym_concatenated_string] = STATE(3066), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3066), - [sym_new_expression] = STATE(3066), - [sym_delete_expression] = STATE(3066), - [sym_lambda_expression] = STATE(3066), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7167), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7167), - [sym_char_literal] = ACTIONS(7167), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7169), - [sym_false] = ACTIONS(7169), - [sym_null] = ACTIONS(7169), + [3050] = { + [sym__expression] = STATE(3110), + [sym_conditional_expression] = STATE(3110), + [sym_assignment_expression] = STATE(3110), + [sym_pointer_expression] = STATE(3110), + [sym_logical_expression] = STATE(3110), + [sym_bitwise_expression] = STATE(3110), + [sym_equality_expression] = STATE(3110), + [sym_relational_expression] = STATE(3110), + [sym_shift_expression] = STATE(3110), + [sym_math_expression] = STATE(3110), + [sym_cast_expression] = STATE(3110), + [sym_sizeof_expression] = STATE(3110), + [sym_subscript_expression] = STATE(3110), + [sym_call_expression] = STATE(3110), + [sym_field_expression] = STATE(3110), + [sym_compound_literal_expression] = STATE(3110), + [sym_parenthesized_expression] = STATE(3110), + [sym_concatenated_string] = STATE(3110), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3110), + [sym_new_expression] = STATE(3110), + [sym_delete_expression] = STATE(3110), + [sym_lambda_expression] = STATE(3110), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7261), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7261), + [sym_char_literal] = ACTIONS(7261), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7263), + [sym_false] = ACTIONS(7263), + [sym_null] = ACTIONS(7263), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7169), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7263), }, - [3013] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), + [3051] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), }, - [3014] = { - [sym_compound_statement] = STATE(3067), - [sym_labeled_statement] = STATE(3067), - [sym_expression_statement] = STATE(3067), - [sym_if_statement] = STATE(3067), - [sym_switch_statement] = STATE(3067), - [sym_case_statement] = STATE(3067), - [sym_while_statement] = STATE(3067), - [sym_do_statement] = STATE(3067), - [sym_for_statement] = STATE(3067), - [sym_return_statement] = STATE(3067), - [sym_break_statement] = STATE(3067), - [sym_continue_statement] = STATE(3067), - [sym_goto_statement] = STATE(3067), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(3067), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), + [3052] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), + }, + [3053] = { + [sym_compound_statement] = STATE(3111), + [sym_labeled_statement] = STATE(3111), + [sym_expression_statement] = STATE(3111), + [sym_if_statement] = STATE(3111), + [sym_switch_statement] = STATE(3111), + [sym_case_statement] = STATE(3111), + [sym_while_statement] = STATE(3111), + [sym_do_statement] = STATE(3111), + [sym_for_statement] = STATE(3111), + [sym_return_statement] = STATE(3111), + [sym_break_statement] = STATE(3111), + [sym_continue_statement] = STATE(3111), + [sym_goto_statement] = STATE(3111), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(3111), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -122428,85 +124320,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [3015] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7171), + [3054] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7265), [sym_comment] = ACTIONS(49), }, - [3016] = { - [sym_compound_statement] = STATE(3069), - [sym_labeled_statement] = STATE(3069), - [sym_expression_statement] = STATE(3069), - [sym_if_statement] = STATE(3069), - [sym_switch_statement] = STATE(3069), - [sym_case_statement] = STATE(3069), - [sym_while_statement] = STATE(3069), - [sym_do_statement] = STATE(3069), - [sym_for_statement] = STATE(3069), - [sym_return_statement] = STATE(3069), - [sym_break_statement] = STATE(3069), - [sym_continue_statement] = STATE(3069), - [sym_goto_statement] = STATE(3069), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3069), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3055] = { + [sym_compound_statement] = STATE(3113), + [sym_labeled_statement] = STATE(3113), + [sym_expression_statement] = STATE(3113), + [sym_if_statement] = STATE(3113), + [sym_switch_statement] = STATE(3113), + [sym_case_statement] = STATE(3113), + [sym_while_statement] = STATE(3113), + [sym_do_statement] = STATE(3113), + [sym_for_statement] = STATE(3113), + [sym_return_statement] = STATE(3113), + [sym_break_statement] = STATE(3113), + [sym_continue_statement] = STATE(3113), + [sym_goto_statement] = STATE(3113), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3113), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -122515,362 +124407,431 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3017] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [3056] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_RBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(7267), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), }, - [3018] = { + [3057] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), + }, + [3058] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7173), + [anon_sym_SEMI] = ACTIONS(7269), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [3019] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [3059] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [3020] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_RBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_else] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), + [3060] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_RBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_else] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), }, - [3021] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_RBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_else] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), + [3061] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_RBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_else] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), }, - [3022] = { - [sym_compound_statement] = STATE(3071), - [sym_labeled_statement] = STATE(3071), - [sym_expression_statement] = STATE(3071), - [sym_if_statement] = STATE(3071), - [sym_switch_statement] = STATE(3071), - [sym_case_statement] = STATE(3071), - [sym_while_statement] = STATE(3071), - [sym_do_statement] = STATE(3071), - [sym_for_statement] = STATE(3071), - [sym_return_statement] = STATE(3071), - [sym_break_statement] = STATE(3071), - [sym_continue_statement] = STATE(3071), - [sym_goto_statement] = STATE(3071), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3071), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3062] = { + [sym_compound_statement] = STATE(3116), + [sym_labeled_statement] = STATE(3116), + [sym_expression_statement] = STATE(3116), + [sym_if_statement] = STATE(3116), + [sym_switch_statement] = STATE(3116), + [sym_case_statement] = STATE(3116), + [sym_while_statement] = STATE(3116), + [sym_do_statement] = STATE(3116), + [sym_for_statement] = STATE(3116), + [sym_return_statement] = STATE(3116), + [sym_break_statement] = STATE(3116), + [sym_continue_statement] = STATE(3116), + [sym_goto_statement] = STATE(3116), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3116), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -122879,99 +124840,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3023] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7175), + [3063] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7271), [sym_comment] = ACTIONS(49), }, - [3024] = { + [3064] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3073), + [aux_sym_for_statement_repeat1] = STATE(3118), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7175), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7271), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3025] = { - [sym__expression] = STATE(3074), - [sym_conditional_expression] = STATE(3074), - [sym_assignment_expression] = STATE(3074), - [sym_pointer_expression] = STATE(3074), - [sym_logical_expression] = STATE(3074), - [sym_bitwise_expression] = STATE(3074), - [sym_equality_expression] = STATE(3074), - [sym_relational_expression] = STATE(3074), - [sym_shift_expression] = STATE(3074), - [sym_math_expression] = STATE(3074), - [sym_cast_expression] = STATE(3074), - [sym_sizeof_expression] = STATE(3074), - [sym_subscript_expression] = STATE(3074), - [sym_call_expression] = STATE(3074), - [sym_field_expression] = STATE(3074), - [sym_compound_literal_expression] = STATE(3074), - [sym_parenthesized_expression] = STATE(3074), - [sym_concatenated_string] = STATE(3074), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3074), - [sym_new_expression] = STATE(3074), - [sym_delete_expression] = STATE(3074), - [sym_lambda_expression] = STATE(3074), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7177), + [3065] = { + [sym__expression] = STATE(3119), + [sym_conditional_expression] = STATE(3119), + [sym_assignment_expression] = STATE(3119), + [sym_pointer_expression] = STATE(3119), + [sym_logical_expression] = STATE(3119), + [sym_bitwise_expression] = STATE(3119), + [sym_equality_expression] = STATE(3119), + [sym_relational_expression] = STATE(3119), + [sym_shift_expression] = STATE(3119), + [sym_math_expression] = STATE(3119), + [sym_cast_expression] = STATE(3119), + [sym_sizeof_expression] = STATE(3119), + [sym_subscript_expression] = STATE(3119), + [sym_call_expression] = STATE(3119), + [sym_field_expression] = STATE(3119), + [sym_compound_literal_expression] = STATE(3119), + [sym_parenthesized_expression] = STATE(3119), + [sym_concatenated_string] = STATE(3119), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3119), + [sym_new_expression] = STATE(3119), + [sym_delete_expression] = STATE(3119), + [sym_lambda_expression] = STATE(3119), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7273), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7175), + [anon_sym_RPAREN] = ACTIONS(7271), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -122982,79 +124943,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7177), - [sym_char_literal] = ACTIONS(7177), + [sym_number_literal] = ACTIONS(7273), + [sym_char_literal] = ACTIONS(7273), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7179), - [sym_false] = ACTIONS(7179), - [sym_null] = ACTIONS(7179), + [sym_true] = ACTIONS(7275), + [sym_false] = ACTIONS(7275), + [sym_null] = ACTIONS(7275), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7179), + [sym_nullptr] = ACTIONS(7275), }, - [3026] = { - [sym_compound_statement] = STATE(3075), - [sym_labeled_statement] = STATE(3075), - [sym_expression_statement] = STATE(3075), - [sym_if_statement] = STATE(3075), - [sym_switch_statement] = STATE(3075), - [sym_case_statement] = STATE(3075), - [sym_while_statement] = STATE(3075), - [sym_do_statement] = STATE(3075), - [sym_for_statement] = STATE(3075), - [sym_return_statement] = STATE(3075), - [sym_break_statement] = STATE(3075), - [sym_continue_statement] = STATE(3075), - [sym_goto_statement] = STATE(3075), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3075), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3066] = { + [sym_compound_statement] = STATE(3120), + [sym_labeled_statement] = STATE(3120), + [sym_expression_statement] = STATE(3120), + [sym_if_statement] = STATE(3120), + [sym_switch_statement] = STATE(3120), + [sym_case_statement] = STATE(3120), + [sym_while_statement] = STATE(3120), + [sym_do_statement] = STATE(3120), + [sym_for_statement] = STATE(3120), + [sym_return_statement] = STATE(3120), + [sym_break_statement] = STATE(3120), + [sym_continue_statement] = STATE(3120), + [sym_goto_statement] = STATE(3120), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3120), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123063,84 +125024,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3027] = { - [anon_sym_else] = ACTIONS(7181), - [anon_sym_while] = ACTIONS(6235), + [3067] = { + [anon_sym_else] = ACTIONS(7277), + [anon_sym_while] = ACTIONS(6267), [sym_comment] = ACTIONS(49), }, - [3028] = { - [sym_compound_statement] = STATE(2766), - [sym_labeled_statement] = STATE(2766), - [sym_expression_statement] = STATE(2766), - [sym_if_statement] = STATE(2766), - [sym_switch_statement] = STATE(2766), - [sym_case_statement] = STATE(2766), - [sym_while_statement] = STATE(2766), - [sym_do_statement] = STATE(2766), - [sym_for_statement] = STATE(2766), - [sym_return_statement] = STATE(2766), - [sym_break_statement] = STATE(2766), - [sym_continue_statement] = STATE(2766), - [sym_goto_statement] = STATE(2766), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2766), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3068] = { + [sym_compound_statement] = STATE(3122), + [sym_labeled_statement] = STATE(3122), + [sym_expression_statement] = STATE(3122), + [sym_if_statement] = STATE(3122), + [sym_switch_statement] = STATE(3122), + [sym_case_statement] = STATE(3122), + [sym_while_statement] = STATE(3122), + [sym_do_statement] = STATE(3122), + [sym_for_statement] = STATE(3122), + [sym_return_statement] = STATE(3122), + [sym_break_statement] = STATE(3122), + [sym_continue_statement] = STATE(3122), + [sym_goto_statement] = STATE(3122), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3122), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123149,93 +125110,174 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3029] = { + [3069] = { + [sym_compound_statement] = STATE(2787), + [sym_labeled_statement] = STATE(2787), + [sym_expression_statement] = STATE(2787), + [sym_if_statement] = STATE(2787), + [sym_switch_statement] = STATE(2787), + [sym_case_statement] = STATE(2787), + [sym_while_statement] = STATE(2787), + [sym_do_statement] = STATE(2787), + [sym_for_statement] = STATE(2787), + [sym_return_statement] = STATE(2787), + [sym_break_statement] = STATE(2787), + [sym_continue_statement] = STATE(2787), + [sym_goto_statement] = STATE(2787), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2787), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(1688), + }, + [3070] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3078), + [aux_sym_for_statement_repeat1] = STATE(3124), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7183), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7279), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3030] = { - [sym__expression] = STATE(3079), - [sym_conditional_expression] = STATE(3079), - [sym_assignment_expression] = STATE(3079), - [sym_pointer_expression] = STATE(3079), - [sym_logical_expression] = STATE(3079), - [sym_bitwise_expression] = STATE(3079), - [sym_equality_expression] = STATE(3079), - [sym_relational_expression] = STATE(3079), - [sym_shift_expression] = STATE(3079), - [sym_math_expression] = STATE(3079), - [sym_cast_expression] = STATE(3079), - [sym_sizeof_expression] = STATE(3079), - [sym_subscript_expression] = STATE(3079), - [sym_call_expression] = STATE(3079), - [sym_field_expression] = STATE(3079), - [sym_compound_literal_expression] = STATE(3079), - [sym_parenthesized_expression] = STATE(3079), - [sym_concatenated_string] = STATE(3079), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3079), - [sym_new_expression] = STATE(3079), - [sym_delete_expression] = STATE(3079), - [sym_lambda_expression] = STATE(3079), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7185), + [3071] = { + [sym__expression] = STATE(3125), + [sym_conditional_expression] = STATE(3125), + [sym_assignment_expression] = STATE(3125), + [sym_pointer_expression] = STATE(3125), + [sym_logical_expression] = STATE(3125), + [sym_bitwise_expression] = STATE(3125), + [sym_equality_expression] = STATE(3125), + [sym_relational_expression] = STATE(3125), + [sym_shift_expression] = STATE(3125), + [sym_math_expression] = STATE(3125), + [sym_cast_expression] = STATE(3125), + [sym_sizeof_expression] = STATE(3125), + [sym_subscript_expression] = STATE(3125), + [sym_call_expression] = STATE(3125), + [sym_field_expression] = STATE(3125), + [sym_compound_literal_expression] = STATE(3125), + [sym_parenthesized_expression] = STATE(3125), + [sym_concatenated_string] = STATE(3125), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3125), + [sym_new_expression] = STATE(3125), + [sym_delete_expression] = STATE(3125), + [sym_lambda_expression] = STATE(3125), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7281), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7183), + [anon_sym_RPAREN] = ACTIONS(7279), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -123246,166 +125288,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7185), - [sym_char_literal] = ACTIONS(7185), + [sym_number_literal] = ACTIONS(7281), + [sym_char_literal] = ACTIONS(7281), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7187), - [sym_false] = ACTIONS(7187), - [sym_null] = ACTIONS(7187), + [sym_true] = ACTIONS(7283), + [sym_false] = ACTIONS(7283), + [sym_null] = ACTIONS(7283), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7187), + [sym_nullptr] = ACTIONS(7283), }, - [3031] = { + [3072] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7189), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7285), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3032] = { + [3073] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7191), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7287), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3033] = { - [anon_sym_else] = ACTIONS(7114), - [anon_sym_while] = ACTIONS(7114), + [3074] = { + [anon_sym_else] = ACTIONS(7202), + [anon_sym_while] = ACTIONS(7202), [sym_comment] = ACTIONS(49), }, - [3034] = { - [sym_compound_statement] = STATE(3082), - [sym_labeled_statement] = STATE(3082), - [sym_expression_statement] = STATE(3082), - [sym_if_statement] = STATE(3082), - [sym_switch_statement] = STATE(3082), - [sym_case_statement] = STATE(3082), - [sym_while_statement] = STATE(3082), - [sym_do_statement] = STATE(3082), - [sym_for_statement] = STATE(3082), - [sym_return_statement] = STATE(3082), - [sym_break_statement] = STATE(3082), - [sym_continue_statement] = STATE(3082), - [sym_goto_statement] = STATE(3082), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(3082), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [3075] = { + [sym_compound_statement] = STATE(3128), + [sym_labeled_statement] = STATE(3128), + [sym_expression_statement] = STATE(3128), + [sym_if_statement] = STATE(3128), + [sym_switch_statement] = STATE(3128), + [sym_case_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_return_statement] = STATE(3128), + [sym_break_statement] = STATE(3128), + [sym_continue_statement] = STATE(3128), + [sym_goto_statement] = STATE(3128), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3128), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_switch] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1670), - [anon_sym_while] = ACTIONS(1672), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(1676), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(1666), + [anon_sym_switch] = ACTIONS(1668), + [anon_sym_case] = ACTIONS(1670), + [anon_sym_default] = ACTIONS(1672), + [anon_sym_while] = ACTIONS(1674), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(1678), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123414,29 +125456,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1688), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(1690), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3035] = { - [sym_type_qualifier] = STATE(3036), - [sym_trailing_return_type] = STATE(2162), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3036), - [anon_sym_LPAREN] = ACTIONS(4984), - [anon_sym_COMMA] = ACTIONS(4984), - [anon_sym_SEMI] = ACTIONS(4984), - [anon_sym_LBRACE] = ACTIONS(4984), - [anon_sym_LBRACK] = ACTIONS(4984), - [anon_sym_EQ] = ACTIONS(4984), + [3076] = { + [sym_type_qualifier] = STATE(3077), + [sym_trailing_return_type] = STATE(2168), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3077), + [anon_sym_LPAREN] = ACTIONS(4998), + [anon_sym_COMMA] = ACTIONS(4998), + [anon_sym_SEMI] = ACTIONS(4998), + [anon_sym_LBRACE] = ACTIONS(4998), + [anon_sym_LBRACK] = ACTIONS(4998), + [anon_sym_EQ] = ACTIONS(4998), [anon_sym_const] = ACTIONS(612), [anon_sym_restrict] = ACTIONS(614), [anon_sym_volatile] = ACTIONS(614), @@ -123444,160 +125486,160 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mutable] = ACTIONS(614), [anon_sym_explicit] = ACTIONS(614), [anon_sym_constexpr] = ACTIONS(614), - [anon_sym_COLON] = ACTIONS(4984), - [anon_sym_DASH_GT] = ACTIONS(6313), + [anon_sym_COLON] = ACTIONS(4998), + [anon_sym_DASH_GT] = ACTIONS(6347), [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7118), + [sym_noexcept] = ACTIONS(7206), }, - [3036] = { - [sym_type_qualifier] = STATE(3036), - [aux_sym_abstract_function_declarator_repeat1] = STATE(3036), - [anon_sym_LPAREN] = ACTIONS(4988), - [anon_sym_COMMA] = ACTIONS(4988), - [anon_sym_SEMI] = ACTIONS(4988), - [anon_sym_LBRACE] = ACTIONS(4988), - [anon_sym_LBRACK] = ACTIONS(4988), - [anon_sym_EQ] = ACTIONS(4988), - [anon_sym_const] = ACTIONS(4990), - [anon_sym_restrict] = ACTIONS(4993), - [anon_sym_volatile] = ACTIONS(4993), - [anon_sym__Atomic] = ACTIONS(4993), - [anon_sym_mutable] = ACTIONS(4993), - [anon_sym_explicit] = ACTIONS(4993), - [anon_sym_constexpr] = ACTIONS(4993), - [anon_sym_COLON] = ACTIONS(4988), - [anon_sym_DASH_GT] = ACTIONS(4988), - [sym_comment] = ACTIONS(49), - [sym_noexcept] = ACTIONS(7193), + [3077] = { + [sym_type_qualifier] = STATE(3077), + [aux_sym_abstract_function_declarator_repeat1] = STATE(3077), + [anon_sym_LPAREN] = ACTIONS(5002), + [anon_sym_COMMA] = ACTIONS(5002), + [anon_sym_SEMI] = ACTIONS(5002), + [anon_sym_LBRACE] = ACTIONS(5002), + [anon_sym_LBRACK] = ACTIONS(5002), + [anon_sym_EQ] = ACTIONS(5002), + [anon_sym_const] = ACTIONS(5004), + [anon_sym_restrict] = ACTIONS(5007), + [anon_sym_volatile] = ACTIONS(5007), + [anon_sym__Atomic] = ACTIONS(5007), + [anon_sym_mutable] = ACTIONS(5007), + [anon_sym_explicit] = ACTIONS(5007), + [anon_sym_constexpr] = ACTIONS(5007), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_DASH_GT] = ACTIONS(5002), + [sym_comment] = ACTIONS(49), + [sym_noexcept] = ACTIONS(7289), }, - [3037] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_RBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), + [3078] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), }, - [3038] = { - [sym_compound_statement] = STATE(3083), - [sym_labeled_statement] = STATE(3083), - [sym_expression_statement] = STATE(3083), - [sym_if_statement] = STATE(3083), - [sym_switch_statement] = STATE(3083), - [sym_case_statement] = STATE(3083), - [sym_while_statement] = STATE(3083), - [sym_do_statement] = STATE(3083), - [sym_for_statement] = STATE(3083), - [sym_return_statement] = STATE(3083), - [sym_break_statement] = STATE(3083), - [sym_continue_statement] = STATE(3083), - [sym_goto_statement] = STATE(3083), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3083), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3079] = { + [sym_compound_statement] = STATE(3129), + [sym_labeled_statement] = STATE(3129), + [sym_expression_statement] = STATE(3129), + [sym_if_statement] = STATE(3129), + [sym_switch_statement] = STATE(3129), + [sym_case_statement] = STATE(3129), + [sym_while_statement] = STATE(3129), + [sym_do_statement] = STATE(3129), + [sym_for_statement] = STATE(3129), + [sym_return_statement] = STATE(3129), + [sym_break_statement] = STATE(3129), + [sym_continue_statement] = STATE(3129), + [sym_goto_statement] = STATE(3129), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3129), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123606,79 +125648,120 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3039] = { - [sym_compound_statement] = STATE(3084), - [sym_labeled_statement] = STATE(3084), - [sym_expression_statement] = STATE(3084), - [sym_if_statement] = STATE(3084), - [sym_switch_statement] = STATE(3084), - [sym_case_statement] = STATE(3084), - [sym_while_statement] = STATE(3084), - [sym_do_statement] = STATE(3084), - [sym_for_statement] = STATE(3084), - [sym_return_statement] = STATE(3084), - [sym_break_statement] = STATE(3084), - [sym_continue_statement] = STATE(3084), - [sym_goto_statement] = STATE(3084), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3084), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3080] = { + [sym_argument_list] = STATE(802), + [anon_sym_LPAREN] = ACTIONS(546), + [anon_sym_RPAREN] = ACTIONS(7296), + [anon_sym_STAR] = ACTIONS(4537), + [anon_sym_LBRACK] = ACTIONS(1524), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), + [anon_sym_DASH_DASH] = ACTIONS(1552), + [anon_sym_PLUS_PLUS] = ACTIONS(1552), + [anon_sym_DOT] = ACTIONS(1554), + [anon_sym_DASH_GT] = ACTIONS(1554), + [sym_comment] = ACTIONS(49), + }, + [3081] = { + [sym_compound_statement] = STATE(3131), + [sym_labeled_statement] = STATE(3131), + [sym_expression_statement] = STATE(3131), + [sym_if_statement] = STATE(3131), + [sym_switch_statement] = STATE(3131), + [sym_case_statement] = STATE(3131), + [sym_while_statement] = STATE(3131), + [sym_do_statement] = STATE(3131), + [sym_for_statement] = STATE(3131), + [sym_return_statement] = STATE(3131), + [sym_break_statement] = STATE(3131), + [sym_continue_statement] = STATE(3131), + [sym_goto_statement] = STATE(3131), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3131), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123687,90 +125770,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3040] = { - [sym_raw_string_literal] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5613), - [anon_sym_LPAREN] = ACTIONS(5611), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5613), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5613), - [sym_preproc_directive] = ACTIONS(5613), - [anon_sym_SEMI] = ACTIONS(5611), - [anon_sym_typedef] = ACTIONS(5613), - [anon_sym_extern] = ACTIONS(5613), - [anon_sym_LBRACE] = ACTIONS(5611), - [anon_sym_STAR] = ACTIONS(5611), - [anon_sym_LBRACK] = ACTIONS(5611), - [anon_sym_static] = ACTIONS(5613), - [anon_sym_register] = ACTIONS(5613), - [anon_sym_inline] = ACTIONS(5613), - [anon_sym_const] = ACTIONS(5613), - [anon_sym_restrict] = ACTIONS(5613), - [anon_sym_volatile] = ACTIONS(5613), - [anon_sym__Atomic] = ACTIONS(5613), - [anon_sym_mutable] = ACTIONS(5613), - [anon_sym_explicit] = ACTIONS(5613), - [anon_sym_constexpr] = ACTIONS(5613), - [anon_sym_unsigned] = ACTIONS(5613), - [anon_sym_long] = ACTIONS(5613), - [anon_sym_short] = ACTIONS(5613), - [sym_primitive_type] = ACTIONS(5613), - [anon_sym_enum] = ACTIONS(5613), - [anon_sym_struct] = ACTIONS(5613), - [anon_sym_union] = ACTIONS(5613), - [anon_sym_if] = ACTIONS(5613), - [anon_sym_else] = ACTIONS(5613), - [anon_sym_switch] = ACTIONS(5613), - [anon_sym_case] = ACTIONS(5613), - [anon_sym_default] = ACTIONS(5613), - [anon_sym_while] = ACTIONS(5613), - [anon_sym_do] = ACTIONS(5613), - [anon_sym_for] = ACTIONS(5613), - [anon_sym_return] = ACTIONS(5613), - [anon_sym_break] = ACTIONS(5613), - [anon_sym_continue] = ACTIONS(5613), - [anon_sym_goto] = ACTIONS(5613), - [anon_sym_AMP] = ACTIONS(5611), - [anon_sym_BANG] = ACTIONS(5611), - [anon_sym_TILDE] = ACTIONS(5611), - [anon_sym_PLUS] = ACTIONS(5613), - [anon_sym_DASH] = ACTIONS(5613), - [anon_sym_DASH_DASH] = ACTIONS(5611), - [anon_sym_PLUS_PLUS] = ACTIONS(5611), - [anon_sym_sizeof] = ACTIONS(5613), - [sym_number_literal] = ACTIONS(5611), - [sym_char_literal] = ACTIONS(5611), - [sym_string_literal] = ACTIONS(5611), - [sym_true] = ACTIONS(5613), - [sym_false] = ACTIONS(5613), - [sym_null] = ACTIONS(5613), - [sym_identifier] = ACTIONS(5613), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(5613), - [sym_auto] = ACTIONS(5613), - [anon_sym_typename] = ACTIONS(5613), - [anon_sym_new] = ACTIONS(5613), - [anon_sym_COLON_COLON] = ACTIONS(5611), - [anon_sym_delete] = ACTIONS(5613), - [sym_nullptr] = ACTIONS(5613), + [3082] = { + [sym_raw_string_literal] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(5633), + [anon_sym_LPAREN] = ACTIONS(5631), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(5633), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(5633), + [sym_preproc_directive] = ACTIONS(5633), + [anon_sym_SEMI] = ACTIONS(5631), + [anon_sym_typedef] = ACTIONS(5633), + [anon_sym_extern] = ACTIONS(5633), + [anon_sym_LBRACE] = ACTIONS(5631), + [anon_sym_STAR] = ACTIONS(5631), + [anon_sym_LBRACK] = ACTIONS(5631), + [anon_sym_static] = ACTIONS(5633), + [anon_sym_register] = ACTIONS(5633), + [anon_sym_inline] = ACTIONS(5633), + [anon_sym_const] = ACTIONS(5633), + [anon_sym_restrict] = ACTIONS(5633), + [anon_sym_volatile] = ACTIONS(5633), + [anon_sym__Atomic] = ACTIONS(5633), + [anon_sym_mutable] = ACTIONS(5633), + [anon_sym_explicit] = ACTIONS(5633), + [anon_sym_constexpr] = ACTIONS(5633), + [anon_sym_unsigned] = ACTIONS(5633), + [anon_sym_long] = ACTIONS(5633), + [anon_sym_short] = ACTIONS(5633), + [sym_primitive_type] = ACTIONS(5633), + [anon_sym_enum] = ACTIONS(5633), + [anon_sym_struct] = ACTIONS(5633), + [anon_sym_union] = ACTIONS(5633), + [anon_sym_if] = ACTIONS(5633), + [anon_sym_else] = ACTIONS(5633), + [anon_sym_switch] = ACTIONS(5633), + [anon_sym_case] = ACTIONS(5633), + [anon_sym_default] = ACTIONS(5633), + [anon_sym_while] = ACTIONS(5633), + [anon_sym_do] = ACTIONS(5633), + [anon_sym_for] = ACTIONS(5633), + [anon_sym_return] = ACTIONS(5633), + [anon_sym_break] = ACTIONS(5633), + [anon_sym_continue] = ACTIONS(5633), + [anon_sym_goto] = ACTIONS(5633), + [anon_sym_AMP] = ACTIONS(5631), + [anon_sym_BANG] = ACTIONS(5631), + [anon_sym_TILDE] = ACTIONS(5631), + [anon_sym_PLUS] = ACTIONS(5633), + [anon_sym_DASH] = ACTIONS(5633), + [anon_sym_DASH_DASH] = ACTIONS(5631), + [anon_sym_PLUS_PLUS] = ACTIONS(5631), + [anon_sym_sizeof] = ACTIONS(5633), + [sym_number_literal] = ACTIONS(5631), + [sym_char_literal] = ACTIONS(5631), + [sym_string_literal] = ACTIONS(5631), + [sym_true] = ACTIONS(5633), + [sym_false] = ACTIONS(5633), + [sym_null] = ACTIONS(5633), + [sym_identifier] = ACTIONS(5633), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(5633), + [sym_auto] = ACTIONS(5633), + [anon_sym_typename] = ACTIONS(5633), + [anon_sym_new] = ACTIONS(5633), + [anon_sym_COLON_COLON] = ACTIONS(5631), + [anon_sym_delete] = ACTIONS(5633), + [sym_nullptr] = ACTIONS(5633), }, - [3041] = { - [sym__type_declarator] = STATE(3085), + [3083] = { + [sym__type_declarator] = STATE(3132), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -123779,16 +125862,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [3042] = { + [3084] = { [sym_type_qualifier] = STATE(219), - [sym__type_specifier] = STATE(3086), - [sym_sized_type_specifier] = STATE(3086), - [sym_enum_specifier] = STATE(3086), - [sym_struct_specifier] = STATE(3086), - [sym_union_specifier] = STATE(3086), - [sym_macro_type_specifier] = STATE(3086), - [sym_class_specifier] = STATE(3086), - [sym_dependent_type] = STATE(3086), + [sym__type_specifier] = STATE(3133), + [sym_sized_type_specifier] = STATE(3133), + [sym_enum_specifier] = STATE(3133), + [sym_struct_specifier] = STATE(3133), + [sym_union_specifier] = STATE(3133), + [sym_macro_type_specifier] = STATE(3133), + [sym_class_specifier] = STATE(3133), + [sym_dependent_type] = STATE(3133), [sym_template_type] = STATE(62), [sym_scoped_type_identifier] = STATE(63), [sym_scoped_namespace_identifier] = STATE(64), @@ -123804,96 +125887,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsigned] = ACTIONS(95), [anon_sym_long] = ACTIONS(95), [anon_sym_short] = ACTIONS(95), - [sym_primitive_type] = ACTIONS(7200), + [sym_primitive_type] = ACTIONS(7298), [anon_sym_enum] = ACTIONS(99), [anon_sym_struct] = ACTIONS(101), [anon_sym_union] = ACTIONS(103), [sym_identifier] = ACTIONS(105), [sym_comment] = ACTIONS(49), [anon_sym_class] = ACTIONS(107), - [sym_auto] = ACTIONS(7200), + [sym_auto] = ACTIONS(7298), [anon_sym_typename] = ACTIONS(109), [anon_sym_COLON_COLON] = ACTIONS(111), }, - [3043] = { + [3085] = { [sym_parameter_list] = STATE(332), [sym_argument_list] = STATE(333), [sym_initializer_list] = STATE(333), - [aux_sym_declaration_repeat1] = STATE(3088), + [aux_sym_declaration_repeat1] = STATE(3135), [anon_sym_LPAREN] = ACTIONS(536), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_SEMI] = ACTIONS(7300), [anon_sym_LBRACE] = ACTIONS(548), [anon_sym_LBRACK] = ACTIONS(208), [anon_sym_EQ] = ACTIONS(544), [sym_comment] = ACTIONS(49), }, - [3044] = { - [aux_sym_declaration_repeat1] = STATE(3088), + [3086] = { + [aux_sym_declaration_repeat1] = STATE(3135), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_SEMI] = ACTIONS(7300), [sym_comment] = ACTIONS(49), }, - [3045] = { - [sym_compound_statement] = STATE(3089), - [sym_labeled_statement] = STATE(3089), - [sym_expression_statement] = STATE(3089), - [sym_if_statement] = STATE(3089), - [sym_switch_statement] = STATE(3089), - [sym_case_statement] = STATE(3089), - [sym_while_statement] = STATE(3089), - [sym_do_statement] = STATE(3089), - [sym_for_statement] = STATE(3089), - [sym_return_statement] = STATE(3089), - [sym_break_statement] = STATE(3089), - [sym_continue_statement] = STATE(3089), - [sym_goto_statement] = STATE(3089), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3089), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3087] = { + [sym_compound_statement] = STATE(3136), + [sym_labeled_statement] = STATE(3136), + [sym_expression_statement] = STATE(3136), + [sym_if_statement] = STATE(3136), + [sym_switch_statement] = STATE(3136), + [sym_case_statement] = STATE(3136), + [sym_while_statement] = STATE(3136), + [sym_do_statement] = STATE(3136), + [sym_for_statement] = STATE(3136), + [sym_return_statement] = STATE(3136), + [sym_break_statement] = STATE(3136), + [sym_continue_statement] = STATE(3136), + [sym_goto_statement] = STATE(3136), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3136), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -123902,103 +125985,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3046] = { - [sym__expression] = STATE(3090), - [sym_conditional_expression] = STATE(3090), - [sym_assignment_expression] = STATE(3090), - [sym_pointer_expression] = STATE(3090), - [sym_logical_expression] = STATE(3090), - [sym_bitwise_expression] = STATE(3090), - [sym_equality_expression] = STATE(3090), - [sym_relational_expression] = STATE(3090), - [sym_shift_expression] = STATE(3090), - [sym_math_expression] = STATE(3090), - [sym_cast_expression] = STATE(3090), - [sym_sizeof_expression] = STATE(3090), - [sym_subscript_expression] = STATE(3090), - [sym_call_expression] = STATE(3090), - [sym_field_expression] = STATE(3090), - [sym_compound_literal_expression] = STATE(3090), - [sym_parenthesized_expression] = STATE(3090), - [sym_concatenated_string] = STATE(3090), + [3088] = { + [sym__expression] = STATE(3137), + [sym_conditional_expression] = STATE(3137), + [sym_assignment_expression] = STATE(3137), + [sym_pointer_expression] = STATE(3137), + [sym_logical_expression] = STATE(3137), + [sym_bitwise_expression] = STATE(3137), + [sym_equality_expression] = STATE(3137), + [sym_relational_expression] = STATE(3137), + [sym_shift_expression] = STATE(3137), + [sym_math_expression] = STATE(3137), + [sym_cast_expression] = STATE(3137), + [sym_sizeof_expression] = STATE(3137), + [sym_subscript_expression] = STATE(3137), + [sym_call_expression] = STATE(3137), + [sym_field_expression] = STATE(3137), + [sym_compound_literal_expression] = STATE(3137), + [sym_parenthesized_expression] = STATE(3137), + [sym_concatenated_string] = STATE(3137), [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3090), - [sym_new_expression] = STATE(3090), - [sym_delete_expression] = STATE(3090), - [sym_lambda_expression] = STATE(3090), + [sym_template_function] = STATE(3137), + [sym_new_expression] = STATE(3137), + [sym_delete_expression] = STATE(3137), + [sym_lambda_expression] = STATE(3137), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7204), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7204), - [sym_char_literal] = ACTIONS(7204), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7206), - [sym_false] = ACTIONS(7206), - [sym_null] = ACTIONS(7206), + [sym_raw_string_literal] = ACTIONS(7302), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7302), + [sym_char_literal] = ACTIONS(7302), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7304), + [sym_false] = ACTIONS(7304), + [sym_null] = ACTIONS(7304), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7206), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7304), }, - [3047] = { - [sym__expression] = STATE(3092), - [sym_conditional_expression] = STATE(3092), - [sym_assignment_expression] = STATE(3092), - [sym_pointer_expression] = STATE(3092), - [sym_logical_expression] = STATE(3092), - [sym_bitwise_expression] = STATE(3092), - [sym_equality_expression] = STATE(3092), - [sym_relational_expression] = STATE(3092), - [sym_shift_expression] = STATE(3092), - [sym_math_expression] = STATE(3092), - [sym_cast_expression] = STATE(3092), - [sym_sizeof_expression] = STATE(3092), - [sym_subscript_expression] = STATE(3092), - [sym_call_expression] = STATE(3092), - [sym_field_expression] = STATE(3092), - [sym_compound_literal_expression] = STATE(3092), - [sym_parenthesized_expression] = STATE(3092), - [sym_concatenated_string] = STATE(3092), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3092), - [sym_new_expression] = STATE(3092), - [sym_delete_expression] = STATE(3092), - [sym_lambda_expression] = STATE(3092), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7208), + [3089] = { + [sym__expression] = STATE(3139), + [sym_conditional_expression] = STATE(3139), + [sym_assignment_expression] = STATE(3139), + [sym_pointer_expression] = STATE(3139), + [sym_logical_expression] = STATE(3139), + [sym_bitwise_expression] = STATE(3139), + [sym_equality_expression] = STATE(3139), + [sym_relational_expression] = STATE(3139), + [sym_shift_expression] = STATE(3139), + [sym_math_expression] = STATE(3139), + [sym_cast_expression] = STATE(3139), + [sym_sizeof_expression] = STATE(3139), + [sym_subscript_expression] = STATE(3139), + [sym_call_expression] = STATE(3139), + [sym_field_expression] = STATE(3139), + [sym_compound_literal_expression] = STATE(3139), + [sym_parenthesized_expression] = STATE(3139), + [sym_concatenated_string] = STATE(3139), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3139), + [sym_new_expression] = STATE(3139), + [sym_delete_expression] = STATE(3139), + [sym_lambda_expression] = STATE(3139), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7306), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7210), + [anon_sym_RPAREN] = ACTIONS(7308), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -124009,91 +126092,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7208), - [sym_char_literal] = ACTIONS(7208), + [sym_number_literal] = ACTIONS(7306), + [sym_char_literal] = ACTIONS(7306), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7212), - [sym_false] = ACTIONS(7212), - [sym_null] = ACTIONS(7212), + [sym_true] = ACTIONS(7310), + [sym_false] = ACTIONS(7310), + [sym_null] = ACTIONS(7310), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7212), + [sym_nullptr] = ACTIONS(7310), }, - [3048] = { + [3090] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7214), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7312), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3049] = { - [sym__expression] = STATE(3094), - [sym_conditional_expression] = STATE(3094), - [sym_assignment_expression] = STATE(3094), - [sym_pointer_expression] = STATE(3094), - [sym_logical_expression] = STATE(3094), - [sym_bitwise_expression] = STATE(3094), - [sym_equality_expression] = STATE(3094), - [sym_relational_expression] = STATE(3094), - [sym_shift_expression] = STATE(3094), - [sym_math_expression] = STATE(3094), - [sym_cast_expression] = STATE(3094), - [sym_sizeof_expression] = STATE(3094), - [sym_subscript_expression] = STATE(3094), - [sym_call_expression] = STATE(3094), - [sym_field_expression] = STATE(3094), - [sym_compound_literal_expression] = STATE(3094), - [sym_parenthesized_expression] = STATE(3094), - [sym_concatenated_string] = STATE(3094), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3094), - [sym_new_expression] = STATE(3094), - [sym_delete_expression] = STATE(3094), - [sym_lambda_expression] = STATE(3094), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7216), + [3091] = { + [sym__expression] = STATE(3141), + [sym_conditional_expression] = STATE(3141), + [sym_assignment_expression] = STATE(3141), + [sym_pointer_expression] = STATE(3141), + [sym_logical_expression] = STATE(3141), + [sym_bitwise_expression] = STATE(3141), + [sym_equality_expression] = STATE(3141), + [sym_relational_expression] = STATE(3141), + [sym_shift_expression] = STATE(3141), + [sym_math_expression] = STATE(3141), + [sym_cast_expression] = STATE(3141), + [sym_sizeof_expression] = STATE(3141), + [sym_subscript_expression] = STATE(3141), + [sym_call_expression] = STATE(3141), + [sym_field_expression] = STATE(3141), + [sym_compound_literal_expression] = STATE(3141), + [sym_parenthesized_expression] = STATE(3141), + [sym_concatenated_string] = STATE(3141), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3141), + [sym_new_expression] = STATE(3141), + [sym_delete_expression] = STATE(3141), + [sym_lambda_expression] = STATE(3141), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7314), [anon_sym_LPAREN] = ACTIONS(1347), - [anon_sym_SEMI] = ACTIONS(7214), + [anon_sym_SEMI] = ACTIONS(7312), [anon_sym_STAR] = ACTIONS(1349), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1349), @@ -124104,200 +126187,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1357), [anon_sym_PLUS_PLUS] = ACTIONS(1357), [anon_sym_sizeof] = ACTIONS(1359), - [sym_number_literal] = ACTIONS(7216), - [sym_char_literal] = ACTIONS(7216), + [sym_number_literal] = ACTIONS(7314), + [sym_char_literal] = ACTIONS(7314), [sym_string_literal] = ACTIONS(1361), - [sym_true] = ACTIONS(7218), - [sym_false] = ACTIONS(7218), - [sym_null] = ACTIONS(7218), + [sym_true] = ACTIONS(7316), + [sym_false] = ACTIONS(7316), + [sym_null] = ACTIONS(7316), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1365), [anon_sym_delete] = ACTIONS(1367), - [sym_nullptr] = ACTIONS(7218), + [sym_nullptr] = ACTIONS(7316), }, - [3050] = { - [sym__expression] = STATE(3095), - [sym_conditional_expression] = STATE(3095), - [sym_assignment_expression] = STATE(3095), - [sym_pointer_expression] = STATE(3095), - [sym_logical_expression] = STATE(3095), - [sym_bitwise_expression] = STATE(3095), - [sym_equality_expression] = STATE(3095), - [sym_relational_expression] = STATE(3095), - [sym_shift_expression] = STATE(3095), - [sym_math_expression] = STATE(3095), - [sym_cast_expression] = STATE(3095), - [sym_sizeof_expression] = STATE(3095), - [sym_subscript_expression] = STATE(3095), - [sym_call_expression] = STATE(3095), - [sym_field_expression] = STATE(3095), - [sym_compound_literal_expression] = STATE(3095), - [sym_parenthesized_expression] = STATE(3095), - [sym_concatenated_string] = STATE(3095), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3095), - [sym_new_expression] = STATE(3095), - [sym_delete_expression] = STATE(3095), - [sym_lambda_expression] = STATE(3095), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7220), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2949), - [anon_sym_DASH] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_sizeof] = ACTIONS(2953), - [sym_number_literal] = ACTIONS(7220), - [sym_char_literal] = ACTIONS(7220), - [sym_string_literal] = ACTIONS(2955), - [sym_true] = ACTIONS(7222), - [sym_false] = ACTIONS(7222), - [sym_null] = ACTIONS(7222), + [3092] = { + [sym__expression] = STATE(3142), + [sym_conditional_expression] = STATE(3142), + [sym_assignment_expression] = STATE(3142), + [sym_pointer_expression] = STATE(3142), + [sym_logical_expression] = STATE(3142), + [sym_bitwise_expression] = STATE(3142), + [sym_equality_expression] = STATE(3142), + [sym_relational_expression] = STATE(3142), + [sym_shift_expression] = STATE(3142), + [sym_math_expression] = STATE(3142), + [sym_cast_expression] = STATE(3142), + [sym_sizeof_expression] = STATE(3142), + [sym_subscript_expression] = STATE(3142), + [sym_call_expression] = STATE(3142), + [sym_field_expression] = STATE(3142), + [sym_compound_literal_expression] = STATE(3142), + [sym_parenthesized_expression] = STATE(3142), + [sym_concatenated_string] = STATE(3142), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3142), + [sym_new_expression] = STATE(3142), + [sym_delete_expression] = STATE(3142), + [sym_lambda_expression] = STATE(3142), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7318), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_STAR] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_BANG] = ACTIONS(2947), + [anon_sym_TILDE] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2951), + [anon_sym_DASH] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2953), + [anon_sym_sizeof] = ACTIONS(2955), + [sym_number_literal] = ACTIONS(7318), + [sym_char_literal] = ACTIONS(7318), + [sym_string_literal] = ACTIONS(2957), + [sym_true] = ACTIONS(7320), + [sym_false] = ACTIONS(7320), + [sym_null] = ACTIONS(7320), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(2959), - [anon_sym_delete] = ACTIONS(2961), - [sym_nullptr] = ACTIONS(7222), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_delete] = ACTIONS(2963), + [sym_nullptr] = ACTIONS(7320), }, - [3051] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), + [3093] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), }, - [3052] = { - [sym_compound_statement] = STATE(3096), - [sym_labeled_statement] = STATE(3096), - [sym_expression_statement] = STATE(3096), - [sym_if_statement] = STATE(3096), - [sym_switch_statement] = STATE(3096), - [sym_case_statement] = STATE(3096), - [sym_while_statement] = STATE(3096), - [sym_do_statement] = STATE(3096), - [sym_for_statement] = STATE(3096), - [sym_return_statement] = STATE(3096), - [sym_break_statement] = STATE(3096), - [sym_continue_statement] = STATE(3096), - [sym_goto_statement] = STATE(3096), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(3096), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [3094] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), + }, + [3095] = { + [sym_compound_statement] = STATE(3143), + [sym_labeled_statement] = STATE(3143), + [sym_expression_statement] = STATE(3143), + [sym_if_statement] = STATE(3143), + [sym_switch_statement] = STATE(3143), + [sym_case_statement] = STATE(3143), + [sym_while_statement] = STATE(3143), + [sym_do_statement] = STATE(3143), + [sym_for_statement] = STATE(3143), + [sym_return_statement] = STATE(3143), + [sym_break_statement] = STATE(3143), + [sym_continue_statement] = STATE(3143), + [sym_goto_statement] = STATE(3143), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3143), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -124306,176 +126457,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [3053] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7224), + [3096] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7322), [sym_comment] = ACTIONS(49), }, - [3054] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(7226), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [3097] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(7324), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [3055] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_else] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), + [3098] = { + [sym_compound_statement] = STATE(3146), + [sym_labeled_statement] = STATE(3146), + [sym_expression_statement] = STATE(3146), + [sym_if_statement] = STATE(3146), + [sym_switch_statement] = STATE(3146), + [sym_case_statement] = STATE(3146), + [sym_while_statement] = STATE(3146), + [sym_do_statement] = STATE(3146), + [sym_for_statement] = STATE(3146), + [sym_return_statement] = STATE(3146), + [sym_break_statement] = STATE(3146), + [sym_continue_statement] = STATE(3146), + [sym_goto_statement] = STATE(3146), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3146), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6535), }, - [3056] = { + [3099] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_else] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [3100] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7228), + [anon_sym_SEMI] = ACTIONS(7326), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [3057] = { - [sym__type_declarator] = STATE(3100), + [3101] = { + [sym__type_declarator] = STATE(3148), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -124484,7 +126716,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [3058] = { + [3102] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -124555,184 +126787,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [3059] = { + [3103] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7230), + [anon_sym_SEMI] = ACTIONS(7328), [sym_comment] = ACTIONS(49), }, - [3060] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_else] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [3104] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_else] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), }, - [3061] = { + [3105] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7232), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7330), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3062] = { - [sym_compound_statement] = STATE(3103), - [sym_labeled_statement] = STATE(3103), - [sym_expression_statement] = STATE(3103), - [sym_if_statement] = STATE(3103), - [sym_switch_statement] = STATE(3103), - [sym_case_statement] = STATE(3103), - [sym_while_statement] = STATE(3103), - [sym_do_statement] = STATE(3103), - [sym_for_statement] = STATE(3103), - [sym_return_statement] = STATE(3103), - [sym_break_statement] = STATE(3103), - [sym_continue_statement] = STATE(3103), - [sym_goto_statement] = STATE(3103), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3103), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3106] = { + [sym_compound_statement] = STATE(3151), + [sym_labeled_statement] = STATE(3151), + [sym_expression_statement] = STATE(3151), + [sym_if_statement] = STATE(3151), + [sym_switch_statement] = STATE(3151), + [sym_case_statement] = STATE(3151), + [sym_while_statement] = STATE(3151), + [sym_do_statement] = STATE(3151), + [sym_for_statement] = STATE(3151), + [sym_return_statement] = STATE(3151), + [sym_break_statement] = STATE(3151), + [sym_continue_statement] = STATE(3151), + [sym_goto_statement] = STATE(3151), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3151), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -124741,93 +126973,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3063] = { + [3107] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3105), + [aux_sym_for_statement_repeat1] = STATE(3153), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7234), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7332), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3064] = { - [sym__expression] = STATE(3106), - [sym_conditional_expression] = STATE(3106), - [sym_assignment_expression] = STATE(3106), - [sym_pointer_expression] = STATE(3106), - [sym_logical_expression] = STATE(3106), - [sym_bitwise_expression] = STATE(3106), - [sym_equality_expression] = STATE(3106), - [sym_relational_expression] = STATE(3106), - [sym_shift_expression] = STATE(3106), - [sym_math_expression] = STATE(3106), - [sym_cast_expression] = STATE(3106), - [sym_sizeof_expression] = STATE(3106), - [sym_subscript_expression] = STATE(3106), - [sym_call_expression] = STATE(3106), - [sym_field_expression] = STATE(3106), - [sym_compound_literal_expression] = STATE(3106), - [sym_parenthesized_expression] = STATE(3106), - [sym_concatenated_string] = STATE(3106), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3106), - [sym_new_expression] = STATE(3106), - [sym_delete_expression] = STATE(3106), - [sym_lambda_expression] = STATE(3106), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7236), + [3108] = { + [sym__expression] = STATE(3154), + [sym_conditional_expression] = STATE(3154), + [sym_assignment_expression] = STATE(3154), + [sym_pointer_expression] = STATE(3154), + [sym_logical_expression] = STATE(3154), + [sym_bitwise_expression] = STATE(3154), + [sym_equality_expression] = STATE(3154), + [sym_relational_expression] = STATE(3154), + [sym_shift_expression] = STATE(3154), + [sym_math_expression] = STATE(3154), + [sym_cast_expression] = STATE(3154), + [sym_sizeof_expression] = STATE(3154), + [sym_subscript_expression] = STATE(3154), + [sym_call_expression] = STATE(3154), + [sym_field_expression] = STATE(3154), + [sym_compound_literal_expression] = STATE(3154), + [sym_parenthesized_expression] = STATE(3154), + [sym_concatenated_string] = STATE(3154), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3154), + [sym_new_expression] = STATE(3154), + [sym_delete_expression] = STATE(3154), + [sym_lambda_expression] = STATE(3154), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7334), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7234), + [anon_sym_RPAREN] = ACTIONS(7332), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -124838,231 +127070,231 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7236), - [sym_char_literal] = ACTIONS(7236), + [sym_number_literal] = ACTIONS(7334), + [sym_char_literal] = ACTIONS(7334), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7238), - [sym_false] = ACTIONS(7238), - [sym_null] = ACTIONS(7238), + [sym_true] = ACTIONS(7336), + [sym_false] = ACTIONS(7336), + [sym_null] = ACTIONS(7336), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7238), + [sym_nullptr] = ACTIONS(7336), }, - [3065] = { + [3109] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7240), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7338), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3066] = { + [3110] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7242), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7340), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3067] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), + [3111] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), }, - [3068] = { - [sym_compound_statement] = STATE(3109), - [sym_labeled_statement] = STATE(3109), - [sym_expression_statement] = STATE(3109), - [sym_if_statement] = STATE(3109), - [sym_switch_statement] = STATE(3109), - [sym_case_statement] = STATE(3109), - [sym_while_statement] = STATE(3109), - [sym_do_statement] = STATE(3109), - [sym_for_statement] = STATE(3109), - [sym_return_statement] = STATE(3109), - [sym_break_statement] = STATE(3109), - [sym_continue_statement] = STATE(3109), - [sym_goto_statement] = STATE(3109), - [sym__expression] = STATE(1418), - [sym_comma_expression] = STATE(1419), - [sym_conditional_expression] = STATE(1418), - [sym_assignment_expression] = STATE(1418), - [sym_pointer_expression] = STATE(1418), - [sym_logical_expression] = STATE(1418), - [sym_bitwise_expression] = STATE(1418), - [sym_equality_expression] = STATE(1418), - [sym_relational_expression] = STATE(1418), - [sym_shift_expression] = STATE(1418), - [sym_math_expression] = STATE(1418), - [sym_cast_expression] = STATE(1418), - [sym_sizeof_expression] = STATE(1418), - [sym_subscript_expression] = STATE(1418), - [sym_call_expression] = STATE(1418), - [sym_field_expression] = STATE(1418), - [sym_compound_literal_expression] = STATE(1418), - [sym_parenthesized_expression] = STATE(1418), - [sym_concatenated_string] = STATE(1418), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1418), - [sym_for_range_loop] = STATE(3109), - [sym_new_expression] = STATE(1418), - [sym_delete_expression] = STATE(1418), - [sym_lambda_expression] = STATE(1418), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(2877), + [3112] = { + [sym_compound_statement] = STATE(3157), + [sym_labeled_statement] = STATE(3157), + [sym_expression_statement] = STATE(3157), + [sym_if_statement] = STATE(3157), + [sym_switch_statement] = STATE(3157), + [sym_case_statement] = STATE(3157), + [sym_while_statement] = STATE(3157), + [sym_do_statement] = STATE(3157), + [sym_for_statement] = STATE(3157), + [sym_return_statement] = STATE(3157), + [sym_break_statement] = STATE(3157), + [sym_continue_statement] = STATE(3157), + [sym_goto_statement] = STATE(3157), + [sym__expression] = STATE(1419), + [sym_comma_expression] = STATE(1420), + [sym_conditional_expression] = STATE(1419), + [sym_assignment_expression] = STATE(1419), + [sym_pointer_expression] = STATE(1419), + [sym_logical_expression] = STATE(1419), + [sym_bitwise_expression] = STATE(1419), + [sym_equality_expression] = STATE(1419), + [sym_relational_expression] = STATE(1419), + [sym_shift_expression] = STATE(1419), + [sym_math_expression] = STATE(1419), + [sym_cast_expression] = STATE(1419), + [sym_sizeof_expression] = STATE(1419), + [sym_subscript_expression] = STATE(1419), + [sym_call_expression] = STATE(1419), + [sym_field_expression] = STATE(1419), + [sym_compound_literal_expression] = STATE(1419), + [sym_parenthesized_expression] = STATE(1419), + [sym_concatenated_string] = STATE(1419), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1419), + [sym_for_range_loop] = STATE(3157), + [sym_new_expression] = STATE(1419), + [sym_delete_expression] = STATE(1419), + [sym_lambda_expression] = STATE(1419), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(2879), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(2897), - [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2903), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_switch] = ACTIONS(2905), - [anon_sym_case] = ACTIONS(2907), - [anon_sym_default] = ACTIONS(2909), - [anon_sym_while] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2923), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_switch] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2911), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2919), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2923), + [anon_sym_goto] = ACTIONS(2925), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -125071,286 +127303,367 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(2877), - [sym_char_literal] = ACTIONS(2877), + [sym_number_literal] = ACTIONS(2879), + [sym_char_literal] = ACTIONS(2879), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(2925), - [sym_false] = ACTIONS(2925), - [sym_null] = ACTIONS(2925), - [sym_identifier] = ACTIONS(5379), + [sym_true] = ACTIONS(2927), + [sym_false] = ACTIONS(2927), + [sym_null] = ACTIONS(2927), + [sym_identifier] = ACTIONS(5397), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(2925), + [sym_nullptr] = ACTIONS(2927), }, - [3069] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_RBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_else] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), + [3113] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_RBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_else] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), }, - [3070] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_RBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), + [3114] = { + [sym_compound_statement] = STATE(3158), + [sym_labeled_statement] = STATE(3158), + [sym_expression_statement] = STATE(3158), + [sym_if_statement] = STATE(3158), + [sym_switch_statement] = STATE(3158), + [sym_case_statement] = STATE(3158), + [sym_while_statement] = STATE(3158), + [sym_do_statement] = STATE(3158), + [sym_for_statement] = STATE(3158), + [sym_return_statement] = STATE(3158), + [sym_break_statement] = STATE(3158), + [sym_continue_statement] = STATE(3158), + [sym_goto_statement] = STATE(3158), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3158), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(5566), }, - [3071] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_RBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_else] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), + [3115] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_RBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_else] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), }, - [3072] = { - [sym_compound_statement] = STATE(3110), - [sym_labeled_statement] = STATE(3110), - [sym_expression_statement] = STATE(3110), - [sym_if_statement] = STATE(3110), - [sym_switch_statement] = STATE(3110), - [sym_case_statement] = STATE(3110), - [sym_while_statement] = STATE(3110), - [sym_do_statement] = STATE(3110), - [sym_for_statement] = STATE(3110), - [sym_return_statement] = STATE(3110), - [sym_break_statement] = STATE(3110), - [sym_continue_statement] = STATE(3110), - [sym_goto_statement] = STATE(3110), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3110), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3116] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_RBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_else] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), + }, + [3117] = { + [sym_compound_statement] = STATE(3159), + [sym_labeled_statement] = STATE(3159), + [sym_expression_statement] = STATE(3159), + [sym_if_statement] = STATE(3159), + [sym_switch_statement] = STATE(3159), + [sym_case_statement] = STATE(3159), + [sym_while_statement] = STATE(3159), + [sym_do_statement] = STATE(3159), + [sym_for_statement] = STATE(3159), + [sym_return_statement] = STATE(3159), + [sym_break_statement] = STATE(3159), + [sym_continue_statement] = STATE(3159), + [sym_goto_statement] = STATE(3159), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3159), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -125359,197 +127672,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3073] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7244), + [3118] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7342), [sym_comment] = ACTIONS(49), }, - [3074] = { + [3119] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3112), + [aux_sym_for_statement_repeat1] = STATE(3161), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7244), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7342), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3075] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_RBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_else] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), + [3120] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_RBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_else] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), }, - [3076] = { - [sym_compound_statement] = STATE(2881), - [sym_labeled_statement] = STATE(2881), - [sym_expression_statement] = STATE(2881), - [sym_if_statement] = STATE(2881), - [sym_switch_statement] = STATE(2881), - [sym_case_statement] = STATE(2881), - [sym_while_statement] = STATE(2881), - [sym_do_statement] = STATE(2881), - [sym_for_statement] = STATE(2881), - [sym_return_statement] = STATE(2881), - [sym_break_statement] = STATE(2881), - [sym_continue_statement] = STATE(2881), - [sym_goto_statement] = STATE(2881), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2881), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3121] = { + [sym_compound_statement] = STATE(2908), + [sym_labeled_statement] = STATE(2908), + [sym_expression_statement] = STATE(2908), + [sym_if_statement] = STATE(2908), + [sym_switch_statement] = STATE(2908), + [sym_case_statement] = STATE(2908), + [sym_while_statement] = STATE(2908), + [sym_do_statement] = STATE(2908), + [sym_for_statement] = STATE(2908), + [sym_return_statement] = STATE(2908), + [sym_break_statement] = STATE(2908), + [sym_continue_statement] = STATE(2908), + [sym_goto_statement] = STATE(2908), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2908), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -125558,79 +127871,84 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3077] = { - [sym_compound_statement] = STATE(2883), - [sym_labeled_statement] = STATE(2883), - [sym_expression_statement] = STATE(2883), - [sym_if_statement] = STATE(2883), - [sym_switch_statement] = STATE(2883), - [sym_case_statement] = STATE(2883), - [sym_while_statement] = STATE(2883), - [sym_do_statement] = STATE(2883), - [sym_for_statement] = STATE(2883), - [sym_return_statement] = STATE(2883), - [sym_break_statement] = STATE(2883), - [sym_continue_statement] = STATE(2883), - [sym_goto_statement] = STATE(2883), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2883), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3122] = { + [anon_sym_else] = ACTIONS(7344), + [anon_sym_while] = ACTIONS(6611), + [sym_comment] = ACTIONS(49), + }, + [3123] = { + [sym_compound_statement] = STATE(2911), + [sym_labeled_statement] = STATE(2911), + [sym_expression_statement] = STATE(2911), + [sym_if_statement] = STATE(2911), + [sym_switch_statement] = STATE(2911), + [sym_case_statement] = STATE(2911), + [sym_while_statement] = STATE(2911), + [sym_do_statement] = STATE(2911), + [sym_for_statement] = STATE(2911), + [sym_return_statement] = STATE(2911), + [sym_break_statement] = STATE(2911), + [sym_continue_statement] = STATE(2911), + [sym_goto_statement] = STATE(2911), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2911), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -125639,99 +127957,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3078] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7246), + [3124] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7346), [sym_comment] = ACTIONS(49), }, - [3079] = { + [3125] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3114), + [aux_sym_for_statement_repeat1] = STATE(3164), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7246), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7346), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3080] = { - [sym__expression] = STATE(3115), - [sym_conditional_expression] = STATE(3115), - [sym_assignment_expression] = STATE(3115), - [sym_pointer_expression] = STATE(3115), - [sym_logical_expression] = STATE(3115), - [sym_bitwise_expression] = STATE(3115), - [sym_equality_expression] = STATE(3115), - [sym_relational_expression] = STATE(3115), - [sym_shift_expression] = STATE(3115), - [sym_math_expression] = STATE(3115), - [sym_cast_expression] = STATE(3115), - [sym_sizeof_expression] = STATE(3115), - [sym_subscript_expression] = STATE(3115), - [sym_call_expression] = STATE(3115), - [sym_field_expression] = STATE(3115), - [sym_compound_literal_expression] = STATE(3115), - [sym_parenthesized_expression] = STATE(3115), - [sym_concatenated_string] = STATE(3115), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3115), - [sym_new_expression] = STATE(3115), - [sym_delete_expression] = STATE(3115), - [sym_lambda_expression] = STATE(3115), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7248), + [3126] = { + [sym__expression] = STATE(3165), + [sym_conditional_expression] = STATE(3165), + [sym_assignment_expression] = STATE(3165), + [sym_pointer_expression] = STATE(3165), + [sym_logical_expression] = STATE(3165), + [sym_bitwise_expression] = STATE(3165), + [sym_equality_expression] = STATE(3165), + [sym_relational_expression] = STATE(3165), + [sym_shift_expression] = STATE(3165), + [sym_math_expression] = STATE(3165), + [sym_cast_expression] = STATE(3165), + [sym_sizeof_expression] = STATE(3165), + [sym_subscript_expression] = STATE(3165), + [sym_call_expression] = STATE(3165), + [sym_field_expression] = STATE(3165), + [sym_compound_literal_expression] = STATE(3165), + [sym_parenthesized_expression] = STATE(3165), + [sym_concatenated_string] = STATE(3165), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3165), + [sym_new_expression] = STATE(3165), + [sym_delete_expression] = STATE(3165), + [sym_lambda_expression] = STATE(3165), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7348), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7246), + [anon_sym_RPAREN] = ACTIONS(7346), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -125742,79 +128060,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7248), - [sym_char_literal] = ACTIONS(7248), + [sym_number_literal] = ACTIONS(7348), + [sym_char_literal] = ACTIONS(7348), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7250), - [sym_false] = ACTIONS(7250), - [sym_null] = ACTIONS(7250), + [sym_true] = ACTIONS(7350), + [sym_false] = ACTIONS(7350), + [sym_null] = ACTIONS(7350), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7250), + [sym_nullptr] = ACTIONS(7350), }, - [3081] = { - [sym_compound_statement] = STATE(2887), - [sym_labeled_statement] = STATE(2887), - [sym_expression_statement] = STATE(2887), - [sym_if_statement] = STATE(2887), - [sym_switch_statement] = STATE(2887), - [sym_case_statement] = STATE(2887), - [sym_while_statement] = STATE(2887), - [sym_do_statement] = STATE(2887), - [sym_for_statement] = STATE(2887), - [sym_return_statement] = STATE(2887), - [sym_break_statement] = STATE(2887), - [sym_continue_statement] = STATE(2887), - [sym_goto_statement] = STATE(2887), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2887), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [3127] = { + [sym_compound_statement] = STATE(2915), + [sym_labeled_statement] = STATE(2915), + [sym_expression_statement] = STATE(2915), + [sym_if_statement] = STATE(2915), + [sym_switch_statement] = STATE(2915), + [sym_case_statement] = STATE(2915), + [sym_while_statement] = STATE(2915), + [sym_do_statement] = STATE(2915), + [sym_for_statement] = STATE(2915), + [sym_return_statement] = STATE(2915), + [sym_break_statement] = STATE(2915), + [sym_continue_statement] = STATE(2915), + [sym_goto_statement] = STATE(2915), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(2915), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -125823,171 +128141,252 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3082] = { - [anon_sym_else] = ACTIONS(7196), - [anon_sym_while] = ACTIONS(7196), + [3128] = { + [anon_sym_else] = ACTIONS(7292), + [anon_sym_while] = ACTIONS(7292), [sym_comment] = ACTIONS(49), }, - [3083] = { - [sym_raw_string_literal] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6237), - [anon_sym_LPAREN] = ACTIONS(6235), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6237), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6237), - [sym_preproc_directive] = ACTIONS(6237), - [anon_sym_SEMI] = ACTIONS(6235), - [anon_sym_typedef] = ACTIONS(6237), - [anon_sym_extern] = ACTIONS(6237), - [anon_sym_LBRACE] = ACTIONS(6235), - [anon_sym_STAR] = ACTIONS(6235), - [anon_sym_LBRACK] = ACTIONS(6235), - [anon_sym_static] = ACTIONS(6237), - [anon_sym_register] = ACTIONS(6237), - [anon_sym_inline] = ACTIONS(6237), - [anon_sym_const] = ACTIONS(6237), - [anon_sym_restrict] = ACTIONS(6237), - [anon_sym_volatile] = ACTIONS(6237), - [anon_sym__Atomic] = ACTIONS(6237), - [anon_sym_mutable] = ACTIONS(6237), - [anon_sym_explicit] = ACTIONS(6237), - [anon_sym_constexpr] = ACTIONS(6237), - [anon_sym_unsigned] = ACTIONS(6237), - [anon_sym_long] = ACTIONS(6237), - [anon_sym_short] = ACTIONS(6237), - [sym_primitive_type] = ACTIONS(6237), - [anon_sym_enum] = ACTIONS(6237), - [anon_sym_struct] = ACTIONS(6237), - [anon_sym_union] = ACTIONS(6237), - [anon_sym_if] = ACTIONS(6237), - [anon_sym_else] = ACTIONS(7252), - [anon_sym_switch] = ACTIONS(6237), - [anon_sym_case] = ACTIONS(6237), - [anon_sym_default] = ACTIONS(6237), - [anon_sym_while] = ACTIONS(6237), - [anon_sym_do] = ACTIONS(6237), - [anon_sym_for] = ACTIONS(6237), - [anon_sym_return] = ACTIONS(6237), - [anon_sym_break] = ACTIONS(6237), - [anon_sym_continue] = ACTIONS(6237), - [anon_sym_goto] = ACTIONS(6237), - [anon_sym_AMP] = ACTIONS(6235), - [anon_sym_BANG] = ACTIONS(6235), - [anon_sym_TILDE] = ACTIONS(6235), - [anon_sym_PLUS] = ACTIONS(6237), - [anon_sym_DASH] = ACTIONS(6237), - [anon_sym_DASH_DASH] = ACTIONS(6235), - [anon_sym_PLUS_PLUS] = ACTIONS(6235), - [anon_sym_sizeof] = ACTIONS(6237), - [sym_number_literal] = ACTIONS(6235), - [sym_char_literal] = ACTIONS(6235), - [sym_string_literal] = ACTIONS(6235), - [sym_true] = ACTIONS(6237), - [sym_false] = ACTIONS(6237), - [sym_null] = ACTIONS(6237), - [sym_identifier] = ACTIONS(6237), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6237), - [sym_auto] = ACTIONS(6237), - [anon_sym_typename] = ACTIONS(6237), - [anon_sym_new] = ACTIONS(6237), - [anon_sym_COLON_COLON] = ACTIONS(6235), - [anon_sym_delete] = ACTIONS(6237), - [sym_nullptr] = ACTIONS(6237), + [3129] = { + [sym_raw_string_literal] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6269), + [anon_sym_LPAREN] = ACTIONS(6267), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6269), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6269), + [sym_preproc_directive] = ACTIONS(6269), + [anon_sym_SEMI] = ACTIONS(6267), + [anon_sym_typedef] = ACTIONS(6269), + [anon_sym_extern] = ACTIONS(6269), + [anon_sym_LBRACE] = ACTIONS(6267), + [anon_sym_STAR] = ACTIONS(6267), + [anon_sym_LBRACK] = ACTIONS(6267), + [anon_sym_static] = ACTIONS(6269), + [anon_sym_register] = ACTIONS(6269), + [anon_sym_inline] = ACTIONS(6269), + [anon_sym_const] = ACTIONS(6269), + [anon_sym_restrict] = ACTIONS(6269), + [anon_sym_volatile] = ACTIONS(6269), + [anon_sym__Atomic] = ACTIONS(6269), + [anon_sym_mutable] = ACTIONS(6269), + [anon_sym_explicit] = ACTIONS(6269), + [anon_sym_constexpr] = ACTIONS(6269), + [anon_sym_unsigned] = ACTIONS(6269), + [anon_sym_long] = ACTIONS(6269), + [anon_sym_short] = ACTIONS(6269), + [sym_primitive_type] = ACTIONS(6269), + [anon_sym_enum] = ACTIONS(6269), + [anon_sym_struct] = ACTIONS(6269), + [anon_sym_union] = ACTIONS(6269), + [anon_sym_if] = ACTIONS(6269), + [anon_sym_else] = ACTIONS(7352), + [anon_sym_switch] = ACTIONS(6269), + [anon_sym_case] = ACTIONS(6269), + [anon_sym_default] = ACTIONS(6269), + [anon_sym_while] = ACTIONS(6269), + [anon_sym_do] = ACTIONS(6269), + [anon_sym_for] = ACTIONS(6269), + [anon_sym_return] = ACTIONS(6269), + [anon_sym_break] = ACTIONS(6269), + [anon_sym_continue] = ACTIONS(6269), + [anon_sym_goto] = ACTIONS(6269), + [anon_sym_AMP] = ACTIONS(6267), + [anon_sym_BANG] = ACTIONS(6267), + [anon_sym_TILDE] = ACTIONS(6267), + [anon_sym_PLUS] = ACTIONS(6269), + [anon_sym_DASH] = ACTIONS(6269), + [anon_sym_DASH_DASH] = ACTIONS(6267), + [anon_sym_PLUS_PLUS] = ACTIONS(6267), + [anon_sym_sizeof] = ACTIONS(6269), + [sym_number_literal] = ACTIONS(6267), + [sym_char_literal] = ACTIONS(6267), + [sym_string_literal] = ACTIONS(6267), + [sym_true] = ACTIONS(6269), + [sym_false] = ACTIONS(6269), + [sym_null] = ACTIONS(6269), + [sym_identifier] = ACTIONS(6269), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6269), + [sym_auto] = ACTIONS(6269), + [anon_sym_typename] = ACTIONS(6269), + [anon_sym_new] = ACTIONS(6269), + [anon_sym_COLON_COLON] = ACTIONS(6267), + [anon_sym_delete] = ACTIONS(6269), + [sym_nullptr] = ACTIONS(6269), }, - [3084] = { - [sym_raw_string_literal] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6247), - [anon_sym_LPAREN] = ACTIONS(6245), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6247), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6247), - [sym_preproc_directive] = ACTIONS(6247), - [anon_sym_SEMI] = ACTIONS(6245), - [anon_sym_typedef] = ACTIONS(6247), - [anon_sym_extern] = ACTIONS(6247), - [anon_sym_LBRACE] = ACTIONS(6245), - [anon_sym_STAR] = ACTIONS(6245), - [anon_sym_LBRACK] = ACTIONS(6245), - [anon_sym_static] = ACTIONS(6247), - [anon_sym_register] = ACTIONS(6247), - [anon_sym_inline] = ACTIONS(6247), - [anon_sym_const] = ACTIONS(6247), - [anon_sym_restrict] = ACTIONS(6247), - [anon_sym_volatile] = ACTIONS(6247), - [anon_sym__Atomic] = ACTIONS(6247), - [anon_sym_mutable] = ACTIONS(6247), - [anon_sym_explicit] = ACTIONS(6247), - [anon_sym_constexpr] = ACTIONS(6247), - [anon_sym_unsigned] = ACTIONS(6247), - [anon_sym_long] = ACTIONS(6247), - [anon_sym_short] = ACTIONS(6247), - [sym_primitive_type] = ACTIONS(6247), - [anon_sym_enum] = ACTIONS(6247), - [anon_sym_struct] = ACTIONS(6247), - [anon_sym_union] = ACTIONS(6247), - [anon_sym_if] = ACTIONS(6247), - [anon_sym_else] = ACTIONS(6247), - [anon_sym_switch] = ACTIONS(6247), - [anon_sym_case] = ACTIONS(6247), - [anon_sym_default] = ACTIONS(6247), - [anon_sym_while] = ACTIONS(6247), - [anon_sym_do] = ACTIONS(6247), - [anon_sym_for] = ACTIONS(6247), - [anon_sym_return] = ACTIONS(6247), - [anon_sym_break] = ACTIONS(6247), - [anon_sym_continue] = ACTIONS(6247), - [anon_sym_goto] = ACTIONS(6247), - [anon_sym_AMP] = ACTIONS(6245), - [anon_sym_BANG] = ACTIONS(6245), - [anon_sym_TILDE] = ACTIONS(6245), - [anon_sym_PLUS] = ACTIONS(6247), - [anon_sym_DASH] = ACTIONS(6247), - [anon_sym_DASH_DASH] = ACTIONS(6245), - [anon_sym_PLUS_PLUS] = ACTIONS(6245), - [anon_sym_sizeof] = ACTIONS(6247), - [sym_number_literal] = ACTIONS(6245), - [sym_char_literal] = ACTIONS(6245), - [sym_string_literal] = ACTIONS(6245), - [sym_true] = ACTIONS(6247), - [sym_false] = ACTIONS(6247), - [sym_null] = ACTIONS(6247), - [sym_identifier] = ACTIONS(6247), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6247), - [sym_auto] = ACTIONS(6247), - [anon_sym_typename] = ACTIONS(6247), - [anon_sym_new] = ACTIONS(6247), - [anon_sym_COLON_COLON] = ACTIONS(6245), - [anon_sym_delete] = ACTIONS(6247), - [sym_nullptr] = ACTIONS(6247), + [3130] = { + [sym_compound_statement] = STATE(3167), + [sym_labeled_statement] = STATE(3167), + [sym_expression_statement] = STATE(3167), + [sym_if_statement] = STATE(3167), + [sym_switch_statement] = STATE(3167), + [sym_case_statement] = STATE(3167), + [sym_while_statement] = STATE(3167), + [sym_do_statement] = STATE(3167), + [sym_for_statement] = STATE(3167), + [sym_return_statement] = STATE(3167), + [sym_break_statement] = STATE(3167), + [sym_continue_statement] = STATE(3167), + [sym_goto_statement] = STATE(3167), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3167), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6760), }, - [3085] = { + [3131] = { + [sym_raw_string_literal] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6279), + [anon_sym_LPAREN] = ACTIONS(6277), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6279), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6279), + [sym_preproc_directive] = ACTIONS(6279), + [anon_sym_SEMI] = ACTIONS(6277), + [anon_sym_typedef] = ACTIONS(6279), + [anon_sym_extern] = ACTIONS(6279), + [anon_sym_LBRACE] = ACTIONS(6277), + [anon_sym_STAR] = ACTIONS(6277), + [anon_sym_LBRACK] = ACTIONS(6277), + [anon_sym_static] = ACTIONS(6279), + [anon_sym_register] = ACTIONS(6279), + [anon_sym_inline] = ACTIONS(6279), + [anon_sym_const] = ACTIONS(6279), + [anon_sym_restrict] = ACTIONS(6279), + [anon_sym_volatile] = ACTIONS(6279), + [anon_sym__Atomic] = ACTIONS(6279), + [anon_sym_mutable] = ACTIONS(6279), + [anon_sym_explicit] = ACTIONS(6279), + [anon_sym_constexpr] = ACTIONS(6279), + [anon_sym_unsigned] = ACTIONS(6279), + [anon_sym_long] = ACTIONS(6279), + [anon_sym_short] = ACTIONS(6279), + [sym_primitive_type] = ACTIONS(6279), + [anon_sym_enum] = ACTIONS(6279), + [anon_sym_struct] = ACTIONS(6279), + [anon_sym_union] = ACTIONS(6279), + [anon_sym_if] = ACTIONS(6279), + [anon_sym_else] = ACTIONS(6279), + [anon_sym_switch] = ACTIONS(6279), + [anon_sym_case] = ACTIONS(6279), + [anon_sym_default] = ACTIONS(6279), + [anon_sym_while] = ACTIONS(6279), + [anon_sym_do] = ACTIONS(6279), + [anon_sym_for] = ACTIONS(6279), + [anon_sym_return] = ACTIONS(6279), + [anon_sym_break] = ACTIONS(6279), + [anon_sym_continue] = ACTIONS(6279), + [anon_sym_goto] = ACTIONS(6279), + [anon_sym_AMP] = ACTIONS(6277), + [anon_sym_BANG] = ACTIONS(6277), + [anon_sym_TILDE] = ACTIONS(6277), + [anon_sym_PLUS] = ACTIONS(6279), + [anon_sym_DASH] = ACTIONS(6279), + [anon_sym_DASH_DASH] = ACTIONS(6277), + [anon_sym_PLUS_PLUS] = ACTIONS(6277), + [anon_sym_sizeof] = ACTIONS(6279), + [sym_number_literal] = ACTIONS(6277), + [sym_char_literal] = ACTIONS(6277), + [sym_string_literal] = ACTIONS(6277), + [sym_true] = ACTIONS(6279), + [sym_false] = ACTIONS(6279), + [sym_null] = ACTIONS(6279), + [sym_identifier] = ACTIONS(6279), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6279), + [sym_auto] = ACTIONS(6279), + [anon_sym_typename] = ACTIONS(6279), + [anon_sym_new] = ACTIONS(6279), + [anon_sym_COLON_COLON] = ACTIONS(6277), + [anon_sym_delete] = ACTIONS(6279), + [sym_nullptr] = ACTIONS(6279), + }, + [3132] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7254), + [anon_sym_SEMI] = ACTIONS(7354), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [3086] = { - [sym__type_declarator] = STATE(3118), + [3133] = { + [sym__type_declarator] = STATE(3169), [sym_pointer_type_declarator] = STATE(213), [sym_function_type_declarator] = STATE(214), [sym_array_type_declarator] = STATE(215), @@ -125996,7 +128395,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_identifier] = ACTIONS(331), [sym_comment] = ACTIONS(49), }, - [3087] = { + [3134] = { [sym_raw_string_literal] = ACTIONS(1261), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1263), [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1263), @@ -126065,182 +128464,182 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_delete] = ACTIONS(1263), [sym_nullptr] = ACTIONS(1263), }, - [3088] = { + [3135] = { [aux_sym_declaration_repeat1] = STATE(678), [anon_sym_COMMA] = ACTIONS(538), - [anon_sym_SEMI] = ACTIONS(7256), + [anon_sym_SEMI] = ACTIONS(7356), [sym_comment] = ACTIONS(49), }, - [3089] = { - [sym_raw_string_literal] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6263), - [anon_sym_LPAREN] = ACTIONS(6261), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6263), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6263), - [sym_preproc_directive] = ACTIONS(6263), - [anon_sym_SEMI] = ACTIONS(6261), - [anon_sym_typedef] = ACTIONS(6263), - [anon_sym_extern] = ACTIONS(6263), - [anon_sym_LBRACE] = ACTIONS(6261), - [anon_sym_STAR] = ACTIONS(6261), - [anon_sym_LBRACK] = ACTIONS(6261), - [anon_sym_static] = ACTIONS(6263), - [anon_sym_register] = ACTIONS(6263), - [anon_sym_inline] = ACTIONS(6263), - [anon_sym_const] = ACTIONS(6263), - [anon_sym_restrict] = ACTIONS(6263), - [anon_sym_volatile] = ACTIONS(6263), - [anon_sym__Atomic] = ACTIONS(6263), - [anon_sym_mutable] = ACTIONS(6263), - [anon_sym_explicit] = ACTIONS(6263), - [anon_sym_constexpr] = ACTIONS(6263), - [anon_sym_unsigned] = ACTIONS(6263), - [anon_sym_long] = ACTIONS(6263), - [anon_sym_short] = ACTIONS(6263), - [sym_primitive_type] = ACTIONS(6263), - [anon_sym_enum] = ACTIONS(6263), - [anon_sym_struct] = ACTIONS(6263), - [anon_sym_union] = ACTIONS(6263), - [anon_sym_if] = ACTIONS(6263), - [anon_sym_else] = ACTIONS(6263), - [anon_sym_switch] = ACTIONS(6263), - [anon_sym_case] = ACTIONS(6263), - [anon_sym_default] = ACTIONS(6263), - [anon_sym_while] = ACTIONS(6263), - [anon_sym_do] = ACTIONS(6263), - [anon_sym_for] = ACTIONS(6263), - [anon_sym_return] = ACTIONS(6263), - [anon_sym_break] = ACTIONS(6263), - [anon_sym_continue] = ACTIONS(6263), - [anon_sym_goto] = ACTIONS(6263), - [anon_sym_AMP] = ACTIONS(6261), - [anon_sym_BANG] = ACTIONS(6261), - [anon_sym_TILDE] = ACTIONS(6261), - [anon_sym_PLUS] = ACTIONS(6263), - [anon_sym_DASH] = ACTIONS(6263), - [anon_sym_DASH_DASH] = ACTIONS(6261), - [anon_sym_PLUS_PLUS] = ACTIONS(6261), - [anon_sym_sizeof] = ACTIONS(6263), - [sym_number_literal] = ACTIONS(6261), - [sym_char_literal] = ACTIONS(6261), - [sym_string_literal] = ACTIONS(6261), - [sym_true] = ACTIONS(6263), - [sym_false] = ACTIONS(6263), - [sym_null] = ACTIONS(6263), - [sym_identifier] = ACTIONS(6263), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6263), - [sym_auto] = ACTIONS(6263), - [anon_sym_typename] = ACTIONS(6263), - [anon_sym_new] = ACTIONS(6263), - [anon_sym_COLON_COLON] = ACTIONS(6261), - [anon_sym_delete] = ACTIONS(6263), - [sym_nullptr] = ACTIONS(6263), + [3136] = { + [sym_raw_string_literal] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6295), + [anon_sym_LPAREN] = ACTIONS(6293), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6295), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6295), + [sym_preproc_directive] = ACTIONS(6295), + [anon_sym_SEMI] = ACTIONS(6293), + [anon_sym_typedef] = ACTIONS(6295), + [anon_sym_extern] = ACTIONS(6295), + [anon_sym_LBRACE] = ACTIONS(6293), + [anon_sym_STAR] = ACTIONS(6293), + [anon_sym_LBRACK] = ACTIONS(6293), + [anon_sym_static] = ACTIONS(6295), + [anon_sym_register] = ACTIONS(6295), + [anon_sym_inline] = ACTIONS(6295), + [anon_sym_const] = ACTIONS(6295), + [anon_sym_restrict] = ACTIONS(6295), + [anon_sym_volatile] = ACTIONS(6295), + [anon_sym__Atomic] = ACTIONS(6295), + [anon_sym_mutable] = ACTIONS(6295), + [anon_sym_explicit] = ACTIONS(6295), + [anon_sym_constexpr] = ACTIONS(6295), + [anon_sym_unsigned] = ACTIONS(6295), + [anon_sym_long] = ACTIONS(6295), + [anon_sym_short] = ACTIONS(6295), + [sym_primitive_type] = ACTIONS(6295), + [anon_sym_enum] = ACTIONS(6295), + [anon_sym_struct] = ACTIONS(6295), + [anon_sym_union] = ACTIONS(6295), + [anon_sym_if] = ACTIONS(6295), + [anon_sym_else] = ACTIONS(6295), + [anon_sym_switch] = ACTIONS(6295), + [anon_sym_case] = ACTIONS(6295), + [anon_sym_default] = ACTIONS(6295), + [anon_sym_while] = ACTIONS(6295), + [anon_sym_do] = ACTIONS(6295), + [anon_sym_for] = ACTIONS(6295), + [anon_sym_return] = ACTIONS(6295), + [anon_sym_break] = ACTIONS(6295), + [anon_sym_continue] = ACTIONS(6295), + [anon_sym_goto] = ACTIONS(6295), + [anon_sym_AMP] = ACTIONS(6293), + [anon_sym_BANG] = ACTIONS(6293), + [anon_sym_TILDE] = ACTIONS(6293), + [anon_sym_PLUS] = ACTIONS(6295), + [anon_sym_DASH] = ACTIONS(6295), + [anon_sym_DASH_DASH] = ACTIONS(6293), + [anon_sym_PLUS_PLUS] = ACTIONS(6293), + [anon_sym_sizeof] = ACTIONS(6295), + [sym_number_literal] = ACTIONS(6293), + [sym_char_literal] = ACTIONS(6293), + [sym_string_literal] = ACTIONS(6293), + [sym_true] = ACTIONS(6295), + [sym_false] = ACTIONS(6295), + [sym_null] = ACTIONS(6295), + [sym_identifier] = ACTIONS(6295), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6295), + [sym_auto] = ACTIONS(6295), + [anon_sym_typename] = ACTIONS(6295), + [anon_sym_new] = ACTIONS(6295), + [anon_sym_COLON_COLON] = ACTIONS(6293), + [anon_sym_delete] = ACTIONS(6295), + [sym_nullptr] = ACTIONS(6295), }, - [3090] = { + [3137] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7258), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7358), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3091] = { - [sym_compound_statement] = STATE(3121), - [sym_labeled_statement] = STATE(3121), - [sym_expression_statement] = STATE(3121), - [sym_if_statement] = STATE(3121), - [sym_switch_statement] = STATE(3121), - [sym_case_statement] = STATE(3121), - [sym_while_statement] = STATE(3121), - [sym_do_statement] = STATE(3121), - [sym_for_statement] = STATE(3121), - [sym_return_statement] = STATE(3121), - [sym_break_statement] = STATE(3121), - [sym_continue_statement] = STATE(3121), - [sym_goto_statement] = STATE(3121), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3121), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3138] = { + [sym_compound_statement] = STATE(3172), + [sym_labeled_statement] = STATE(3172), + [sym_expression_statement] = STATE(3172), + [sym_if_statement] = STATE(3172), + [sym_switch_statement] = STATE(3172), + [sym_case_statement] = STATE(3172), + [sym_while_statement] = STATE(3172), + [sym_do_statement] = STATE(3172), + [sym_for_statement] = STATE(3172), + [sym_return_statement] = STATE(3172), + [sym_break_statement] = STATE(3172), + [sym_continue_statement] = STATE(3172), + [sym_goto_statement] = STATE(3172), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3172), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -126249,93 +128648,93 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3092] = { + [3139] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3123), + [aux_sym_for_statement_repeat1] = STATE(3174), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7260), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7360), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3093] = { - [sym__expression] = STATE(3124), - [sym_conditional_expression] = STATE(3124), - [sym_assignment_expression] = STATE(3124), - [sym_pointer_expression] = STATE(3124), - [sym_logical_expression] = STATE(3124), - [sym_bitwise_expression] = STATE(3124), - [sym_equality_expression] = STATE(3124), - [sym_relational_expression] = STATE(3124), - [sym_shift_expression] = STATE(3124), - [sym_math_expression] = STATE(3124), - [sym_cast_expression] = STATE(3124), - [sym_sizeof_expression] = STATE(3124), - [sym_subscript_expression] = STATE(3124), - [sym_call_expression] = STATE(3124), - [sym_field_expression] = STATE(3124), - [sym_compound_literal_expression] = STATE(3124), - [sym_parenthesized_expression] = STATE(3124), - [sym_concatenated_string] = STATE(3124), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3124), - [sym_new_expression] = STATE(3124), - [sym_delete_expression] = STATE(3124), - [sym_lambda_expression] = STATE(3124), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7262), + [3140] = { + [sym__expression] = STATE(3175), + [sym_conditional_expression] = STATE(3175), + [sym_assignment_expression] = STATE(3175), + [sym_pointer_expression] = STATE(3175), + [sym_logical_expression] = STATE(3175), + [sym_bitwise_expression] = STATE(3175), + [sym_equality_expression] = STATE(3175), + [sym_relational_expression] = STATE(3175), + [sym_shift_expression] = STATE(3175), + [sym_math_expression] = STATE(3175), + [sym_cast_expression] = STATE(3175), + [sym_sizeof_expression] = STATE(3175), + [sym_subscript_expression] = STATE(3175), + [sym_call_expression] = STATE(3175), + [sym_field_expression] = STATE(3175), + [sym_compound_literal_expression] = STATE(3175), + [sym_parenthesized_expression] = STATE(3175), + [sym_concatenated_string] = STATE(3175), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3175), + [sym_new_expression] = STATE(3175), + [sym_delete_expression] = STATE(3175), + [sym_lambda_expression] = STATE(3175), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7362), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7260), + [anon_sym_RPAREN] = ACTIONS(7360), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -126346,229 +128745,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7262), - [sym_char_literal] = ACTIONS(7262), + [sym_number_literal] = ACTIONS(7362), + [sym_char_literal] = ACTIONS(7362), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7264), - [sym_false] = ACTIONS(7264), - [sym_null] = ACTIONS(7264), + [sym_true] = ACTIONS(7364), + [sym_false] = ACTIONS(7364), + [sym_null] = ACTIONS(7364), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7264), + [sym_nullptr] = ACTIONS(7364), }, - [3094] = { + [3141] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_SEMI] = ACTIONS(7266), - [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(7366), + [anon_sym_STAR] = ACTIONS(2553), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2553), - [anon_sym_QMARK] = ACTIONS(2555), - [anon_sym_STAR_EQ] = ACTIONS(2557), - [anon_sym_SLASH_EQ] = ACTIONS(2557), - [anon_sym_PERCENT_EQ] = ACTIONS(2557), - [anon_sym_PLUS_EQ] = ACTIONS(2557), - [anon_sym_DASH_EQ] = ACTIONS(2557), - [anon_sym_LT_LT_EQ] = ACTIONS(2557), - [anon_sym_GT_GT_EQ] = ACTIONS(2557), - [anon_sym_AMP_EQ] = ACTIONS(2557), - [anon_sym_CARET_EQ] = ACTIONS(2557), - [anon_sym_PIPE_EQ] = ACTIONS(2557), - [anon_sym_AMP] = ACTIONS(2559), - [anon_sym_PIPE_PIPE] = ACTIONS(2561), - [anon_sym_AMP_AMP] = ACTIONS(2563), - [anon_sym_PIPE] = ACTIONS(2565), - [anon_sym_CARET] = ACTIONS(2567), - [anon_sym_EQ_EQ] = ACTIONS(2569), - [anon_sym_BANG_EQ] = ACTIONS(2569), - [anon_sym_LT] = ACTIONS(2571), - [anon_sym_GT] = ACTIONS(2571), - [anon_sym_LT_EQ] = ACTIONS(2573), - [anon_sym_GT_EQ] = ACTIONS(2573), - [anon_sym_LT_LT] = ACTIONS(2575), - [anon_sym_GT_GT] = ACTIONS(2575), - [anon_sym_PLUS] = ACTIONS(2577), - [anon_sym_DASH] = ACTIONS(2577), - [anon_sym_SLASH] = ACTIONS(2551), - [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_QMARK] = ACTIONS(2557), + [anon_sym_STAR_EQ] = ACTIONS(2559), + [anon_sym_SLASH_EQ] = ACTIONS(2559), + [anon_sym_PERCENT_EQ] = ACTIONS(2559), + [anon_sym_PLUS_EQ] = ACTIONS(2559), + [anon_sym_DASH_EQ] = ACTIONS(2559), + [anon_sym_LT_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_GT_EQ] = ACTIONS(2559), + [anon_sym_AMP_EQ] = ACTIONS(2559), + [anon_sym_CARET_EQ] = ACTIONS(2559), + [anon_sym_PIPE_EQ] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2561), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2565), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2569), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2573), + [anon_sym_GT] = ACTIONS(2573), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2577), + [anon_sym_GT_GT] = ACTIONS(2577), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2553), + [anon_sym_PERCENT] = ACTIONS(2553), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3095] = { + [3142] = { [sym_argument_list] = STATE(802), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_RPAREN] = ACTIONS(7268), - [anon_sym_STAR] = ACTIONS(4529), + [anon_sym_RPAREN] = ACTIONS(7368), + [anon_sym_STAR] = ACTIONS(4537), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4533), - [anon_sym_STAR_EQ] = ACTIONS(4535), - [anon_sym_SLASH_EQ] = ACTIONS(4535), - [anon_sym_PERCENT_EQ] = ACTIONS(4535), - [anon_sym_PLUS_EQ] = ACTIONS(4535), - [anon_sym_DASH_EQ] = ACTIONS(4535), - [anon_sym_LT_LT_EQ] = ACTIONS(4535), - [anon_sym_GT_GT_EQ] = ACTIONS(4535), - [anon_sym_AMP_EQ] = ACTIONS(4535), - [anon_sym_CARET_EQ] = ACTIONS(4535), - [anon_sym_PIPE_EQ] = ACTIONS(4535), - [anon_sym_AMP] = ACTIONS(4537), - [anon_sym_PIPE_PIPE] = ACTIONS(4539), - [anon_sym_AMP_AMP] = ACTIONS(4541), - [anon_sym_PIPE] = ACTIONS(4543), - [anon_sym_CARET] = ACTIONS(4545), - [anon_sym_EQ_EQ] = ACTIONS(4547), - [anon_sym_BANG_EQ] = ACTIONS(4547), - [anon_sym_LT] = ACTIONS(4549), - [anon_sym_GT] = ACTIONS(4549), - [anon_sym_LT_EQ] = ACTIONS(4551), - [anon_sym_GT_EQ] = ACTIONS(4551), - [anon_sym_LT_LT] = ACTIONS(4553), - [anon_sym_GT_GT] = ACTIONS(4553), - [anon_sym_PLUS] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_SLASH] = ACTIONS(4529), - [anon_sym_PERCENT] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(4539), + [anon_sym_QMARK] = ACTIONS(4541), + [anon_sym_STAR_EQ] = ACTIONS(4543), + [anon_sym_SLASH_EQ] = ACTIONS(4543), + [anon_sym_PERCENT_EQ] = ACTIONS(4543), + [anon_sym_PLUS_EQ] = ACTIONS(4543), + [anon_sym_DASH_EQ] = ACTIONS(4543), + [anon_sym_LT_LT_EQ] = ACTIONS(4543), + [anon_sym_GT_GT_EQ] = ACTIONS(4543), + [anon_sym_AMP_EQ] = ACTIONS(4543), + [anon_sym_CARET_EQ] = ACTIONS(4543), + [anon_sym_PIPE_EQ] = ACTIONS(4543), + [anon_sym_AMP] = ACTIONS(4545), + [anon_sym_PIPE_PIPE] = ACTIONS(4547), + [anon_sym_AMP_AMP] = ACTIONS(4549), + [anon_sym_PIPE] = ACTIONS(4551), + [anon_sym_CARET] = ACTIONS(4553), + [anon_sym_EQ_EQ] = ACTIONS(4555), + [anon_sym_BANG_EQ] = ACTIONS(4555), + [anon_sym_LT] = ACTIONS(4557), + [anon_sym_GT] = ACTIONS(4557), + [anon_sym_LT_EQ] = ACTIONS(4559), + [anon_sym_GT_EQ] = ACTIONS(4559), + [anon_sym_LT_LT] = ACTIONS(4561), + [anon_sym_GT_GT] = ACTIONS(4561), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_SLASH] = ACTIONS(4537), + [anon_sym_PERCENT] = ACTIONS(4537), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3096] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), + [3143] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), }, - [3097] = { - [sym_compound_statement] = STATE(3127), - [sym_labeled_statement] = STATE(3127), - [sym_expression_statement] = STATE(3127), - [sym_if_statement] = STATE(3127), - [sym_switch_statement] = STATE(3127), - [sym_case_statement] = STATE(3127), - [sym_while_statement] = STATE(3127), - [sym_do_statement] = STATE(3127), - [sym_for_statement] = STATE(3127), - [sym_return_statement] = STATE(3127), - [sym_break_statement] = STATE(3127), - [sym_continue_statement] = STATE(3127), - [sym_goto_statement] = STATE(3127), - [sym__expression] = STATE(1944), - [sym_comma_expression] = STATE(1945), - [sym_conditional_expression] = STATE(1944), - [sym_assignment_expression] = STATE(1944), - [sym_pointer_expression] = STATE(1944), - [sym_logical_expression] = STATE(1944), - [sym_bitwise_expression] = STATE(1944), - [sym_equality_expression] = STATE(1944), - [sym_relational_expression] = STATE(1944), - [sym_shift_expression] = STATE(1944), - [sym_math_expression] = STATE(1944), - [sym_cast_expression] = STATE(1944), - [sym_sizeof_expression] = STATE(1944), - [sym_subscript_expression] = STATE(1944), - [sym_call_expression] = STATE(1944), - [sym_field_expression] = STATE(1944), - [sym_compound_literal_expression] = STATE(1944), - [sym_parenthesized_expression] = STATE(1944), - [sym_concatenated_string] = STATE(1944), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(1944), - [sym_for_range_loop] = STATE(3127), - [sym_new_expression] = STATE(1944), - [sym_delete_expression] = STATE(1944), - [sym_lambda_expression] = STATE(1944), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(4389), + [3144] = { + [sym_compound_statement] = STATE(3178), + [sym_labeled_statement] = STATE(3178), + [sym_expression_statement] = STATE(3178), + [sym_if_statement] = STATE(3178), + [sym_switch_statement] = STATE(3178), + [sym_case_statement] = STATE(3178), + [sym_while_statement] = STATE(3178), + [sym_do_statement] = STATE(3178), + [sym_for_statement] = STATE(3178), + [sym_return_statement] = STATE(3178), + [sym_break_statement] = STATE(3178), + [sym_continue_statement] = STATE(3178), + [sym_goto_statement] = STATE(3178), + [sym__expression] = STATE(1947), + [sym_comma_expression] = STATE(1948), + [sym_conditional_expression] = STATE(1947), + [sym_assignment_expression] = STATE(1947), + [sym_pointer_expression] = STATE(1947), + [sym_logical_expression] = STATE(1947), + [sym_bitwise_expression] = STATE(1947), + [sym_equality_expression] = STATE(1947), + [sym_relational_expression] = STATE(1947), + [sym_shift_expression] = STATE(1947), + [sym_math_expression] = STATE(1947), + [sym_cast_expression] = STATE(1947), + [sym_sizeof_expression] = STATE(1947), + [sym_subscript_expression] = STATE(1947), + [sym_call_expression] = STATE(1947), + [sym_field_expression] = STATE(1947), + [sym_compound_literal_expression] = STATE(1947), + [sym_parenthesized_expression] = STATE(1947), + [sym_concatenated_string] = STATE(1947), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(1947), + [sym_for_range_loop] = STATE(3178), + [sym_new_expression] = STATE(1947), + [sym_delete_expression] = STATE(1947), + [sym_lambda_expression] = STATE(1947), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(4395), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(4405), - [anon_sym_LBRACE] = ACTIONS(4409), + [anon_sym_SEMI] = ACTIONS(4411), + [anon_sym_LBRACE] = ACTIONS(4415), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_switch] = ACTIONS(4413), - [anon_sym_case] = ACTIONS(4415), - [anon_sym_default] = ACTIONS(4417), - [anon_sym_while] = ACTIONS(4419), - [anon_sym_do] = ACTIONS(4421), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4425), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4429), - [anon_sym_goto] = ACTIONS(4431), + [anon_sym_if] = ACTIONS(4417), + [anon_sym_switch] = ACTIONS(4419), + [anon_sym_case] = ACTIONS(4421), + [anon_sym_default] = ACTIONS(4423), + [anon_sym_while] = ACTIONS(4425), + [anon_sym_do] = ACTIONS(4427), + [anon_sym_for] = ACTIONS(4429), + [anon_sym_return] = ACTIONS(4431), + [anon_sym_break] = ACTIONS(4433), + [anon_sym_continue] = ACTIONS(4435), + [anon_sym_goto] = ACTIONS(4437), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -126577,79 +128976,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(4389), - [sym_char_literal] = ACTIONS(4389), + [sym_number_literal] = ACTIONS(4395), + [sym_char_literal] = ACTIONS(4395), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(4433), - [sym_false] = ACTIONS(4433), - [sym_null] = ACTIONS(4433), - [sym_identifier] = ACTIONS(6051), + [sym_true] = ACTIONS(4439), + [sym_false] = ACTIONS(4439), + [sym_null] = ACTIONS(4439), + [sym_identifier] = ACTIONS(6077), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(4433), + [sym_nullptr] = ACTIONS(4439), }, - [3098] = { - [sym_compound_statement] = STATE(3128), - [sym_labeled_statement] = STATE(3128), - [sym_expression_statement] = STATE(3128), - [sym_if_statement] = STATE(3128), - [sym_switch_statement] = STATE(3128), - [sym_case_statement] = STATE(3128), - [sym_while_statement] = STATE(3128), - [sym_do_statement] = STATE(3128), - [sym_for_statement] = STATE(3128), - [sym_return_statement] = STATE(3128), - [sym_break_statement] = STATE(3128), - [sym_continue_statement] = STATE(3128), - [sym_goto_statement] = STATE(3128), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3128), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), + [3145] = { + [sym_compound_statement] = STATE(3179), + [sym_labeled_statement] = STATE(3179), + [sym_expression_statement] = STATE(3179), + [sym_if_statement] = STATE(3179), + [sym_switch_statement] = STATE(3179), + [sym_case_statement] = STATE(3179), + [sym_while_statement] = STATE(3179), + [sym_do_statement] = STATE(3179), + [sym_for_statement] = STATE(3179), + [sym_return_statement] = STATE(3179), + [sym_break_statement] = STATE(3179), + [sym_continue_statement] = STATE(3179), + [sym_goto_statement] = STATE(3179), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3179), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -126658,370 +129057,441 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), - }, - [3099] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [sym_nullptr] = ACTIONS(6535), }, - [3100] = { - [sym_parameter_list] = STATE(513), - [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7270), - [anon_sym_LBRACK] = ACTIONS(955), + [3146] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(7370), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), + }, + [3147] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), + }, + [3148] = { + [sym_parameter_list] = STATE(513), + [anon_sym_LPAREN] = ACTIONS(206), + [anon_sym_SEMI] = ACTIONS(7372), + [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [3101] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), + [3149] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), }, - [3102] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_else] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), + [3150] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_else] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), }, - [3103] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_else] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), + [3151] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_else] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), }, - [3104] = { - [sym_compound_statement] = STATE(3130), - [sym_labeled_statement] = STATE(3130), - [sym_expression_statement] = STATE(3130), - [sym_if_statement] = STATE(3130), - [sym_switch_statement] = STATE(3130), - [sym_case_statement] = STATE(3130), - [sym_while_statement] = STATE(3130), - [sym_do_statement] = STATE(3130), - [sym_for_statement] = STATE(3130), - [sym_return_statement] = STATE(3130), - [sym_break_statement] = STATE(3130), - [sym_continue_statement] = STATE(3130), - [sym_goto_statement] = STATE(3130), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3130), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3152] = { + [sym_compound_statement] = STATE(3182), + [sym_labeled_statement] = STATE(3182), + [sym_expression_statement] = STATE(3182), + [sym_if_statement] = STATE(3182), + [sym_switch_statement] = STATE(3182), + [sym_case_statement] = STATE(3182), + [sym_while_statement] = STATE(3182), + [sym_do_statement] = STATE(3182), + [sym_for_statement] = STATE(3182), + [sym_return_statement] = STATE(3182), + [sym_break_statement] = STATE(3182), + [sym_continue_statement] = STATE(3182), + [sym_goto_statement] = STATE(3182), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3182), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -127030,99 +129500,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3105] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7272), + [3153] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7374), [sym_comment] = ACTIONS(49), }, - [3106] = { + [3154] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3132), + [aux_sym_for_statement_repeat1] = STATE(3184), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7272), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7374), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3107] = { - [sym__expression] = STATE(3133), - [sym_conditional_expression] = STATE(3133), - [sym_assignment_expression] = STATE(3133), - [sym_pointer_expression] = STATE(3133), - [sym_logical_expression] = STATE(3133), - [sym_bitwise_expression] = STATE(3133), - [sym_equality_expression] = STATE(3133), - [sym_relational_expression] = STATE(3133), - [sym_shift_expression] = STATE(3133), - [sym_math_expression] = STATE(3133), - [sym_cast_expression] = STATE(3133), - [sym_sizeof_expression] = STATE(3133), - [sym_subscript_expression] = STATE(3133), - [sym_call_expression] = STATE(3133), - [sym_field_expression] = STATE(3133), - [sym_compound_literal_expression] = STATE(3133), - [sym_parenthesized_expression] = STATE(3133), - [sym_concatenated_string] = STATE(3133), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3133), - [sym_new_expression] = STATE(3133), - [sym_delete_expression] = STATE(3133), - [sym_lambda_expression] = STATE(3133), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7274), + [3155] = { + [sym__expression] = STATE(3185), + [sym_conditional_expression] = STATE(3185), + [sym_assignment_expression] = STATE(3185), + [sym_pointer_expression] = STATE(3185), + [sym_logical_expression] = STATE(3185), + [sym_bitwise_expression] = STATE(3185), + [sym_equality_expression] = STATE(3185), + [sym_relational_expression] = STATE(3185), + [sym_shift_expression] = STATE(3185), + [sym_math_expression] = STATE(3185), + [sym_cast_expression] = STATE(3185), + [sym_sizeof_expression] = STATE(3185), + [sym_subscript_expression] = STATE(3185), + [sym_call_expression] = STATE(3185), + [sym_field_expression] = STATE(3185), + [sym_compound_literal_expression] = STATE(3185), + [sym_parenthesized_expression] = STATE(3185), + [sym_concatenated_string] = STATE(3185), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3185), + [sym_new_expression] = STATE(3185), + [sym_delete_expression] = STATE(3185), + [sym_lambda_expression] = STATE(3185), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7376), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7272), + [anon_sym_RPAREN] = ACTIONS(7374), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -127133,79 +129603,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7274), - [sym_char_literal] = ACTIONS(7274), + [sym_number_literal] = ACTIONS(7376), + [sym_char_literal] = ACTIONS(7376), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7276), - [sym_false] = ACTIONS(7276), - [sym_null] = ACTIONS(7276), + [sym_true] = ACTIONS(7378), + [sym_false] = ACTIONS(7378), + [sym_null] = ACTIONS(7378), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7276), + [sym_nullptr] = ACTIONS(7378), }, - [3108] = { - [sym_compound_statement] = STATE(3134), - [sym_labeled_statement] = STATE(3134), - [sym_expression_statement] = STATE(3134), - [sym_if_statement] = STATE(3134), - [sym_switch_statement] = STATE(3134), - [sym_case_statement] = STATE(3134), - [sym_while_statement] = STATE(3134), - [sym_do_statement] = STATE(3134), - [sym_for_statement] = STATE(3134), - [sym_return_statement] = STATE(3134), - [sym_break_statement] = STATE(3134), - [sym_continue_statement] = STATE(3134), - [sym_goto_statement] = STATE(3134), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3134), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3156] = { + [sym_compound_statement] = STATE(3186), + [sym_labeled_statement] = STATE(3186), + [sym_expression_statement] = STATE(3186), + [sym_if_statement] = STATE(3186), + [sym_switch_statement] = STATE(3186), + [sym_case_statement] = STATE(3186), + [sym_while_statement] = STATE(3186), + [sym_do_statement] = STATE(3186), + [sym_for_statement] = STATE(3186), + [sym_return_statement] = STATE(3186), + [sym_break_statement] = STATE(3186), + [sym_continue_statement] = STATE(3186), + [sym_goto_statement] = STATE(3186), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3186), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -127214,218 +129684,287 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), }, - [3109] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), + [3157] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), }, - [3110] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_RBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_else] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), + [3158] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_RBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), }, - [3111] = { - [sym_compound_statement] = STATE(3135), - [sym_labeled_statement] = STATE(3135), - [sym_expression_statement] = STATE(3135), - [sym_if_statement] = STATE(3135), - [sym_switch_statement] = STATE(3135), - [sym_case_statement] = STATE(3135), - [sym_while_statement] = STATE(3135), - [sym_do_statement] = STATE(3135), - [sym_for_statement] = STATE(3135), - [sym_return_statement] = STATE(3135), - [sym_break_statement] = STATE(3135), - [sym_continue_statement] = STATE(3135), - [sym_goto_statement] = STATE(3135), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3135), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3159] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_RBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_else] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), + }, + [3160] = { + [sym_compound_statement] = STATE(3187), + [sym_labeled_statement] = STATE(3187), + [sym_expression_statement] = STATE(3187), + [sym_if_statement] = STATE(3187), + [sym_switch_statement] = STATE(3187), + [sym_case_statement] = STATE(3187), + [sym_while_statement] = STATE(3187), + [sym_do_statement] = STATE(3187), + [sym_for_statement] = STATE(3187), + [sym_return_statement] = STATE(3187), + [sym_break_statement] = STATE(3187), + [sym_continue_statement] = STATE(3187), + [sym_goto_statement] = STATE(3187), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3187), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -127434,85 +129973,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3112] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7278), + [3161] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7380), + [sym_comment] = ACTIONS(49), + }, + [3162] = { + [sym_compound_statement] = STATE(3001), + [sym_labeled_statement] = STATE(3001), + [sym_expression_statement] = STATE(3001), + [sym_if_statement] = STATE(3001), + [sym_switch_statement] = STATE(3001), + [sym_case_statement] = STATE(3001), + [sym_while_statement] = STATE(3001), + [sym_do_statement] = STATE(3001), + [sym_for_statement] = STATE(3001), + [sym_return_statement] = STATE(3001), + [sym_break_statement] = STATE(3001), + [sym_continue_statement] = STATE(3001), + [sym_goto_statement] = STATE(3001), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3001), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(1688), }, - [3113] = { - [sym_compound_statement] = STATE(2967), - [sym_labeled_statement] = STATE(2967), - [sym_expression_statement] = STATE(2967), - [sym_if_statement] = STATE(2967), - [sym_switch_statement] = STATE(2967), - [sym_case_statement] = STATE(2967), - [sym_while_statement] = STATE(2967), - [sym_do_statement] = STATE(2967), - [sym_for_statement] = STATE(2967), - [sym_return_statement] = STATE(2967), - [sym_break_statement] = STATE(2967), - [sym_continue_statement] = STATE(2967), - [sym_goto_statement] = STATE(2967), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(2967), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3163] = { + [sym_compound_statement] = STATE(3002), + [sym_labeled_statement] = STATE(3002), + [sym_expression_statement] = STATE(3002), + [sym_if_statement] = STATE(3002), + [sym_switch_statement] = STATE(3002), + [sym_case_statement] = STATE(3002), + [sym_while_statement] = STATE(3002), + [sym_do_statement] = STATE(3002), + [sym_for_statement] = STATE(3002), + [sym_return_statement] = STATE(3002), + [sym_break_statement] = STATE(3002), + [sym_continue_statement] = STATE(3002), + [sym_goto_statement] = STATE(3002), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3002), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -127521,128 +130141,128 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), + [sym_nullptr] = ACTIONS(1688), }, - [3114] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7280), + [3164] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7382), [sym_comment] = ACTIONS(49), }, - [3115] = { + [3165] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3138), + [aux_sym_for_statement_repeat1] = STATE(3190), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7280), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7382), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3116] = { - [sym_compound_statement] = STATE(3139), - [sym_labeled_statement] = STATE(3139), - [sym_expression_statement] = STATE(3139), - [sym_if_statement] = STATE(3139), - [sym_switch_statement] = STATE(3139), - [sym_case_statement] = STATE(3139), - [sym_while_statement] = STATE(3139), - [sym_do_statement] = STATE(3139), - [sym_for_statement] = STATE(3139), - [sym_return_statement] = STATE(3139), - [sym_break_statement] = STATE(3139), - [sym_continue_statement] = STATE(3139), - [sym_goto_statement] = STATE(3139), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3139), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3166] = { + [sym_compound_statement] = STATE(3191), + [sym_labeled_statement] = STATE(3191), + [sym_expression_statement] = STATE(3191), + [sym_if_statement] = STATE(3191), + [sym_switch_statement] = STATE(3191), + [sym_case_statement] = STATE(3191), + [sym_while_statement] = STATE(3191), + [sym_do_statement] = STATE(3191), + [sym_for_statement] = STATE(3191), + [sym_return_statement] = STATE(3191), + [sym_break_statement] = STATE(3191), + [sym_continue_statement] = STATE(3191), + [sym_goto_statement] = STATE(3191), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3191), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -127651,362 +130271,431 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3117] = { - [sym_raw_string_literal] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1988), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1988), - [sym_preproc_directive] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_register] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_restrict] = ACTIONS(1988), - [anon_sym_volatile] = ACTIONS(1988), - [anon_sym__Atomic] = ACTIONS(1988), - [anon_sym_mutable] = ACTIONS(1988), - [anon_sym_explicit] = ACTIONS(1988), - [anon_sym_constexpr] = ACTIONS(1988), - [anon_sym_unsigned] = ACTIONS(1988), - [anon_sym_long] = ACTIONS(1988), - [anon_sym_short] = ACTIONS(1988), - [sym_primitive_type] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [anon_sym_struct] = ACTIONS(1988), - [anon_sym_union] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_goto] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_sizeof] = ACTIONS(1988), - [sym_number_literal] = ACTIONS(1986), - [sym_char_literal] = ACTIONS(1986), - [sym_string_literal] = ACTIONS(1986), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_identifier] = ACTIONS(1988), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(1988), - [sym_auto] = ACTIONS(1988), - [anon_sym_typename] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1986), - [anon_sym_delete] = ACTIONS(1988), - [sym_nullptr] = ACTIONS(1988), + [3167] = { + [sym_raw_string_literal] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6613), + [anon_sym_LPAREN] = ACTIONS(6611), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6613), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6613), + [sym_preproc_directive] = ACTIONS(6613), + [anon_sym_SEMI] = ACTIONS(6611), + [anon_sym_typedef] = ACTIONS(6613), + [anon_sym_extern] = ACTIONS(6613), + [anon_sym_LBRACE] = ACTIONS(6611), + [anon_sym_STAR] = ACTIONS(6611), + [anon_sym_LBRACK] = ACTIONS(6611), + [anon_sym_static] = ACTIONS(6613), + [anon_sym_register] = ACTIONS(6613), + [anon_sym_inline] = ACTIONS(6613), + [anon_sym_const] = ACTIONS(6613), + [anon_sym_restrict] = ACTIONS(6613), + [anon_sym_volatile] = ACTIONS(6613), + [anon_sym__Atomic] = ACTIONS(6613), + [anon_sym_mutable] = ACTIONS(6613), + [anon_sym_explicit] = ACTIONS(6613), + [anon_sym_constexpr] = ACTIONS(6613), + [anon_sym_unsigned] = ACTIONS(6613), + [anon_sym_long] = ACTIONS(6613), + [anon_sym_short] = ACTIONS(6613), + [sym_primitive_type] = ACTIONS(6613), + [anon_sym_enum] = ACTIONS(6613), + [anon_sym_struct] = ACTIONS(6613), + [anon_sym_union] = ACTIONS(6613), + [anon_sym_if] = ACTIONS(6613), + [anon_sym_else] = ACTIONS(7384), + [anon_sym_switch] = ACTIONS(6613), + [anon_sym_case] = ACTIONS(6613), + [anon_sym_default] = ACTIONS(6613), + [anon_sym_while] = ACTIONS(6613), + [anon_sym_do] = ACTIONS(6613), + [anon_sym_for] = ACTIONS(6613), + [anon_sym_return] = ACTIONS(6613), + [anon_sym_break] = ACTIONS(6613), + [anon_sym_continue] = ACTIONS(6613), + [anon_sym_goto] = ACTIONS(6613), + [anon_sym_AMP] = ACTIONS(6611), + [anon_sym_BANG] = ACTIONS(6611), + [anon_sym_TILDE] = ACTIONS(6611), + [anon_sym_PLUS] = ACTIONS(6613), + [anon_sym_DASH] = ACTIONS(6613), + [anon_sym_DASH_DASH] = ACTIONS(6611), + [anon_sym_PLUS_PLUS] = ACTIONS(6611), + [anon_sym_sizeof] = ACTIONS(6613), + [sym_number_literal] = ACTIONS(6611), + [sym_char_literal] = ACTIONS(6611), + [sym_string_literal] = ACTIONS(6611), + [sym_true] = ACTIONS(6613), + [sym_false] = ACTIONS(6613), + [sym_null] = ACTIONS(6613), + [sym_identifier] = ACTIONS(6613), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6613), + [sym_auto] = ACTIONS(6613), + [anon_sym_typename] = ACTIONS(6613), + [anon_sym_new] = ACTIONS(6613), + [anon_sym_COLON_COLON] = ACTIONS(6611), + [anon_sym_delete] = ACTIONS(6613), + [sym_nullptr] = ACTIONS(6613), }, - [3118] = { + [3168] = { + [sym_raw_string_literal] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1988), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(1990), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(1990), + [sym_preproc_directive] = ACTIONS(1990), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_STAR] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_register] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_const] = ACTIONS(1990), + [anon_sym_restrict] = ACTIONS(1990), + [anon_sym_volatile] = ACTIONS(1990), + [anon_sym__Atomic] = ACTIONS(1990), + [anon_sym_mutable] = ACTIONS(1990), + [anon_sym_explicit] = ACTIONS(1990), + [anon_sym_constexpr] = ACTIONS(1990), + [anon_sym_unsigned] = ACTIONS(1990), + [anon_sym_long] = ACTIONS(1990), + [anon_sym_short] = ACTIONS(1990), + [sym_primitive_type] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_struct] = ACTIONS(1990), + [anon_sym_union] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_goto] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1988), + [anon_sym_BANG] = ACTIONS(1988), + [anon_sym_TILDE] = ACTIONS(1988), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_PLUS_PLUS] = ACTIONS(1988), + [anon_sym_sizeof] = ACTIONS(1990), + [sym_number_literal] = ACTIONS(1988), + [sym_char_literal] = ACTIONS(1988), + [sym_string_literal] = ACTIONS(1988), + [sym_true] = ACTIONS(1990), + [sym_false] = ACTIONS(1990), + [sym_null] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1990), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(1990), + [sym_auto] = ACTIONS(1990), + [anon_sym_typename] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1988), + [anon_sym_delete] = ACTIONS(1990), + [sym_nullptr] = ACTIONS(1990), + }, + [3169] = { [sym_parameter_list] = STATE(513), [anon_sym_LPAREN] = ACTIONS(206), - [anon_sym_SEMI] = ACTIONS(7282), + [anon_sym_SEMI] = ACTIONS(7386), [anon_sym_LBRACK] = ACTIONS(955), [sym_comment] = ACTIONS(49), }, - [3119] = { - [sym_raw_string_literal] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2478), - [anon_sym_LPAREN] = ACTIONS(2476), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2478), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2478), - [sym_preproc_directive] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_typedef] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_register] = ACTIONS(2478), - [anon_sym_inline] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_restrict] = ACTIONS(2478), - [anon_sym_volatile] = ACTIONS(2478), - [anon_sym__Atomic] = ACTIONS(2478), - [anon_sym_mutable] = ACTIONS(2478), - [anon_sym_explicit] = ACTIONS(2478), - [anon_sym_constexpr] = ACTIONS(2478), - [anon_sym_unsigned] = ACTIONS(2478), - [anon_sym_long] = ACTIONS(2478), - [anon_sym_short] = ACTIONS(2478), - [sym_primitive_type] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_else] = ACTIONS(2478), - [anon_sym_switch] = ACTIONS(2478), - [anon_sym_case] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_do] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_goto] = ACTIONS(2478), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_TILDE] = ACTIONS(2476), - [anon_sym_PLUS] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2478), - [anon_sym_DASH_DASH] = ACTIONS(2476), - [anon_sym_PLUS_PLUS] = ACTIONS(2476), - [anon_sym_sizeof] = ACTIONS(2478), - [sym_number_literal] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [sym_string_literal] = ACTIONS(2476), - [sym_true] = ACTIONS(2478), - [sym_false] = ACTIONS(2478), - [sym_null] = ACTIONS(2478), - [sym_identifier] = ACTIONS(2478), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(2478), - [sym_auto] = ACTIONS(2478), - [anon_sym_typename] = ACTIONS(2478), - [anon_sym_new] = ACTIONS(2478), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_delete] = ACTIONS(2478), - [sym_nullptr] = ACTIONS(2478), - }, - [3120] = { - [sym_raw_string_literal] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6605), - [anon_sym_LPAREN] = ACTIONS(6603), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6605), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6605), - [sym_preproc_directive] = ACTIONS(6605), - [anon_sym_SEMI] = ACTIONS(6603), - [anon_sym_typedef] = ACTIONS(6605), - [anon_sym_extern] = ACTIONS(6605), - [anon_sym_LBRACE] = ACTIONS(6603), - [anon_sym_STAR] = ACTIONS(6603), - [anon_sym_LBRACK] = ACTIONS(6603), - [anon_sym_static] = ACTIONS(6605), - [anon_sym_register] = ACTIONS(6605), - [anon_sym_inline] = ACTIONS(6605), - [anon_sym_const] = ACTIONS(6605), - [anon_sym_restrict] = ACTIONS(6605), - [anon_sym_volatile] = ACTIONS(6605), - [anon_sym__Atomic] = ACTIONS(6605), - [anon_sym_mutable] = ACTIONS(6605), - [anon_sym_explicit] = ACTIONS(6605), - [anon_sym_constexpr] = ACTIONS(6605), - [anon_sym_unsigned] = ACTIONS(6605), - [anon_sym_long] = ACTIONS(6605), - [anon_sym_short] = ACTIONS(6605), - [sym_primitive_type] = ACTIONS(6605), - [anon_sym_enum] = ACTIONS(6605), - [anon_sym_struct] = ACTIONS(6605), - [anon_sym_union] = ACTIONS(6605), - [anon_sym_if] = ACTIONS(6605), - [anon_sym_else] = ACTIONS(6605), - [anon_sym_switch] = ACTIONS(6605), - [anon_sym_case] = ACTIONS(6605), - [anon_sym_default] = ACTIONS(6605), - [anon_sym_while] = ACTIONS(6605), - [anon_sym_do] = ACTIONS(6605), - [anon_sym_for] = ACTIONS(6605), - [anon_sym_return] = ACTIONS(6605), - [anon_sym_break] = ACTIONS(6605), - [anon_sym_continue] = ACTIONS(6605), - [anon_sym_goto] = ACTIONS(6605), - [anon_sym_AMP] = ACTIONS(6603), - [anon_sym_BANG] = ACTIONS(6603), - [anon_sym_TILDE] = ACTIONS(6603), - [anon_sym_PLUS] = ACTIONS(6605), - [anon_sym_DASH] = ACTIONS(6605), - [anon_sym_DASH_DASH] = ACTIONS(6603), - [anon_sym_PLUS_PLUS] = ACTIONS(6603), - [anon_sym_sizeof] = ACTIONS(6605), - [sym_number_literal] = ACTIONS(6603), - [sym_char_literal] = ACTIONS(6603), - [sym_string_literal] = ACTIONS(6603), - [sym_true] = ACTIONS(6605), - [sym_false] = ACTIONS(6605), - [sym_null] = ACTIONS(6605), - [sym_identifier] = ACTIONS(6605), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6605), - [sym_auto] = ACTIONS(6605), - [anon_sym_typename] = ACTIONS(6605), - [anon_sym_new] = ACTIONS(6605), - [anon_sym_COLON_COLON] = ACTIONS(6603), - [anon_sym_delete] = ACTIONS(6605), - [sym_nullptr] = ACTIONS(6605), - }, - [3121] = { - [sym_raw_string_literal] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6609), - [anon_sym_LPAREN] = ACTIONS(6607), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6609), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6609), - [sym_preproc_directive] = ACTIONS(6609), - [anon_sym_SEMI] = ACTIONS(6607), - [anon_sym_typedef] = ACTIONS(6609), - [anon_sym_extern] = ACTIONS(6609), - [anon_sym_LBRACE] = ACTIONS(6607), - [anon_sym_STAR] = ACTIONS(6607), - [anon_sym_LBRACK] = ACTIONS(6607), - [anon_sym_static] = ACTIONS(6609), - [anon_sym_register] = ACTIONS(6609), - [anon_sym_inline] = ACTIONS(6609), - [anon_sym_const] = ACTIONS(6609), - [anon_sym_restrict] = ACTIONS(6609), - [anon_sym_volatile] = ACTIONS(6609), - [anon_sym__Atomic] = ACTIONS(6609), - [anon_sym_mutable] = ACTIONS(6609), - [anon_sym_explicit] = ACTIONS(6609), - [anon_sym_constexpr] = ACTIONS(6609), - [anon_sym_unsigned] = ACTIONS(6609), - [anon_sym_long] = ACTIONS(6609), - [anon_sym_short] = ACTIONS(6609), - [sym_primitive_type] = ACTIONS(6609), - [anon_sym_enum] = ACTIONS(6609), - [anon_sym_struct] = ACTIONS(6609), - [anon_sym_union] = ACTIONS(6609), - [anon_sym_if] = ACTIONS(6609), - [anon_sym_else] = ACTIONS(6609), - [anon_sym_switch] = ACTIONS(6609), - [anon_sym_case] = ACTIONS(6609), - [anon_sym_default] = ACTIONS(6609), - [anon_sym_while] = ACTIONS(6609), - [anon_sym_do] = ACTIONS(6609), - [anon_sym_for] = ACTIONS(6609), - [anon_sym_return] = ACTIONS(6609), - [anon_sym_break] = ACTIONS(6609), - [anon_sym_continue] = ACTIONS(6609), - [anon_sym_goto] = ACTIONS(6609), - [anon_sym_AMP] = ACTIONS(6607), - [anon_sym_BANG] = ACTIONS(6607), - [anon_sym_TILDE] = ACTIONS(6607), - [anon_sym_PLUS] = ACTIONS(6609), - [anon_sym_DASH] = ACTIONS(6609), - [anon_sym_DASH_DASH] = ACTIONS(6607), - [anon_sym_PLUS_PLUS] = ACTIONS(6607), - [anon_sym_sizeof] = ACTIONS(6609), - [sym_number_literal] = ACTIONS(6607), - [sym_char_literal] = ACTIONS(6607), - [sym_string_literal] = ACTIONS(6607), - [sym_true] = ACTIONS(6609), - [sym_false] = ACTIONS(6609), - [sym_null] = ACTIONS(6609), - [sym_identifier] = ACTIONS(6609), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6609), - [sym_auto] = ACTIONS(6609), - [anon_sym_typename] = ACTIONS(6609), - [anon_sym_new] = ACTIONS(6609), - [anon_sym_COLON_COLON] = ACTIONS(6607), - [anon_sym_delete] = ACTIONS(6609), - [sym_nullptr] = ACTIONS(6609), - }, - [3122] = { - [sym_compound_statement] = STATE(3141), - [sym_labeled_statement] = STATE(3141), - [sym_expression_statement] = STATE(3141), - [sym_if_statement] = STATE(3141), - [sym_switch_statement] = STATE(3141), - [sym_case_statement] = STATE(3141), - [sym_while_statement] = STATE(3141), - [sym_do_statement] = STATE(3141), - [sym_for_statement] = STATE(3141), - [sym_return_statement] = STATE(3141), - [sym_break_statement] = STATE(3141), - [sym_continue_statement] = STATE(3141), - [sym_goto_statement] = STATE(3141), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3141), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [3170] = { + [sym_raw_string_literal] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(2480), + [anon_sym_LPAREN] = ACTIONS(2478), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(2480), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(2480), + [sym_preproc_directive] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_typedef] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_register] = ACTIONS(2480), + [anon_sym_inline] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_restrict] = ACTIONS(2480), + [anon_sym_volatile] = ACTIONS(2480), + [anon_sym__Atomic] = ACTIONS(2480), + [anon_sym_mutable] = ACTIONS(2480), + [anon_sym_explicit] = ACTIONS(2480), + [anon_sym_constexpr] = ACTIONS(2480), + [anon_sym_unsigned] = ACTIONS(2480), + [anon_sym_long] = ACTIONS(2480), + [anon_sym_short] = ACTIONS(2480), + [sym_primitive_type] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_else] = ACTIONS(2480), + [anon_sym_switch] = ACTIONS(2480), + [anon_sym_case] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_do] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_goto] = ACTIONS(2480), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_TILDE] = ACTIONS(2478), + [anon_sym_PLUS] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2480), + [anon_sym_DASH_DASH] = ACTIONS(2478), + [anon_sym_PLUS_PLUS] = ACTIONS(2478), + [anon_sym_sizeof] = ACTIONS(2480), + [sym_number_literal] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [sym_string_literal] = ACTIONS(2478), + [sym_true] = ACTIONS(2480), + [sym_false] = ACTIONS(2480), + [sym_null] = ACTIONS(2480), + [sym_identifier] = ACTIONS(2480), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(2480), + [sym_auto] = ACTIONS(2480), + [anon_sym_typename] = ACTIONS(2480), + [anon_sym_new] = ACTIONS(2480), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_delete] = ACTIONS(2480), + [sym_nullptr] = ACTIONS(2480), + }, + [3171] = { + [sym_raw_string_literal] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6655), + [anon_sym_LPAREN] = ACTIONS(6653), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6655), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6655), + [sym_preproc_directive] = ACTIONS(6655), + [anon_sym_SEMI] = ACTIONS(6653), + [anon_sym_typedef] = ACTIONS(6655), + [anon_sym_extern] = ACTIONS(6655), + [anon_sym_LBRACE] = ACTIONS(6653), + [anon_sym_STAR] = ACTIONS(6653), + [anon_sym_LBRACK] = ACTIONS(6653), + [anon_sym_static] = ACTIONS(6655), + [anon_sym_register] = ACTIONS(6655), + [anon_sym_inline] = ACTIONS(6655), + [anon_sym_const] = ACTIONS(6655), + [anon_sym_restrict] = ACTIONS(6655), + [anon_sym_volatile] = ACTIONS(6655), + [anon_sym__Atomic] = ACTIONS(6655), + [anon_sym_mutable] = ACTIONS(6655), + [anon_sym_explicit] = ACTIONS(6655), + [anon_sym_constexpr] = ACTIONS(6655), + [anon_sym_unsigned] = ACTIONS(6655), + [anon_sym_long] = ACTIONS(6655), + [anon_sym_short] = ACTIONS(6655), + [sym_primitive_type] = ACTIONS(6655), + [anon_sym_enum] = ACTIONS(6655), + [anon_sym_struct] = ACTIONS(6655), + [anon_sym_union] = ACTIONS(6655), + [anon_sym_if] = ACTIONS(6655), + [anon_sym_else] = ACTIONS(6655), + [anon_sym_switch] = ACTIONS(6655), + [anon_sym_case] = ACTIONS(6655), + [anon_sym_default] = ACTIONS(6655), + [anon_sym_while] = ACTIONS(6655), + [anon_sym_do] = ACTIONS(6655), + [anon_sym_for] = ACTIONS(6655), + [anon_sym_return] = ACTIONS(6655), + [anon_sym_break] = ACTIONS(6655), + [anon_sym_continue] = ACTIONS(6655), + [anon_sym_goto] = ACTIONS(6655), + [anon_sym_AMP] = ACTIONS(6653), + [anon_sym_BANG] = ACTIONS(6653), + [anon_sym_TILDE] = ACTIONS(6653), + [anon_sym_PLUS] = ACTIONS(6655), + [anon_sym_DASH] = ACTIONS(6655), + [anon_sym_DASH_DASH] = ACTIONS(6653), + [anon_sym_PLUS_PLUS] = ACTIONS(6653), + [anon_sym_sizeof] = ACTIONS(6655), + [sym_number_literal] = ACTIONS(6653), + [sym_char_literal] = ACTIONS(6653), + [sym_string_literal] = ACTIONS(6653), + [sym_true] = ACTIONS(6655), + [sym_false] = ACTIONS(6655), + [sym_null] = ACTIONS(6655), + [sym_identifier] = ACTIONS(6655), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6655), + [sym_auto] = ACTIONS(6655), + [anon_sym_typename] = ACTIONS(6655), + [anon_sym_new] = ACTIONS(6655), + [anon_sym_COLON_COLON] = ACTIONS(6653), + [anon_sym_delete] = ACTIONS(6655), + [sym_nullptr] = ACTIONS(6655), + }, + [3172] = { + [sym_raw_string_literal] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6659), + [anon_sym_LPAREN] = ACTIONS(6657), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6659), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6659), + [sym_preproc_directive] = ACTIONS(6659), + [anon_sym_SEMI] = ACTIONS(6657), + [anon_sym_typedef] = ACTIONS(6659), + [anon_sym_extern] = ACTIONS(6659), + [anon_sym_LBRACE] = ACTIONS(6657), + [anon_sym_STAR] = ACTIONS(6657), + [anon_sym_LBRACK] = ACTIONS(6657), + [anon_sym_static] = ACTIONS(6659), + [anon_sym_register] = ACTIONS(6659), + [anon_sym_inline] = ACTIONS(6659), + [anon_sym_const] = ACTIONS(6659), + [anon_sym_restrict] = ACTIONS(6659), + [anon_sym_volatile] = ACTIONS(6659), + [anon_sym__Atomic] = ACTIONS(6659), + [anon_sym_mutable] = ACTIONS(6659), + [anon_sym_explicit] = ACTIONS(6659), + [anon_sym_constexpr] = ACTIONS(6659), + [anon_sym_unsigned] = ACTIONS(6659), + [anon_sym_long] = ACTIONS(6659), + [anon_sym_short] = ACTIONS(6659), + [sym_primitive_type] = ACTIONS(6659), + [anon_sym_enum] = ACTIONS(6659), + [anon_sym_struct] = ACTIONS(6659), + [anon_sym_union] = ACTIONS(6659), + [anon_sym_if] = ACTIONS(6659), + [anon_sym_else] = ACTIONS(6659), + [anon_sym_switch] = ACTIONS(6659), + [anon_sym_case] = ACTIONS(6659), + [anon_sym_default] = ACTIONS(6659), + [anon_sym_while] = ACTIONS(6659), + [anon_sym_do] = ACTIONS(6659), + [anon_sym_for] = ACTIONS(6659), + [anon_sym_return] = ACTIONS(6659), + [anon_sym_break] = ACTIONS(6659), + [anon_sym_continue] = ACTIONS(6659), + [anon_sym_goto] = ACTIONS(6659), + [anon_sym_AMP] = ACTIONS(6657), + [anon_sym_BANG] = ACTIONS(6657), + [anon_sym_TILDE] = ACTIONS(6657), + [anon_sym_PLUS] = ACTIONS(6659), + [anon_sym_DASH] = ACTIONS(6659), + [anon_sym_DASH_DASH] = ACTIONS(6657), + [anon_sym_PLUS_PLUS] = ACTIONS(6657), + [anon_sym_sizeof] = ACTIONS(6659), + [sym_number_literal] = ACTIONS(6657), + [sym_char_literal] = ACTIONS(6657), + [sym_string_literal] = ACTIONS(6657), + [sym_true] = ACTIONS(6659), + [sym_false] = ACTIONS(6659), + [sym_null] = ACTIONS(6659), + [sym_identifier] = ACTIONS(6659), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6659), + [sym_auto] = ACTIONS(6659), + [anon_sym_typename] = ACTIONS(6659), + [anon_sym_new] = ACTIONS(6659), + [anon_sym_COLON_COLON] = ACTIONS(6657), + [anon_sym_delete] = ACTIONS(6659), + [sym_nullptr] = ACTIONS(6659), + }, + [3173] = { + [sym_compound_statement] = STATE(3194), + [sym_labeled_statement] = STATE(3194), + [sym_expression_statement] = STATE(3194), + [sym_if_statement] = STATE(3194), + [sym_switch_statement] = STATE(3194), + [sym_case_statement] = STATE(3194), + [sym_while_statement] = STATE(3194), + [sym_do_statement] = STATE(3194), + [sym_for_statement] = STATE(3194), + [sym_return_statement] = STATE(3194), + [sym_break_statement] = STATE(3194), + [sym_continue_statement] = STATE(3194), + [sym_goto_statement] = STATE(3194), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3194), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -128015,99 +130704,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3123] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7284), + [3174] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7388), [sym_comment] = ACTIONS(49), }, - [3124] = { + [3175] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3143), + [aux_sym_for_statement_repeat1] = STATE(3196), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7284), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7388), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3125] = { - [sym__expression] = STATE(3144), - [sym_conditional_expression] = STATE(3144), - [sym_assignment_expression] = STATE(3144), - [sym_pointer_expression] = STATE(3144), - [sym_logical_expression] = STATE(3144), - [sym_bitwise_expression] = STATE(3144), - [sym_equality_expression] = STATE(3144), - [sym_relational_expression] = STATE(3144), - [sym_shift_expression] = STATE(3144), - [sym_math_expression] = STATE(3144), - [sym_cast_expression] = STATE(3144), - [sym_sizeof_expression] = STATE(3144), - [sym_subscript_expression] = STATE(3144), - [sym_call_expression] = STATE(3144), - [sym_field_expression] = STATE(3144), - [sym_compound_literal_expression] = STATE(3144), - [sym_parenthesized_expression] = STATE(3144), - [sym_concatenated_string] = STATE(3144), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(3144), - [sym_new_expression] = STATE(3144), - [sym_delete_expression] = STATE(3144), - [sym_lambda_expression] = STATE(3144), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(7286), + [3176] = { + [sym__expression] = STATE(3197), + [sym_conditional_expression] = STATE(3197), + [sym_assignment_expression] = STATE(3197), + [sym_pointer_expression] = STATE(3197), + [sym_logical_expression] = STATE(3197), + [sym_bitwise_expression] = STATE(3197), + [sym_equality_expression] = STATE(3197), + [sym_relational_expression] = STATE(3197), + [sym_shift_expression] = STATE(3197), + [sym_math_expression] = STATE(3197), + [sym_cast_expression] = STATE(3197), + [sym_sizeof_expression] = STATE(3197), + [sym_subscript_expression] = STATE(3197), + [sym_call_expression] = STATE(3197), + [sym_field_expression] = STATE(3197), + [sym_compound_literal_expression] = STATE(3197), + [sym_parenthesized_expression] = STATE(3197), + [sym_concatenated_string] = STATE(3197), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(3197), + [sym_new_expression] = STATE(3197), + [sym_delete_expression] = STATE(3197), + [sym_lambda_expression] = STATE(3197), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(7390), [anon_sym_LPAREN] = ACTIONS(1087), - [anon_sym_RPAREN] = ACTIONS(7284), + [anon_sym_RPAREN] = ACTIONS(7388), [anon_sym_STAR] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(570), [anon_sym_AMP] = ACTIONS(1089), @@ -128118,79 +130807,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1097), [anon_sym_PLUS_PLUS] = ACTIONS(1097), [anon_sym_sizeof] = ACTIONS(1099), - [sym_number_literal] = ACTIONS(7286), - [sym_char_literal] = ACTIONS(7286), + [sym_number_literal] = ACTIONS(7390), + [sym_char_literal] = ACTIONS(7390), [sym_string_literal] = ACTIONS(1101), - [sym_true] = ACTIONS(7288), - [sym_false] = ACTIONS(7288), - [sym_null] = ACTIONS(7288), + [sym_true] = ACTIONS(7392), + [sym_false] = ACTIONS(7392), + [sym_null] = ACTIONS(7392), [sym_identifier] = ACTIONS(1105), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1107), [anon_sym_delete] = ACTIONS(1109), - [sym_nullptr] = ACTIONS(7288), - }, - [3126] = { - [sym_compound_statement] = STATE(3145), - [sym_labeled_statement] = STATE(3145), - [sym_expression_statement] = STATE(3145), - [sym_if_statement] = STATE(3145), - [sym_switch_statement] = STATE(3145), - [sym_case_statement] = STATE(3145), - [sym_while_statement] = STATE(3145), - [sym_do_statement] = STATE(3145), - [sym_for_statement] = STATE(3145), - [sym_return_statement] = STATE(3145), - [sym_break_statement] = STATE(3145), - [sym_continue_statement] = STATE(3145), - [sym_goto_statement] = STATE(3145), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3145), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_nullptr] = ACTIONS(7392), + }, + [3177] = { + [sym_compound_statement] = STATE(3198), + [sym_labeled_statement] = STATE(3198), + [sym_expression_statement] = STATE(3198), + [sym_if_statement] = STATE(3198), + [sym_switch_statement] = STATE(3198), + [sym_case_statement] = STATE(3198), + [sym_while_statement] = STATE(3198), + [sym_do_statement] = STATE(3198), + [sym_for_statement] = STATE(3198), + [sym_return_statement] = STATE(3198), + [sym_break_statement] = STATE(3198), + [sym_continue_statement] = STATE(3198), + [sym_goto_statement] = STATE(3198), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3198), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -128199,360 +130888,218 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), - }, - [3127] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), - }, - [3128] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_else] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), - }, - [3129] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), - }, - [3130] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_else] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), - }, - [3131] = { - [sym_compound_statement] = STATE(3146), - [sym_labeled_statement] = STATE(3146), - [sym_expression_statement] = STATE(3146), - [sym_if_statement] = STATE(3146), - [sym_switch_statement] = STATE(3146), - [sym_case_statement] = STATE(3146), - [sym_while_statement] = STATE(3146), - [sym_do_statement] = STATE(3146), - [sym_for_statement] = STATE(3146), - [sym_return_statement] = STATE(3146), - [sym_break_statement] = STATE(3146), - [sym_continue_statement] = STATE(3146), - [sym_goto_statement] = STATE(3146), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3146), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), + [sym_nullptr] = ACTIONS(6760), + }, + [3178] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), + }, + [3179] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_else] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), + }, + [3180] = { + [sym_compound_statement] = STATE(3199), + [sym_labeled_statement] = STATE(3199), + [sym_expression_statement] = STATE(3199), + [sym_if_statement] = STATE(3199), + [sym_switch_statement] = STATE(3199), + [sym_case_statement] = STATE(3199), + [sym_while_statement] = STATE(3199), + [sym_do_statement] = STATE(3199), + [sym_for_statement] = STATE(3199), + [sym_return_statement] = STATE(3199), + [sym_break_statement] = STATE(3199), + [sym_continue_statement] = STATE(3199), + [sym_goto_statement] = STATE(3199), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3199), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -128561,268 +131108,491 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), + [sym_nullptr] = ACTIONS(6535), + }, + [3181] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_else] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), + }, + [3182] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_else] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), + }, + [3183] = { + [sym_compound_statement] = STATE(3200), + [sym_labeled_statement] = STATE(3200), + [sym_expression_statement] = STATE(3200), + [sym_if_statement] = STATE(3200), + [sym_switch_statement] = STATE(3200), + [sym_case_statement] = STATE(3200), + [sym_while_statement] = STATE(3200), + [sym_do_statement] = STATE(3200), + [sym_for_statement] = STATE(3200), + [sym_return_statement] = STATE(3200), + [sym_break_statement] = STATE(3200), + [sym_continue_statement] = STATE(3200), + [sym_goto_statement] = STATE(3200), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3200), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), + [sym_comment] = ACTIONS(49), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6535), }, - [3132] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7290), + [3184] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7394), [sym_comment] = ACTIONS(49), }, - [3133] = { + [3185] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3148), + [aux_sym_for_statement_repeat1] = STATE(3202), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7290), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7394), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3134] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_else] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), - }, - [3135] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_RBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_else] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), - }, - [3136] = { - [sym_compound_statement] = STATE(3149), - [sym_labeled_statement] = STATE(3149), - [sym_expression_statement] = STATE(3149), - [sym_if_statement] = STATE(3149), - [sym_switch_statement] = STATE(3149), - [sym_case_statement] = STATE(3149), - [sym_while_statement] = STATE(3149), - [sym_do_statement] = STATE(3149), - [sym_for_statement] = STATE(3149), - [sym_return_statement] = STATE(3149), - [sym_break_statement] = STATE(3149), - [sym_continue_statement] = STATE(3149), - [sym_goto_statement] = STATE(3149), - [sym__expression] = STATE(2370), - [sym_comma_expression] = STATE(2371), - [sym_conditional_expression] = STATE(2370), - [sym_assignment_expression] = STATE(2370), - [sym_pointer_expression] = STATE(2370), - [sym_logical_expression] = STATE(2370), - [sym_bitwise_expression] = STATE(2370), - [sym_equality_expression] = STATE(2370), - [sym_relational_expression] = STATE(2370), - [sym_shift_expression] = STATE(2370), - [sym_math_expression] = STATE(2370), - [sym_cast_expression] = STATE(2370), - [sym_sizeof_expression] = STATE(2370), - [sym_subscript_expression] = STATE(2370), - [sym_call_expression] = STATE(2370), - [sym_field_expression] = STATE(2370), - [sym_compound_literal_expression] = STATE(2370), - [sym_parenthesized_expression] = STATE(2370), - [sym_concatenated_string] = STATE(2370), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2370), - [sym_for_range_loop] = STATE(3149), - [sym_new_expression] = STATE(2370), - [sym_delete_expression] = STATE(2370), - [sym_lambda_expression] = STATE(2370), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(5520), + [3186] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_else] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), + }, + [3187] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_RBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_else] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), + }, + [3188] = { + [sym_compound_statement] = STATE(3203), + [sym_labeled_statement] = STATE(3203), + [sym_expression_statement] = STATE(3203), + [sym_if_statement] = STATE(3203), + [sym_switch_statement] = STATE(3203), + [sym_case_statement] = STATE(3203), + [sym_while_statement] = STATE(3203), + [sym_do_statement] = STATE(3203), + [sym_for_statement] = STATE(3203), + [sym_return_statement] = STATE(3203), + [sym_break_statement] = STATE(3203), + [sym_continue_statement] = STATE(3203), + [sym_goto_statement] = STATE(3203), + [sym__expression] = STATE(2378), + [sym_comma_expression] = STATE(2379), + [sym_conditional_expression] = STATE(2378), + [sym_assignment_expression] = STATE(2378), + [sym_pointer_expression] = STATE(2378), + [sym_logical_expression] = STATE(2378), + [sym_bitwise_expression] = STATE(2378), + [sym_equality_expression] = STATE(2378), + [sym_relational_expression] = STATE(2378), + [sym_shift_expression] = STATE(2378), + [sym_math_expression] = STATE(2378), + [sym_cast_expression] = STATE(2378), + [sym_sizeof_expression] = STATE(2378), + [sym_subscript_expression] = STATE(2378), + [sym_call_expression] = STATE(2378), + [sym_field_expression] = STATE(2378), + [sym_compound_literal_expression] = STATE(2378), + [sym_parenthesized_expression] = STATE(2378), + [sym_concatenated_string] = STATE(2378), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2378), + [sym_for_range_loop] = STATE(3203), + [sym_new_expression] = STATE(2378), + [sym_delete_expression] = STATE(2378), + [sym_lambda_expression] = STATE(2378), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(5538), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(5522), - [anon_sym_LBRACE] = ACTIONS(5524), + [anon_sym_SEMI] = ACTIONS(5540), + [anon_sym_LBRACE] = ACTIONS(5542), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(5526), - [anon_sym_switch] = ACTIONS(5528), - [anon_sym_case] = ACTIONS(5530), - [anon_sym_default] = ACTIONS(5532), - [anon_sym_while] = ACTIONS(5534), - [anon_sym_do] = ACTIONS(5536), - [anon_sym_for] = ACTIONS(5538), - [anon_sym_return] = ACTIONS(5540), - [anon_sym_break] = ACTIONS(5542), - [anon_sym_continue] = ACTIONS(5544), - [anon_sym_goto] = ACTIONS(5546), + [anon_sym_if] = ACTIONS(5544), + [anon_sym_switch] = ACTIONS(5546), + [anon_sym_case] = ACTIONS(5548), + [anon_sym_default] = ACTIONS(5550), + [anon_sym_while] = ACTIONS(5552), + [anon_sym_do] = ACTIONS(5554), + [anon_sym_for] = ACTIONS(5556), + [anon_sym_return] = ACTIONS(5558), + [anon_sym_break] = ACTIONS(5560), + [anon_sym_continue] = ACTIONS(5562), + [anon_sym_goto] = ACTIONS(5564), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -128831,79 +131601,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(5520), - [sym_char_literal] = ACTIONS(5520), + [sym_number_literal] = ACTIONS(5538), + [sym_char_literal] = ACTIONS(5538), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(5548), - [sym_false] = ACTIONS(5548), - [sym_null] = ACTIONS(5548), - [sym_identifier] = ACTIONS(5550), + [sym_true] = ACTIONS(5566), + [sym_false] = ACTIONS(5566), + [sym_null] = ACTIONS(5566), + [sym_identifier] = ACTIONS(5568), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(5548), + [sym_nullptr] = ACTIONS(5566), }, - [3137] = { - [sym_compound_statement] = STATE(3033), - [sym_labeled_statement] = STATE(3033), - [sym_expression_statement] = STATE(3033), - [sym_if_statement] = STATE(3033), - [sym_switch_statement] = STATE(3033), - [sym_case_statement] = STATE(3033), - [sym_while_statement] = STATE(3033), - [sym_do_statement] = STATE(3033), - [sym_for_statement] = STATE(3033), - [sym_return_statement] = STATE(3033), - [sym_break_statement] = STATE(3033), - [sym_continue_statement] = STATE(3033), - [sym_goto_statement] = STATE(3033), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(3033), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [3189] = { + [sym_compound_statement] = STATE(3074), + [sym_labeled_statement] = STATE(3074), + [sym_expression_statement] = STATE(3074), + [sym_if_statement] = STATE(3074), + [sym_switch_statement] = STATE(3074), + [sym_case_statement] = STATE(3074), + [sym_while_statement] = STATE(3074), + [sym_do_statement] = STATE(3074), + [sym_for_statement] = STATE(3074), + [sym_return_statement] = STATE(3074), + [sym_break_statement] = STATE(3074), + [sym_continue_statement] = STATE(3074), + [sym_goto_statement] = STATE(3074), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3074), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -128912,292 +131682,373 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), - }, - [3138] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7292), + [sym_nullptr] = ACTIONS(1688), + }, + [3190] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7396), + [sym_comment] = ACTIONS(49), + }, + [3191] = { + [sym_raw_string_literal] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6866), + [anon_sym_LPAREN] = ACTIONS(6864), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6866), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6866), + [sym_preproc_directive] = ACTIONS(6866), + [anon_sym_SEMI] = ACTIONS(6864), + [anon_sym_typedef] = ACTIONS(6866), + [anon_sym_extern] = ACTIONS(6866), + [anon_sym_LBRACE] = ACTIONS(6864), + [anon_sym_STAR] = ACTIONS(6864), + [anon_sym_LBRACK] = ACTIONS(6864), + [anon_sym_static] = ACTIONS(6866), + [anon_sym_register] = ACTIONS(6866), + [anon_sym_inline] = ACTIONS(6866), + [anon_sym_const] = ACTIONS(6866), + [anon_sym_restrict] = ACTIONS(6866), + [anon_sym_volatile] = ACTIONS(6866), + [anon_sym__Atomic] = ACTIONS(6866), + [anon_sym_mutable] = ACTIONS(6866), + [anon_sym_explicit] = ACTIONS(6866), + [anon_sym_constexpr] = ACTIONS(6866), + [anon_sym_unsigned] = ACTIONS(6866), + [anon_sym_long] = ACTIONS(6866), + [anon_sym_short] = ACTIONS(6866), + [sym_primitive_type] = ACTIONS(6866), + [anon_sym_enum] = ACTIONS(6866), + [anon_sym_struct] = ACTIONS(6866), + [anon_sym_union] = ACTIONS(6866), + [anon_sym_if] = ACTIONS(6866), + [anon_sym_else] = ACTIONS(6866), + [anon_sym_switch] = ACTIONS(6866), + [anon_sym_case] = ACTIONS(6866), + [anon_sym_default] = ACTIONS(6866), + [anon_sym_while] = ACTIONS(6866), + [anon_sym_do] = ACTIONS(6866), + [anon_sym_for] = ACTIONS(6866), + [anon_sym_return] = ACTIONS(6866), + [anon_sym_break] = ACTIONS(6866), + [anon_sym_continue] = ACTIONS(6866), + [anon_sym_goto] = ACTIONS(6866), + [anon_sym_AMP] = ACTIONS(6864), + [anon_sym_BANG] = ACTIONS(6864), + [anon_sym_TILDE] = ACTIONS(6864), + [anon_sym_PLUS] = ACTIONS(6866), + [anon_sym_DASH] = ACTIONS(6866), + [anon_sym_DASH_DASH] = ACTIONS(6864), + [anon_sym_PLUS_PLUS] = ACTIONS(6864), + [anon_sym_sizeof] = ACTIONS(6866), + [sym_number_literal] = ACTIONS(6864), + [sym_char_literal] = ACTIONS(6864), + [sym_string_literal] = ACTIONS(6864), + [sym_true] = ACTIONS(6866), + [sym_false] = ACTIONS(6866), + [sym_null] = ACTIONS(6866), + [sym_identifier] = ACTIONS(6866), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6866), + [sym_auto] = ACTIONS(6866), + [anon_sym_typename] = ACTIONS(6866), + [anon_sym_new] = ACTIONS(6866), + [anon_sym_COLON_COLON] = ACTIONS(6864), + [anon_sym_delete] = ACTIONS(6866), + [sym_nullptr] = ACTIONS(6866), + }, + [3192] = { + [sym_compound_statement] = STATE(3205), + [sym_labeled_statement] = STATE(3205), + [sym_expression_statement] = STATE(3205), + [sym_if_statement] = STATE(3205), + [sym_switch_statement] = STATE(3205), + [sym_case_statement] = STATE(3205), + [sym_while_statement] = STATE(3205), + [sym_do_statement] = STATE(3205), + [sym_for_statement] = STATE(3205), + [sym_return_statement] = STATE(3205), + [sym_break_statement] = STATE(3205), + [sym_continue_statement] = STATE(3205), + [sym_goto_statement] = STATE(3205), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3205), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), + [anon_sym_LPAREN] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), + [anon_sym_STAR] = ACTIONS(644), + [anon_sym_LBRACK] = ACTIONS(570), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), + [anon_sym_AMP] = ACTIONS(644), + [anon_sym_BANG] = ACTIONS(668), + [anon_sym_TILDE] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_DASH_DASH] = ACTIONS(674), + [anon_sym_PLUS_PLUS] = ACTIONS(674), + [anon_sym_sizeof] = ACTIONS(676), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), + [sym_string_literal] = ACTIONS(678), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), - }, - [3139] = { - [sym_raw_string_literal] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6808), - [anon_sym_LPAREN] = ACTIONS(6806), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6808), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6808), - [sym_preproc_directive] = ACTIONS(6808), - [anon_sym_SEMI] = ACTIONS(6806), - [anon_sym_typedef] = ACTIONS(6808), - [anon_sym_extern] = ACTIONS(6808), - [anon_sym_LBRACE] = ACTIONS(6806), - [anon_sym_STAR] = ACTIONS(6806), - [anon_sym_LBRACK] = ACTIONS(6806), - [anon_sym_static] = ACTIONS(6808), - [anon_sym_register] = ACTIONS(6808), - [anon_sym_inline] = ACTIONS(6808), - [anon_sym_const] = ACTIONS(6808), - [anon_sym_restrict] = ACTIONS(6808), - [anon_sym_volatile] = ACTIONS(6808), - [anon_sym__Atomic] = ACTIONS(6808), - [anon_sym_mutable] = ACTIONS(6808), - [anon_sym_explicit] = ACTIONS(6808), - [anon_sym_constexpr] = ACTIONS(6808), - [anon_sym_unsigned] = ACTIONS(6808), - [anon_sym_long] = ACTIONS(6808), - [anon_sym_short] = ACTIONS(6808), - [sym_primitive_type] = ACTIONS(6808), - [anon_sym_enum] = ACTIONS(6808), - [anon_sym_struct] = ACTIONS(6808), - [anon_sym_union] = ACTIONS(6808), - [anon_sym_if] = ACTIONS(6808), - [anon_sym_else] = ACTIONS(6808), - [anon_sym_switch] = ACTIONS(6808), - [anon_sym_case] = ACTIONS(6808), - [anon_sym_default] = ACTIONS(6808), - [anon_sym_while] = ACTIONS(6808), - [anon_sym_do] = ACTIONS(6808), - [anon_sym_for] = ACTIONS(6808), - [anon_sym_return] = ACTIONS(6808), - [anon_sym_break] = ACTIONS(6808), - [anon_sym_continue] = ACTIONS(6808), - [anon_sym_goto] = ACTIONS(6808), - [anon_sym_AMP] = ACTIONS(6806), - [anon_sym_BANG] = ACTIONS(6806), - [anon_sym_TILDE] = ACTIONS(6806), - [anon_sym_PLUS] = ACTIONS(6808), - [anon_sym_DASH] = ACTIONS(6808), - [anon_sym_DASH_DASH] = ACTIONS(6806), - [anon_sym_PLUS_PLUS] = ACTIONS(6806), - [anon_sym_sizeof] = ACTIONS(6808), - [sym_number_literal] = ACTIONS(6806), - [sym_char_literal] = ACTIONS(6806), - [sym_string_literal] = ACTIONS(6806), - [sym_true] = ACTIONS(6808), - [sym_false] = ACTIONS(6808), - [sym_null] = ACTIONS(6808), - [sym_identifier] = ACTIONS(6808), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6808), - [sym_auto] = ACTIONS(6808), - [anon_sym_typename] = ACTIONS(6808), - [anon_sym_new] = ACTIONS(6808), - [anon_sym_COLON_COLON] = ACTIONS(6806), - [anon_sym_delete] = ACTIONS(6808), - [sym_nullptr] = ACTIONS(6808), - }, - [3140] = { - [sym_raw_string_literal] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3515), - [anon_sym_LPAREN] = ACTIONS(3513), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3515), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3515), - [sym_preproc_directive] = ACTIONS(3515), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_typedef] = ACTIONS(3515), - [anon_sym_extern] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_STAR] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_static] = ACTIONS(3515), - [anon_sym_register] = ACTIONS(3515), - [anon_sym_inline] = ACTIONS(3515), - [anon_sym_const] = ACTIONS(3515), - [anon_sym_restrict] = ACTIONS(3515), - [anon_sym_volatile] = ACTIONS(3515), - [anon_sym__Atomic] = ACTIONS(3515), - [anon_sym_mutable] = ACTIONS(3515), - [anon_sym_explicit] = ACTIONS(3515), - [anon_sym_constexpr] = ACTIONS(3515), - [anon_sym_unsigned] = ACTIONS(3515), - [anon_sym_long] = ACTIONS(3515), - [anon_sym_short] = ACTIONS(3515), - [sym_primitive_type] = ACTIONS(3515), - [anon_sym_enum] = ACTIONS(3515), - [anon_sym_struct] = ACTIONS(3515), - [anon_sym_union] = ACTIONS(3515), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3515), - [anon_sym_switch] = ACTIONS(3515), - [anon_sym_case] = ACTIONS(3515), - [anon_sym_default] = ACTIONS(3515), - [anon_sym_while] = ACTIONS(3515), - [anon_sym_do] = ACTIONS(3515), - [anon_sym_for] = ACTIONS(3515), - [anon_sym_return] = ACTIONS(3515), - [anon_sym_break] = ACTIONS(3515), - [anon_sym_continue] = ACTIONS(3515), - [anon_sym_goto] = ACTIONS(3515), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_BANG] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_PLUS] = ACTIONS(3515), - [anon_sym_DASH] = ACTIONS(3515), - [anon_sym_DASH_DASH] = ACTIONS(3513), - [anon_sym_PLUS_PLUS] = ACTIONS(3513), - [anon_sym_sizeof] = ACTIONS(3515), - [sym_number_literal] = ACTIONS(3513), - [sym_char_literal] = ACTIONS(3513), - [sym_string_literal] = ACTIONS(3513), - [sym_true] = ACTIONS(3515), - [sym_false] = ACTIONS(3515), - [sym_null] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3515), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(3515), - [sym_auto] = ACTIONS(3515), - [anon_sym_typename] = ACTIONS(3515), - [anon_sym_new] = ACTIONS(3515), - [anon_sym_COLON_COLON] = ACTIONS(3513), - [anon_sym_delete] = ACTIONS(3515), - [sym_nullptr] = ACTIONS(3515), - }, - [3141] = { - [sym_raw_string_literal] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6842), - [anon_sym_LPAREN] = ACTIONS(6840), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6842), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6842), - [sym_preproc_directive] = ACTIONS(6842), - [anon_sym_SEMI] = ACTIONS(6840), - [anon_sym_typedef] = ACTIONS(6842), - [anon_sym_extern] = ACTIONS(6842), - [anon_sym_LBRACE] = ACTIONS(6840), - [anon_sym_STAR] = ACTIONS(6840), - [anon_sym_LBRACK] = ACTIONS(6840), - [anon_sym_static] = ACTIONS(6842), - [anon_sym_register] = ACTIONS(6842), - [anon_sym_inline] = ACTIONS(6842), - [anon_sym_const] = ACTIONS(6842), - [anon_sym_restrict] = ACTIONS(6842), - [anon_sym_volatile] = ACTIONS(6842), - [anon_sym__Atomic] = ACTIONS(6842), - [anon_sym_mutable] = ACTIONS(6842), - [anon_sym_explicit] = ACTIONS(6842), - [anon_sym_constexpr] = ACTIONS(6842), - [anon_sym_unsigned] = ACTIONS(6842), - [anon_sym_long] = ACTIONS(6842), - [anon_sym_short] = ACTIONS(6842), - [sym_primitive_type] = ACTIONS(6842), - [anon_sym_enum] = ACTIONS(6842), - [anon_sym_struct] = ACTIONS(6842), - [anon_sym_union] = ACTIONS(6842), - [anon_sym_if] = ACTIONS(6842), - [anon_sym_else] = ACTIONS(6842), - [anon_sym_switch] = ACTIONS(6842), - [anon_sym_case] = ACTIONS(6842), - [anon_sym_default] = ACTIONS(6842), - [anon_sym_while] = ACTIONS(6842), - [anon_sym_do] = ACTIONS(6842), - [anon_sym_for] = ACTIONS(6842), - [anon_sym_return] = ACTIONS(6842), - [anon_sym_break] = ACTIONS(6842), - [anon_sym_continue] = ACTIONS(6842), - [anon_sym_goto] = ACTIONS(6842), - [anon_sym_AMP] = ACTIONS(6840), - [anon_sym_BANG] = ACTIONS(6840), - [anon_sym_TILDE] = ACTIONS(6840), - [anon_sym_PLUS] = ACTIONS(6842), - [anon_sym_DASH] = ACTIONS(6842), - [anon_sym_DASH_DASH] = ACTIONS(6840), - [anon_sym_PLUS_PLUS] = ACTIONS(6840), - [anon_sym_sizeof] = ACTIONS(6842), - [sym_number_literal] = ACTIONS(6840), - [sym_char_literal] = ACTIONS(6840), - [sym_string_literal] = ACTIONS(6840), - [sym_true] = ACTIONS(6842), - [sym_false] = ACTIONS(6842), - [sym_null] = ACTIONS(6842), - [sym_identifier] = ACTIONS(6842), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6842), - [sym_auto] = ACTIONS(6842), - [anon_sym_typename] = ACTIONS(6842), - [anon_sym_new] = ACTIONS(6842), - [anon_sym_COLON_COLON] = ACTIONS(6840), - [anon_sym_delete] = ACTIONS(6842), - [sym_nullptr] = ACTIONS(6842), - }, - [3142] = { - [sym_compound_statement] = STATE(3151), - [sym_labeled_statement] = STATE(3151), - [sym_expression_statement] = STATE(3151), - [sym_if_statement] = STATE(3151), - [sym_switch_statement] = STATE(3151), - [sym_case_statement] = STATE(3151), - [sym_while_statement] = STATE(3151), - [sym_do_statement] = STATE(3151), - [sym_for_statement] = STATE(3151), - [sym_return_statement] = STATE(3151), - [sym_break_statement] = STATE(3151), - [sym_continue_statement] = STATE(3151), - [sym_goto_statement] = STATE(3151), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3151), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), + [anon_sym_new] = ACTIONS(604), + [anon_sym_COLON_COLON] = ACTIONS(1303), + [anon_sym_delete] = ACTIONS(686), + [sym_nullptr] = ACTIONS(6760), + }, + [3193] = { + [sym_raw_string_literal] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(3521), + [anon_sym_LPAREN] = ACTIONS(3519), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(3521), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(3521), + [sym_preproc_directive] = ACTIONS(3521), + [anon_sym_SEMI] = ACTIONS(3519), + [anon_sym_typedef] = ACTIONS(3521), + [anon_sym_extern] = ACTIONS(3521), + [anon_sym_LBRACE] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3519), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_static] = ACTIONS(3521), + [anon_sym_register] = ACTIONS(3521), + [anon_sym_inline] = ACTIONS(3521), + [anon_sym_const] = ACTIONS(3521), + [anon_sym_restrict] = ACTIONS(3521), + [anon_sym_volatile] = ACTIONS(3521), + [anon_sym__Atomic] = ACTIONS(3521), + [anon_sym_mutable] = ACTIONS(3521), + [anon_sym_explicit] = ACTIONS(3521), + [anon_sym_constexpr] = ACTIONS(3521), + [anon_sym_unsigned] = ACTIONS(3521), + [anon_sym_long] = ACTIONS(3521), + [anon_sym_short] = ACTIONS(3521), + [sym_primitive_type] = ACTIONS(3521), + [anon_sym_enum] = ACTIONS(3521), + [anon_sym_struct] = ACTIONS(3521), + [anon_sym_union] = ACTIONS(3521), + [anon_sym_if] = ACTIONS(3521), + [anon_sym_else] = ACTIONS(3521), + [anon_sym_switch] = ACTIONS(3521), + [anon_sym_case] = ACTIONS(3521), + [anon_sym_default] = ACTIONS(3521), + [anon_sym_while] = ACTIONS(3521), + [anon_sym_do] = ACTIONS(3521), + [anon_sym_for] = ACTIONS(3521), + [anon_sym_return] = ACTIONS(3521), + [anon_sym_break] = ACTIONS(3521), + [anon_sym_continue] = ACTIONS(3521), + [anon_sym_goto] = ACTIONS(3521), + [anon_sym_AMP] = ACTIONS(3519), + [anon_sym_BANG] = ACTIONS(3519), + [anon_sym_TILDE] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_DASH] = ACTIONS(3521), + [anon_sym_DASH_DASH] = ACTIONS(3519), + [anon_sym_PLUS_PLUS] = ACTIONS(3519), + [anon_sym_sizeof] = ACTIONS(3521), + [sym_number_literal] = ACTIONS(3519), + [sym_char_literal] = ACTIONS(3519), + [sym_string_literal] = ACTIONS(3519), + [sym_true] = ACTIONS(3521), + [sym_false] = ACTIONS(3521), + [sym_null] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3521), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(3521), + [sym_auto] = ACTIONS(3521), + [anon_sym_typename] = ACTIONS(3521), + [anon_sym_new] = ACTIONS(3521), + [anon_sym_COLON_COLON] = ACTIONS(3519), + [anon_sym_delete] = ACTIONS(3521), + [sym_nullptr] = ACTIONS(3521), + }, + [3194] = { + [sym_raw_string_literal] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6904), + [anon_sym_LPAREN] = ACTIONS(6902), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6904), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6904), + [sym_preproc_directive] = ACTIONS(6904), + [anon_sym_SEMI] = ACTIONS(6902), + [anon_sym_typedef] = ACTIONS(6904), + [anon_sym_extern] = ACTIONS(6904), + [anon_sym_LBRACE] = ACTIONS(6902), + [anon_sym_STAR] = ACTIONS(6902), + [anon_sym_LBRACK] = ACTIONS(6902), + [anon_sym_static] = ACTIONS(6904), + [anon_sym_register] = ACTIONS(6904), + [anon_sym_inline] = ACTIONS(6904), + [anon_sym_const] = ACTIONS(6904), + [anon_sym_restrict] = ACTIONS(6904), + [anon_sym_volatile] = ACTIONS(6904), + [anon_sym__Atomic] = ACTIONS(6904), + [anon_sym_mutable] = ACTIONS(6904), + [anon_sym_explicit] = ACTIONS(6904), + [anon_sym_constexpr] = ACTIONS(6904), + [anon_sym_unsigned] = ACTIONS(6904), + [anon_sym_long] = ACTIONS(6904), + [anon_sym_short] = ACTIONS(6904), + [sym_primitive_type] = ACTIONS(6904), + [anon_sym_enum] = ACTIONS(6904), + [anon_sym_struct] = ACTIONS(6904), + [anon_sym_union] = ACTIONS(6904), + [anon_sym_if] = ACTIONS(6904), + [anon_sym_else] = ACTIONS(6904), + [anon_sym_switch] = ACTIONS(6904), + [anon_sym_case] = ACTIONS(6904), + [anon_sym_default] = ACTIONS(6904), + [anon_sym_while] = ACTIONS(6904), + [anon_sym_do] = ACTIONS(6904), + [anon_sym_for] = ACTIONS(6904), + [anon_sym_return] = ACTIONS(6904), + [anon_sym_break] = ACTIONS(6904), + [anon_sym_continue] = ACTIONS(6904), + [anon_sym_goto] = ACTIONS(6904), + [anon_sym_AMP] = ACTIONS(6902), + [anon_sym_BANG] = ACTIONS(6902), + [anon_sym_TILDE] = ACTIONS(6902), + [anon_sym_PLUS] = ACTIONS(6904), + [anon_sym_DASH] = ACTIONS(6904), + [anon_sym_DASH_DASH] = ACTIONS(6902), + [anon_sym_PLUS_PLUS] = ACTIONS(6902), + [anon_sym_sizeof] = ACTIONS(6904), + [sym_number_literal] = ACTIONS(6902), + [sym_char_literal] = ACTIONS(6902), + [sym_string_literal] = ACTIONS(6902), + [sym_true] = ACTIONS(6904), + [sym_false] = ACTIONS(6904), + [sym_null] = ACTIONS(6904), + [sym_identifier] = ACTIONS(6904), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6904), + [sym_auto] = ACTIONS(6904), + [anon_sym_typename] = ACTIONS(6904), + [anon_sym_new] = ACTIONS(6904), + [anon_sym_COLON_COLON] = ACTIONS(6902), + [anon_sym_delete] = ACTIONS(6904), + [sym_nullptr] = ACTIONS(6904), + }, + [3195] = { + [sym_compound_statement] = STATE(3206), + [sym_labeled_statement] = STATE(3206), + [sym_expression_statement] = STATE(3206), + [sym_if_statement] = STATE(3206), + [sym_switch_statement] = STATE(3206), + [sym_case_statement] = STATE(3206), + [sym_while_statement] = STATE(3206), + [sym_do_statement] = STATE(3206), + [sym_for_statement] = STATE(3206), + [sym_return_statement] = STATE(3206), + [sym_break_statement] = STATE(3206), + [sym_continue_statement] = STATE(3206), + [sym_goto_statement] = STATE(3206), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3206), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -129206,268 +132057,339 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), + [sym_nullptr] = ACTIONS(6760), }, - [3143] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7294), + [3196] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7398), [sym_comment] = ACTIONS(49), }, - [3144] = { + [3197] = { [sym_argument_list] = STATE(802), - [aux_sym_for_statement_repeat1] = STATE(3153), + [aux_sym_for_statement_repeat1] = STATE(3208), [anon_sym_LPAREN] = ACTIONS(546), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7294), - [anon_sym_STAR] = ACTIONS(2232), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7398), + [anon_sym_STAR] = ACTIONS(2234), [anon_sym_LBRACK] = ACTIONS(1524), - [anon_sym_EQ] = ACTIONS(2234), - [anon_sym_QMARK] = ACTIONS(2236), - [anon_sym_STAR_EQ] = ACTIONS(2238), - [anon_sym_SLASH_EQ] = ACTIONS(2238), - [anon_sym_PERCENT_EQ] = ACTIONS(2238), - [anon_sym_PLUS_EQ] = ACTIONS(2238), - [anon_sym_DASH_EQ] = ACTIONS(2238), - [anon_sym_LT_LT_EQ] = ACTIONS(2238), - [anon_sym_GT_GT_EQ] = ACTIONS(2238), - [anon_sym_AMP_EQ] = ACTIONS(2238), - [anon_sym_CARET_EQ] = ACTIONS(2238), - [anon_sym_PIPE_EQ] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2248), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_LT_LT] = ACTIONS(2256), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PERCENT] = ACTIONS(2232), + [anon_sym_EQ] = ACTIONS(2236), + [anon_sym_QMARK] = ACTIONS(2238), + [anon_sym_STAR_EQ] = ACTIONS(2240), + [anon_sym_SLASH_EQ] = ACTIONS(2240), + [anon_sym_PERCENT_EQ] = ACTIONS(2240), + [anon_sym_PLUS_EQ] = ACTIONS(2240), + [anon_sym_DASH_EQ] = ACTIONS(2240), + [anon_sym_LT_LT_EQ] = ACTIONS(2240), + [anon_sym_GT_GT_EQ] = ACTIONS(2240), + [anon_sym_AMP_EQ] = ACTIONS(2240), + [anon_sym_CARET_EQ] = ACTIONS(2240), + [anon_sym_PIPE_EQ] = ACTIONS(2240), + [anon_sym_AMP] = ACTIONS(2242), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_AMP_AMP] = ACTIONS(2246), + [anon_sym_PIPE] = ACTIONS(2248), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2252), + [anon_sym_BANG_EQ] = ACTIONS(2252), + [anon_sym_LT] = ACTIONS(2254), + [anon_sym_GT] = ACTIONS(2254), + [anon_sym_LT_EQ] = ACTIONS(2256), + [anon_sym_GT_EQ] = ACTIONS(2256), + [anon_sym_LT_LT] = ACTIONS(2258), + [anon_sym_GT_GT] = ACTIONS(2258), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2234), [anon_sym_DASH_DASH] = ACTIONS(1552), [anon_sym_PLUS_PLUS] = ACTIONS(1552), [anon_sym_DOT] = ACTIONS(1554), [anon_sym_DASH_GT] = ACTIONS(1554), [sym_comment] = ACTIONS(49), }, - [3145] = { - [sym_raw_string_literal] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6865), - [anon_sym_LPAREN] = ACTIONS(6863), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6865), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6865), - [sym_preproc_directive] = ACTIONS(6865), - [anon_sym_SEMI] = ACTIONS(6863), - [anon_sym_typedef] = ACTIONS(6865), - [anon_sym_extern] = ACTIONS(6865), - [anon_sym_LBRACE] = ACTIONS(6863), - [anon_sym_STAR] = ACTIONS(6863), - [anon_sym_LBRACK] = ACTIONS(6863), - [anon_sym_static] = ACTIONS(6865), - [anon_sym_register] = ACTIONS(6865), - [anon_sym_inline] = ACTIONS(6865), - [anon_sym_const] = ACTIONS(6865), - [anon_sym_restrict] = ACTIONS(6865), - [anon_sym_volatile] = ACTIONS(6865), - [anon_sym__Atomic] = ACTIONS(6865), - [anon_sym_mutable] = ACTIONS(6865), - [anon_sym_explicit] = ACTIONS(6865), - [anon_sym_constexpr] = ACTIONS(6865), - [anon_sym_unsigned] = ACTIONS(6865), - [anon_sym_long] = ACTIONS(6865), - [anon_sym_short] = ACTIONS(6865), - [sym_primitive_type] = ACTIONS(6865), - [anon_sym_enum] = ACTIONS(6865), - [anon_sym_struct] = ACTIONS(6865), - [anon_sym_union] = ACTIONS(6865), - [anon_sym_if] = ACTIONS(6865), - [anon_sym_else] = ACTIONS(6865), - [anon_sym_switch] = ACTIONS(6865), - [anon_sym_case] = ACTIONS(6865), - [anon_sym_default] = ACTIONS(6865), - [anon_sym_while] = ACTIONS(6865), - [anon_sym_do] = ACTIONS(6865), - [anon_sym_for] = ACTIONS(6865), - [anon_sym_return] = ACTIONS(6865), - [anon_sym_break] = ACTIONS(6865), - [anon_sym_continue] = ACTIONS(6865), - [anon_sym_goto] = ACTIONS(6865), - [anon_sym_AMP] = ACTIONS(6863), - [anon_sym_BANG] = ACTIONS(6863), - [anon_sym_TILDE] = ACTIONS(6863), - [anon_sym_PLUS] = ACTIONS(6865), - [anon_sym_DASH] = ACTIONS(6865), - [anon_sym_DASH_DASH] = ACTIONS(6863), - [anon_sym_PLUS_PLUS] = ACTIONS(6863), - [anon_sym_sizeof] = ACTIONS(6865), - [sym_number_literal] = ACTIONS(6863), - [sym_char_literal] = ACTIONS(6863), - [sym_string_literal] = ACTIONS(6863), - [sym_true] = ACTIONS(6865), - [sym_false] = ACTIONS(6865), - [sym_null] = ACTIONS(6865), - [sym_identifier] = ACTIONS(6865), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(6865), - [sym_auto] = ACTIONS(6865), - [anon_sym_typename] = ACTIONS(6865), - [anon_sym_new] = ACTIONS(6865), - [anon_sym_COLON_COLON] = ACTIONS(6863), - [anon_sym_delete] = ACTIONS(6865), - [sym_nullptr] = ACTIONS(6865), - }, - [3146] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_else] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), - }, - [3147] = { - [sym_compound_statement] = STATE(3154), - [sym_labeled_statement] = STATE(3154), - [sym_expression_statement] = STATE(3154), - [sym_if_statement] = STATE(3154), - [sym_switch_statement] = STATE(3154), - [sym_case_statement] = STATE(3154), - [sym_while_statement] = STATE(3154), - [sym_do_statement] = STATE(3154), - [sym_for_statement] = STATE(3154), - [sym_return_statement] = STATE(3154), - [sym_break_statement] = STATE(3154), - [sym_continue_statement] = STATE(3154), - [sym_goto_statement] = STATE(3154), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3154), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [3198] = { + [sym_raw_string_literal] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(6927), + [anon_sym_LPAREN] = ACTIONS(6925), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(6927), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(6927), + [sym_preproc_directive] = ACTIONS(6927), + [anon_sym_SEMI] = ACTIONS(6925), + [anon_sym_typedef] = ACTIONS(6927), + [anon_sym_extern] = ACTIONS(6927), + [anon_sym_LBRACE] = ACTIONS(6925), + [anon_sym_STAR] = ACTIONS(6925), + [anon_sym_LBRACK] = ACTIONS(6925), + [anon_sym_static] = ACTIONS(6927), + [anon_sym_register] = ACTIONS(6927), + [anon_sym_inline] = ACTIONS(6927), + [anon_sym_const] = ACTIONS(6927), + [anon_sym_restrict] = ACTIONS(6927), + [anon_sym_volatile] = ACTIONS(6927), + [anon_sym__Atomic] = ACTIONS(6927), + [anon_sym_mutable] = ACTIONS(6927), + [anon_sym_explicit] = ACTIONS(6927), + [anon_sym_constexpr] = ACTIONS(6927), + [anon_sym_unsigned] = ACTIONS(6927), + [anon_sym_long] = ACTIONS(6927), + [anon_sym_short] = ACTIONS(6927), + [sym_primitive_type] = ACTIONS(6927), + [anon_sym_enum] = ACTIONS(6927), + [anon_sym_struct] = ACTIONS(6927), + [anon_sym_union] = ACTIONS(6927), + [anon_sym_if] = ACTIONS(6927), + [anon_sym_else] = ACTIONS(6927), + [anon_sym_switch] = ACTIONS(6927), + [anon_sym_case] = ACTIONS(6927), + [anon_sym_default] = ACTIONS(6927), + [anon_sym_while] = ACTIONS(6927), + [anon_sym_do] = ACTIONS(6927), + [anon_sym_for] = ACTIONS(6927), + [anon_sym_return] = ACTIONS(6927), + [anon_sym_break] = ACTIONS(6927), + [anon_sym_continue] = ACTIONS(6927), + [anon_sym_goto] = ACTIONS(6927), + [anon_sym_AMP] = ACTIONS(6925), + [anon_sym_BANG] = ACTIONS(6925), + [anon_sym_TILDE] = ACTIONS(6925), + [anon_sym_PLUS] = ACTIONS(6927), + [anon_sym_DASH] = ACTIONS(6927), + [anon_sym_DASH_DASH] = ACTIONS(6925), + [anon_sym_PLUS_PLUS] = ACTIONS(6925), + [anon_sym_sizeof] = ACTIONS(6927), + [sym_number_literal] = ACTIONS(6925), + [sym_char_literal] = ACTIONS(6925), + [sym_string_literal] = ACTIONS(6925), + [sym_true] = ACTIONS(6927), + [sym_false] = ACTIONS(6927), + [sym_null] = ACTIONS(6927), + [sym_identifier] = ACTIONS(6927), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(6927), + [sym_auto] = ACTIONS(6927), + [anon_sym_typename] = ACTIONS(6927), + [anon_sym_new] = ACTIONS(6927), + [anon_sym_COLON_COLON] = ACTIONS(6925), + [anon_sym_delete] = ACTIONS(6927), + [sym_nullptr] = ACTIONS(6927), + }, + [3199] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), + }, + [3200] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_else] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), + }, + [3201] = { + [sym_compound_statement] = STATE(3209), + [sym_labeled_statement] = STATE(3209), + [sym_expression_statement] = STATE(3209), + [sym_if_statement] = STATE(3209), + [sym_switch_statement] = STATE(3209), + [sym_case_statement] = STATE(3209), + [sym_while_statement] = STATE(3209), + [sym_do_statement] = STATE(3209), + [sym_for_statement] = STATE(3209), + [sym_return_statement] = STATE(3209), + [sym_break_statement] = STATE(3209), + [sym_continue_statement] = STATE(3209), + [sym_goto_statement] = STATE(3209), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3209), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -129476,154 +132398,154 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), - }, - [3148] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7296), - [sym_comment] = ACTIONS(49), - }, - [3149] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_RBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_else] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), - }, - [3150] = { - [sym_compound_statement] = STATE(3082), - [sym_labeled_statement] = STATE(3082), - [sym_expression_statement] = STATE(3082), - [sym_if_statement] = STATE(3082), - [sym_switch_statement] = STATE(3082), - [sym_case_statement] = STATE(3082), - [sym_while_statement] = STATE(3082), - [sym_do_statement] = STATE(3082), - [sym_for_statement] = STATE(3082), - [sym_return_statement] = STATE(3082), - [sym_break_statement] = STATE(3082), - [sym_continue_statement] = STATE(3082), - [sym_goto_statement] = STATE(3082), - [sym__expression] = STATE(872), - [sym_comma_expression] = STATE(873), - [sym_conditional_expression] = STATE(872), - [sym_assignment_expression] = STATE(872), - [sym_pointer_expression] = STATE(872), - [sym_logical_expression] = STATE(872), - [sym_bitwise_expression] = STATE(872), - [sym_equality_expression] = STATE(872), - [sym_relational_expression] = STATE(872), - [sym_shift_expression] = STATE(872), - [sym_math_expression] = STATE(872), - [sym_cast_expression] = STATE(872), - [sym_sizeof_expression] = STATE(872), - [sym_subscript_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_field_expression] = STATE(872), - [sym_compound_literal_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_concatenated_string] = STATE(872), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(872), - [sym_for_range_loop] = STATE(3082), - [sym_new_expression] = STATE(872), - [sym_delete_expression] = STATE(872), - [sym_lambda_expression] = STATE(872), + [sym_nullptr] = ACTIONS(6535), + }, + [3202] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7400), + [sym_comment] = ACTIONS(49), + }, + [3203] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_RBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_else] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), + }, + [3204] = { + [sym_compound_statement] = STATE(3128), + [sym_labeled_statement] = STATE(3128), + [sym_expression_statement] = STATE(3128), + [sym_if_statement] = STATE(3128), + [sym_switch_statement] = STATE(3128), + [sym_case_statement] = STATE(3128), + [sym_while_statement] = STATE(3128), + [sym_do_statement] = STATE(3128), + [sym_for_statement] = STATE(3128), + [sym_return_statement] = STATE(3128), + [sym_break_statement] = STATE(3128), + [sym_continue_statement] = STATE(3128), + [sym_goto_statement] = STATE(3128), + [sym__expression] = STATE(873), + [sym_comma_expression] = STATE(874), + [sym_conditional_expression] = STATE(873), + [sym_assignment_expression] = STATE(873), + [sym_pointer_expression] = STATE(873), + [sym_logical_expression] = STATE(873), + [sym_bitwise_expression] = STATE(873), + [sym_equality_expression] = STATE(873), + [sym_relational_expression] = STATE(873), + [sym_shift_expression] = STATE(873), + [sym_math_expression] = STATE(873), + [sym_cast_expression] = STATE(873), + [sym_sizeof_expression] = STATE(873), + [sym_subscript_expression] = STATE(873), + [sym_call_expression] = STATE(873), + [sym_field_expression] = STATE(873), + [sym_compound_literal_expression] = STATE(873), + [sym_parenthesized_expression] = STATE(873), + [sym_concatenated_string] = STATE(873), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(873), + [sym_for_range_loop] = STATE(3128), + [sym_new_expression] = STATE(873), + [sym_delete_expression] = STATE(873), + [sym_lambda_expression] = STATE(873), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(1658), + [sym_raw_string_literal] = ACTIONS(1660), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), + [anon_sym_SEMI] = ACTIONS(1662), + [anon_sym_LBRACE] = ACTIONS(1664), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6265), - [anon_sym_switch] = ACTIONS(6267), - [anon_sym_case] = ACTIONS(6269), - [anon_sym_default] = ACTIONS(6271), - [anon_sym_while] = ACTIONS(6273), - [anon_sym_do] = ACTIONS(1674), - [anon_sym_for] = ACTIONS(6275), - [anon_sym_return] = ACTIONS(1678), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1682), - [anon_sym_goto] = ACTIONS(1684), + [anon_sym_if] = ACTIONS(6297), + [anon_sym_switch] = ACTIONS(6299), + [anon_sym_case] = ACTIONS(6301), + [anon_sym_default] = ACTIONS(6303), + [anon_sym_while] = ACTIONS(6305), + [anon_sym_do] = ACTIONS(1676), + [anon_sym_for] = ACTIONS(6307), + [anon_sym_return] = ACTIONS(1680), + [anon_sym_break] = ACTIONS(1682), + [anon_sym_continue] = ACTIONS(1684), + [anon_sym_goto] = ACTIONS(1686), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -129632,148 +132554,217 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(1658), - [sym_char_literal] = ACTIONS(1658), + [sym_number_literal] = ACTIONS(1660), + [sym_char_literal] = ACTIONS(1660), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(1686), - [sym_false] = ACTIONS(1686), - [sym_null] = ACTIONS(1686), - [sym_identifier] = ACTIONS(6277), + [sym_true] = ACTIONS(1688), + [sym_false] = ACTIONS(1688), + [sym_null] = ACTIONS(1688), + [sym_identifier] = ACTIONS(6309), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(1686), - }, - [3151] = { - [sym_raw_string_literal] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7007), - [anon_sym_LPAREN] = ACTIONS(7005), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7007), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7007), - [sym_preproc_directive] = ACTIONS(7007), - [anon_sym_SEMI] = ACTIONS(7005), - [anon_sym_typedef] = ACTIONS(7007), - [anon_sym_extern] = ACTIONS(7007), - [anon_sym_LBRACE] = ACTIONS(7005), - [anon_sym_STAR] = ACTIONS(7005), - [anon_sym_LBRACK] = ACTIONS(7005), - [anon_sym_static] = ACTIONS(7007), - [anon_sym_register] = ACTIONS(7007), - [anon_sym_inline] = ACTIONS(7007), - [anon_sym_const] = ACTIONS(7007), - [anon_sym_restrict] = ACTIONS(7007), - [anon_sym_volatile] = ACTIONS(7007), - [anon_sym__Atomic] = ACTIONS(7007), - [anon_sym_mutable] = ACTIONS(7007), - [anon_sym_explicit] = ACTIONS(7007), - [anon_sym_constexpr] = ACTIONS(7007), - [anon_sym_unsigned] = ACTIONS(7007), - [anon_sym_long] = ACTIONS(7007), - [anon_sym_short] = ACTIONS(7007), - [sym_primitive_type] = ACTIONS(7007), - [anon_sym_enum] = ACTIONS(7007), - [anon_sym_struct] = ACTIONS(7007), - [anon_sym_union] = ACTIONS(7007), - [anon_sym_if] = ACTIONS(7007), - [anon_sym_else] = ACTIONS(7007), - [anon_sym_switch] = ACTIONS(7007), - [anon_sym_case] = ACTIONS(7007), - [anon_sym_default] = ACTIONS(7007), - [anon_sym_while] = ACTIONS(7007), - [anon_sym_do] = ACTIONS(7007), - [anon_sym_for] = ACTIONS(7007), - [anon_sym_return] = ACTIONS(7007), - [anon_sym_break] = ACTIONS(7007), - [anon_sym_continue] = ACTIONS(7007), - [anon_sym_goto] = ACTIONS(7007), - [anon_sym_AMP] = ACTIONS(7005), - [anon_sym_BANG] = ACTIONS(7005), - [anon_sym_TILDE] = ACTIONS(7005), - [anon_sym_PLUS] = ACTIONS(7007), - [anon_sym_DASH] = ACTIONS(7007), - [anon_sym_DASH_DASH] = ACTIONS(7005), - [anon_sym_PLUS_PLUS] = ACTIONS(7005), - [anon_sym_sizeof] = ACTIONS(7007), - [sym_number_literal] = ACTIONS(7005), - [sym_char_literal] = ACTIONS(7005), - [sym_string_literal] = ACTIONS(7005), - [sym_true] = ACTIONS(7007), - [sym_false] = ACTIONS(7007), - [sym_null] = ACTIONS(7007), - [sym_identifier] = ACTIONS(7007), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7007), - [sym_auto] = ACTIONS(7007), - [anon_sym_typename] = ACTIONS(7007), - [anon_sym_new] = ACTIONS(7007), - [anon_sym_COLON_COLON] = ACTIONS(7005), - [anon_sym_delete] = ACTIONS(7007), - [sym_nullptr] = ACTIONS(7007), - }, - [3152] = { - [sym_compound_statement] = STATE(3156), - [sym_labeled_statement] = STATE(3156), - [sym_expression_statement] = STATE(3156), - [sym_if_statement] = STATE(3156), - [sym_switch_statement] = STATE(3156), - [sym_case_statement] = STATE(3156), - [sym_while_statement] = STATE(3156), - [sym_do_statement] = STATE(3156), - [sym_for_statement] = STATE(3156), - [sym_return_statement] = STATE(3156), - [sym_break_statement] = STATE(3156), - [sym_continue_statement] = STATE(3156), - [sym_goto_statement] = STATE(3156), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3156), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), - [sym_lambda_capture_specifier] = STATE(370), - [sym_scoped_identifier] = STATE(371), - [sym_scoped_type_identifier] = STATE(587), - [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_nullptr] = ACTIONS(1688), + }, + [3205] = { + [sym_raw_string_literal] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7059), + [anon_sym_LPAREN] = ACTIONS(7057), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7059), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7059), + [sym_preproc_directive] = ACTIONS(7059), + [anon_sym_SEMI] = ACTIONS(7057), + [anon_sym_typedef] = ACTIONS(7059), + [anon_sym_extern] = ACTIONS(7059), + [anon_sym_LBRACE] = ACTIONS(7057), + [anon_sym_STAR] = ACTIONS(7057), + [anon_sym_LBRACK] = ACTIONS(7057), + [anon_sym_static] = ACTIONS(7059), + [anon_sym_register] = ACTIONS(7059), + [anon_sym_inline] = ACTIONS(7059), + [anon_sym_const] = ACTIONS(7059), + [anon_sym_restrict] = ACTIONS(7059), + [anon_sym_volatile] = ACTIONS(7059), + [anon_sym__Atomic] = ACTIONS(7059), + [anon_sym_mutable] = ACTIONS(7059), + [anon_sym_explicit] = ACTIONS(7059), + [anon_sym_constexpr] = ACTIONS(7059), + [anon_sym_unsigned] = ACTIONS(7059), + [anon_sym_long] = ACTIONS(7059), + [anon_sym_short] = ACTIONS(7059), + [sym_primitive_type] = ACTIONS(7059), + [anon_sym_enum] = ACTIONS(7059), + [anon_sym_struct] = ACTIONS(7059), + [anon_sym_union] = ACTIONS(7059), + [anon_sym_if] = ACTIONS(7059), + [anon_sym_else] = ACTIONS(7059), + [anon_sym_switch] = ACTIONS(7059), + [anon_sym_case] = ACTIONS(7059), + [anon_sym_default] = ACTIONS(7059), + [anon_sym_while] = ACTIONS(7059), + [anon_sym_do] = ACTIONS(7059), + [anon_sym_for] = ACTIONS(7059), + [anon_sym_return] = ACTIONS(7059), + [anon_sym_break] = ACTIONS(7059), + [anon_sym_continue] = ACTIONS(7059), + [anon_sym_goto] = ACTIONS(7059), + [anon_sym_AMP] = ACTIONS(7057), + [anon_sym_BANG] = ACTIONS(7057), + [anon_sym_TILDE] = ACTIONS(7057), + [anon_sym_PLUS] = ACTIONS(7059), + [anon_sym_DASH] = ACTIONS(7059), + [anon_sym_DASH_DASH] = ACTIONS(7057), + [anon_sym_PLUS_PLUS] = ACTIONS(7057), + [anon_sym_sizeof] = ACTIONS(7059), + [sym_number_literal] = ACTIONS(7057), + [sym_char_literal] = ACTIONS(7057), + [sym_string_literal] = ACTIONS(7057), + [sym_true] = ACTIONS(7059), + [sym_false] = ACTIONS(7059), + [sym_null] = ACTIONS(7059), + [sym_identifier] = ACTIONS(7059), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7059), + [sym_auto] = ACTIONS(7059), + [anon_sym_typename] = ACTIONS(7059), + [anon_sym_new] = ACTIONS(7059), + [anon_sym_COLON_COLON] = ACTIONS(7057), + [anon_sym_delete] = ACTIONS(7059), + [sym_nullptr] = ACTIONS(7059), + }, + [3206] = { + [sym_raw_string_literal] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7085), + [anon_sym_LPAREN] = ACTIONS(7083), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7085), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7085), + [sym_preproc_directive] = ACTIONS(7085), + [anon_sym_SEMI] = ACTIONS(7083), + [anon_sym_typedef] = ACTIONS(7085), + [anon_sym_extern] = ACTIONS(7085), + [anon_sym_LBRACE] = ACTIONS(7083), + [anon_sym_STAR] = ACTIONS(7083), + [anon_sym_LBRACK] = ACTIONS(7083), + [anon_sym_static] = ACTIONS(7085), + [anon_sym_register] = ACTIONS(7085), + [anon_sym_inline] = ACTIONS(7085), + [anon_sym_const] = ACTIONS(7085), + [anon_sym_restrict] = ACTIONS(7085), + [anon_sym_volatile] = ACTIONS(7085), + [anon_sym__Atomic] = ACTIONS(7085), + [anon_sym_mutable] = ACTIONS(7085), + [anon_sym_explicit] = ACTIONS(7085), + [anon_sym_constexpr] = ACTIONS(7085), + [anon_sym_unsigned] = ACTIONS(7085), + [anon_sym_long] = ACTIONS(7085), + [anon_sym_short] = ACTIONS(7085), + [sym_primitive_type] = ACTIONS(7085), + [anon_sym_enum] = ACTIONS(7085), + [anon_sym_struct] = ACTIONS(7085), + [anon_sym_union] = ACTIONS(7085), + [anon_sym_if] = ACTIONS(7085), + [anon_sym_else] = ACTIONS(7085), + [anon_sym_switch] = ACTIONS(7085), + [anon_sym_case] = ACTIONS(7085), + [anon_sym_default] = ACTIONS(7085), + [anon_sym_while] = ACTIONS(7085), + [anon_sym_do] = ACTIONS(7085), + [anon_sym_for] = ACTIONS(7085), + [anon_sym_return] = ACTIONS(7085), + [anon_sym_break] = ACTIONS(7085), + [anon_sym_continue] = ACTIONS(7085), + [anon_sym_goto] = ACTIONS(7085), + [anon_sym_AMP] = ACTIONS(7083), + [anon_sym_BANG] = ACTIONS(7083), + [anon_sym_TILDE] = ACTIONS(7083), + [anon_sym_PLUS] = ACTIONS(7085), + [anon_sym_DASH] = ACTIONS(7085), + [anon_sym_DASH_DASH] = ACTIONS(7083), + [anon_sym_PLUS_PLUS] = ACTIONS(7083), + [anon_sym_sizeof] = ACTIONS(7085), + [sym_number_literal] = ACTIONS(7083), + [sym_char_literal] = ACTIONS(7083), + [sym_string_literal] = ACTIONS(7083), + [sym_true] = ACTIONS(7085), + [sym_false] = ACTIONS(7085), + [sym_null] = ACTIONS(7085), + [sym_identifier] = ACTIONS(7085), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7085), + [sym_auto] = ACTIONS(7085), + [anon_sym_typename] = ACTIONS(7085), + [anon_sym_new] = ACTIONS(7085), + [anon_sym_COLON_COLON] = ACTIONS(7083), + [anon_sym_delete] = ACTIONS(7085), + [sym_nullptr] = ACTIONS(7085), + }, + [3207] = { + [sym_compound_statement] = STATE(3211), + [sym_labeled_statement] = STATE(3211), + [sym_expression_statement] = STATE(3211), + [sym_if_statement] = STATE(3211), + [sym_switch_statement] = STATE(3211), + [sym_case_statement] = STATE(3211), + [sym_while_statement] = STATE(3211), + [sym_do_statement] = STATE(3211), + [sym_for_statement] = STATE(3211), + [sym_return_statement] = STATE(3211), + [sym_break_statement] = STATE(3211), + [sym_continue_statement] = STATE(3211), + [sym_goto_statement] = STATE(3211), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3211), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), + [sym_lambda_capture_specifier] = STATE(370), + [sym_scoped_identifier] = STATE(371), + [sym_scoped_type_identifier] = STATE(587), + [sym_scoped_namespace_identifier] = STATE(588), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -129782,156 +132773,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), - }, - [3153] = { - [aux_sym_for_statement_repeat1] = STATE(2775), - [anon_sym_COMMA] = ACTIONS(6305), - [anon_sym_RPAREN] = ACTIONS(7298), - [sym_comment] = ACTIONS(49), - }, - [3154] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_else] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), - }, - [3155] = { - [sym_compound_statement] = STATE(3158), - [sym_labeled_statement] = STATE(3158), - [sym_expression_statement] = STATE(3158), - [sym_if_statement] = STATE(3158), - [sym_switch_statement] = STATE(3158), - [sym_case_statement] = STATE(3158), - [sym_while_statement] = STATE(3158), - [sym_do_statement] = STATE(3158), - [sym_for_statement] = STATE(3158), - [sym_return_statement] = STATE(3158), - [sym_break_statement] = STATE(3158), - [sym_continue_statement] = STATE(3158), - [sym_goto_statement] = STATE(3158), - [sym__expression] = STATE(2723), - [sym_comma_expression] = STATE(2724), - [sym_conditional_expression] = STATE(2723), - [sym_assignment_expression] = STATE(2723), - [sym_pointer_expression] = STATE(2723), - [sym_logical_expression] = STATE(2723), - [sym_bitwise_expression] = STATE(2723), - [sym_equality_expression] = STATE(2723), - [sym_relational_expression] = STATE(2723), - [sym_shift_expression] = STATE(2723), - [sym_math_expression] = STATE(2723), - [sym_cast_expression] = STATE(2723), - [sym_sizeof_expression] = STATE(2723), - [sym_subscript_expression] = STATE(2723), - [sym_call_expression] = STATE(2723), - [sym_field_expression] = STATE(2723), - [sym_compound_literal_expression] = STATE(2723), - [sym_parenthesized_expression] = STATE(2723), - [sym_concatenated_string] = STATE(2723), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2723), - [sym_for_range_loop] = STATE(3158), - [sym_new_expression] = STATE(2723), - [sym_delete_expression] = STATE(2723), - [sym_lambda_expression] = STATE(2723), + [sym_nullptr] = ACTIONS(6760), + }, + [3208] = { + [aux_sym_for_statement_repeat1] = STATE(2796), + [anon_sym_COMMA] = ACTIONS(6339), + [anon_sym_RPAREN] = ACTIONS(7402), + [sym_comment] = ACTIONS(49), + }, + [3209] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_else] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), + }, + [3210] = { + [sym_compound_statement] = STATE(3213), + [sym_labeled_statement] = STATE(3213), + [sym_expression_statement] = STATE(3213), + [sym_if_statement] = STATE(3213), + [sym_switch_statement] = STATE(3213), + [sym_case_statement] = STATE(3213), + [sym_while_statement] = STATE(3213), + [sym_do_statement] = STATE(3213), + [sym_for_statement] = STATE(3213), + [sym_return_statement] = STATE(3213), + [sym_break_statement] = STATE(3213), + [sym_continue_statement] = STATE(3213), + [sym_goto_statement] = STATE(3213), + [sym__expression] = STATE(2739), + [sym_comma_expression] = STATE(2740), + [sym_conditional_expression] = STATE(2739), + [sym_assignment_expression] = STATE(2739), + [sym_pointer_expression] = STATE(2739), + [sym_logical_expression] = STATE(2739), + [sym_bitwise_expression] = STATE(2739), + [sym_equality_expression] = STATE(2739), + [sym_relational_expression] = STATE(2739), + [sym_shift_expression] = STATE(2739), + [sym_math_expression] = STATE(2739), + [sym_cast_expression] = STATE(2739), + [sym_sizeof_expression] = STATE(2739), + [sym_subscript_expression] = STATE(2739), + [sym_call_expression] = STATE(2739), + [sym_field_expression] = STATE(2739), + [sym_compound_literal_expression] = STATE(2739), + [sym_parenthesized_expression] = STATE(2739), + [sym_concatenated_string] = STATE(2739), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2739), + [sym_for_range_loop] = STATE(3213), + [sym_new_expression] = STATE(2739), + [sym_delete_expression] = STATE(2739), + [sym_lambda_expression] = STATE(2739), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6469), + [sym_raw_string_literal] = ACTIONS(6507), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6471), - [anon_sym_LBRACE] = ACTIONS(6473), + [anon_sym_SEMI] = ACTIONS(6509), + [anon_sym_LBRACE] = ACTIONS(6511), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6475), - [anon_sym_switch] = ACTIONS(6477), - [anon_sym_case] = ACTIONS(6479), - [anon_sym_default] = ACTIONS(6481), - [anon_sym_while] = ACTIONS(6483), - [anon_sym_do] = ACTIONS(6485), - [anon_sym_for] = ACTIONS(6487), - [anon_sym_return] = ACTIONS(6489), - [anon_sym_break] = ACTIONS(6491), - [anon_sym_continue] = ACTIONS(6493), - [anon_sym_goto] = ACTIONS(6495), + [anon_sym_if] = ACTIONS(6513), + [anon_sym_switch] = ACTIONS(6515), + [anon_sym_case] = ACTIONS(6517), + [anon_sym_default] = ACTIONS(6519), + [anon_sym_while] = ACTIONS(6521), + [anon_sym_do] = ACTIONS(6523), + [anon_sym_for] = ACTIONS(6525), + [anon_sym_return] = ACTIONS(6527), + [anon_sym_break] = ACTIONS(6529), + [anon_sym_continue] = ACTIONS(6531), + [anon_sym_goto] = ACTIONS(6533), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -129940,148 +132931,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6469), - [sym_char_literal] = ACTIONS(6469), + [sym_number_literal] = ACTIONS(6507), + [sym_char_literal] = ACTIONS(6507), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6497), - [sym_false] = ACTIONS(6497), - [sym_null] = ACTIONS(6497), - [sym_identifier] = ACTIONS(6499), + [sym_true] = ACTIONS(6535), + [sym_false] = ACTIONS(6535), + [sym_null] = ACTIONS(6535), + [sym_identifier] = ACTIONS(6537), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6497), - }, - [3156] = { - [sym_raw_string_literal] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7116), - [anon_sym_LPAREN] = ACTIONS(7114), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7116), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7116), - [sym_preproc_directive] = ACTIONS(7116), - [anon_sym_SEMI] = ACTIONS(7114), - [anon_sym_typedef] = ACTIONS(7116), - [anon_sym_extern] = ACTIONS(7116), - [anon_sym_LBRACE] = ACTIONS(7114), - [anon_sym_STAR] = ACTIONS(7114), - [anon_sym_LBRACK] = ACTIONS(7114), - [anon_sym_static] = ACTIONS(7116), - [anon_sym_register] = ACTIONS(7116), - [anon_sym_inline] = ACTIONS(7116), - [anon_sym_const] = ACTIONS(7116), - [anon_sym_restrict] = ACTIONS(7116), - [anon_sym_volatile] = ACTIONS(7116), - [anon_sym__Atomic] = ACTIONS(7116), - [anon_sym_mutable] = ACTIONS(7116), - [anon_sym_explicit] = ACTIONS(7116), - [anon_sym_constexpr] = ACTIONS(7116), - [anon_sym_unsigned] = ACTIONS(7116), - [anon_sym_long] = ACTIONS(7116), - [anon_sym_short] = ACTIONS(7116), - [sym_primitive_type] = ACTIONS(7116), - [anon_sym_enum] = ACTIONS(7116), - [anon_sym_struct] = ACTIONS(7116), - [anon_sym_union] = ACTIONS(7116), - [anon_sym_if] = ACTIONS(7116), - [anon_sym_else] = ACTIONS(7116), - [anon_sym_switch] = ACTIONS(7116), - [anon_sym_case] = ACTIONS(7116), - [anon_sym_default] = ACTIONS(7116), - [anon_sym_while] = ACTIONS(7116), - [anon_sym_do] = ACTIONS(7116), - [anon_sym_for] = ACTIONS(7116), - [anon_sym_return] = ACTIONS(7116), - [anon_sym_break] = ACTIONS(7116), - [anon_sym_continue] = ACTIONS(7116), - [anon_sym_goto] = ACTIONS(7116), - [anon_sym_AMP] = ACTIONS(7114), - [anon_sym_BANG] = ACTIONS(7114), - [anon_sym_TILDE] = ACTIONS(7114), - [anon_sym_PLUS] = ACTIONS(7116), - [anon_sym_DASH] = ACTIONS(7116), - [anon_sym_DASH_DASH] = ACTIONS(7114), - [anon_sym_PLUS_PLUS] = ACTIONS(7114), - [anon_sym_sizeof] = ACTIONS(7116), - [sym_number_literal] = ACTIONS(7114), - [sym_char_literal] = ACTIONS(7114), - [sym_string_literal] = ACTIONS(7114), - [sym_true] = ACTIONS(7116), - [sym_false] = ACTIONS(7116), - [sym_null] = ACTIONS(7116), - [sym_identifier] = ACTIONS(7116), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7116), - [sym_auto] = ACTIONS(7116), - [anon_sym_typename] = ACTIONS(7116), - [anon_sym_new] = ACTIONS(7116), - [anon_sym_COLON_COLON] = ACTIONS(7114), - [anon_sym_delete] = ACTIONS(7116), - [sym_nullptr] = ACTIONS(7116), - }, - [3157] = { - [sym_compound_statement] = STATE(3159), - [sym_labeled_statement] = STATE(3159), - [sym_expression_statement] = STATE(3159), - [sym_if_statement] = STATE(3159), - [sym_switch_statement] = STATE(3159), - [sym_case_statement] = STATE(3159), - [sym_while_statement] = STATE(3159), - [sym_do_statement] = STATE(3159), - [sym_for_statement] = STATE(3159), - [sym_return_statement] = STATE(3159), - [sym_break_statement] = STATE(3159), - [sym_continue_statement] = STATE(3159), - [sym_goto_statement] = STATE(3159), - [sym__expression] = STATE(2823), - [sym_comma_expression] = STATE(2824), - [sym_conditional_expression] = STATE(2823), - [sym_assignment_expression] = STATE(2823), - [sym_pointer_expression] = STATE(2823), - [sym_logical_expression] = STATE(2823), - [sym_bitwise_expression] = STATE(2823), - [sym_equality_expression] = STATE(2823), - [sym_relational_expression] = STATE(2823), - [sym_shift_expression] = STATE(2823), - [sym_math_expression] = STATE(2823), - [sym_cast_expression] = STATE(2823), - [sym_sizeof_expression] = STATE(2823), - [sym_subscript_expression] = STATE(2823), - [sym_call_expression] = STATE(2823), - [sym_field_expression] = STATE(2823), - [sym_compound_literal_expression] = STATE(2823), - [sym_parenthesized_expression] = STATE(2823), - [sym_concatenated_string] = STATE(2823), - [sym_template_type] = STATE(586), - [sym_template_function] = STATE(2823), - [sym_for_range_loop] = STATE(3159), - [sym_new_expression] = STATE(2823), - [sym_delete_expression] = STATE(2823), - [sym_lambda_expression] = STATE(2823), + [sym_nullptr] = ACTIONS(6535), + }, + [3211] = { + [sym_raw_string_literal] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7204), + [anon_sym_LPAREN] = ACTIONS(7202), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7204), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7204), + [sym_preproc_directive] = ACTIONS(7204), + [anon_sym_SEMI] = ACTIONS(7202), + [anon_sym_typedef] = ACTIONS(7204), + [anon_sym_extern] = ACTIONS(7204), + [anon_sym_LBRACE] = ACTIONS(7202), + [anon_sym_STAR] = ACTIONS(7202), + [anon_sym_LBRACK] = ACTIONS(7202), + [anon_sym_static] = ACTIONS(7204), + [anon_sym_register] = ACTIONS(7204), + [anon_sym_inline] = ACTIONS(7204), + [anon_sym_const] = ACTIONS(7204), + [anon_sym_restrict] = ACTIONS(7204), + [anon_sym_volatile] = ACTIONS(7204), + [anon_sym__Atomic] = ACTIONS(7204), + [anon_sym_mutable] = ACTIONS(7204), + [anon_sym_explicit] = ACTIONS(7204), + [anon_sym_constexpr] = ACTIONS(7204), + [anon_sym_unsigned] = ACTIONS(7204), + [anon_sym_long] = ACTIONS(7204), + [anon_sym_short] = ACTIONS(7204), + [sym_primitive_type] = ACTIONS(7204), + [anon_sym_enum] = ACTIONS(7204), + [anon_sym_struct] = ACTIONS(7204), + [anon_sym_union] = ACTIONS(7204), + [anon_sym_if] = ACTIONS(7204), + [anon_sym_else] = ACTIONS(7204), + [anon_sym_switch] = ACTIONS(7204), + [anon_sym_case] = ACTIONS(7204), + [anon_sym_default] = ACTIONS(7204), + [anon_sym_while] = ACTIONS(7204), + [anon_sym_do] = ACTIONS(7204), + [anon_sym_for] = ACTIONS(7204), + [anon_sym_return] = ACTIONS(7204), + [anon_sym_break] = ACTIONS(7204), + [anon_sym_continue] = ACTIONS(7204), + [anon_sym_goto] = ACTIONS(7204), + [anon_sym_AMP] = ACTIONS(7202), + [anon_sym_BANG] = ACTIONS(7202), + [anon_sym_TILDE] = ACTIONS(7202), + [anon_sym_PLUS] = ACTIONS(7204), + [anon_sym_DASH] = ACTIONS(7204), + [anon_sym_DASH_DASH] = ACTIONS(7202), + [anon_sym_PLUS_PLUS] = ACTIONS(7202), + [anon_sym_sizeof] = ACTIONS(7204), + [sym_number_literal] = ACTIONS(7202), + [sym_char_literal] = ACTIONS(7202), + [sym_string_literal] = ACTIONS(7202), + [sym_true] = ACTIONS(7204), + [sym_false] = ACTIONS(7204), + [sym_null] = ACTIONS(7204), + [sym_identifier] = ACTIONS(7204), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7204), + [sym_auto] = ACTIONS(7204), + [anon_sym_typename] = ACTIONS(7204), + [anon_sym_new] = ACTIONS(7204), + [anon_sym_COLON_COLON] = ACTIONS(7202), + [anon_sym_delete] = ACTIONS(7204), + [sym_nullptr] = ACTIONS(7204), + }, + [3212] = { + [sym_compound_statement] = STATE(3214), + [sym_labeled_statement] = STATE(3214), + [sym_expression_statement] = STATE(3214), + [sym_if_statement] = STATE(3214), + [sym_switch_statement] = STATE(3214), + [sym_case_statement] = STATE(3214), + [sym_while_statement] = STATE(3214), + [sym_do_statement] = STATE(3214), + [sym_for_statement] = STATE(3214), + [sym_return_statement] = STATE(3214), + [sym_break_statement] = STATE(3214), + [sym_continue_statement] = STATE(3214), + [sym_goto_statement] = STATE(3214), + [sym__expression] = STATE(2844), + [sym_comma_expression] = STATE(2845), + [sym_conditional_expression] = STATE(2844), + [sym_assignment_expression] = STATE(2844), + [sym_pointer_expression] = STATE(2844), + [sym_logical_expression] = STATE(2844), + [sym_bitwise_expression] = STATE(2844), + [sym_equality_expression] = STATE(2844), + [sym_relational_expression] = STATE(2844), + [sym_shift_expression] = STATE(2844), + [sym_math_expression] = STATE(2844), + [sym_cast_expression] = STATE(2844), + [sym_sizeof_expression] = STATE(2844), + [sym_subscript_expression] = STATE(2844), + [sym_call_expression] = STATE(2844), + [sym_field_expression] = STATE(2844), + [sym_compound_literal_expression] = STATE(2844), + [sym_parenthesized_expression] = STATE(2844), + [sym_concatenated_string] = STATE(2844), + [sym_template_type] = STATE(586), + [sym_template_function] = STATE(2844), + [sym_for_range_loop] = STATE(3214), + [sym_new_expression] = STATE(2844), + [sym_delete_expression] = STATE(2844), + [sym_lambda_expression] = STATE(2844), [sym_lambda_capture_specifier] = STATE(370), [sym_scoped_identifier] = STATE(371), [sym_scoped_type_identifier] = STATE(587), [sym_scoped_namespace_identifier] = STATE(588), - [sym_raw_string_literal] = ACTIONS(6682), + [sym_raw_string_literal] = ACTIONS(6732), [anon_sym_LPAREN] = ACTIONS(626), - [anon_sym_SEMI] = ACTIONS(6684), - [anon_sym_LBRACE] = ACTIONS(6686), + [anon_sym_SEMI] = ACTIONS(6734), + [anon_sym_LBRACE] = ACTIONS(6736), [anon_sym_STAR] = ACTIONS(644), [anon_sym_LBRACK] = ACTIONS(570), - [anon_sym_if] = ACTIONS(6688), - [anon_sym_switch] = ACTIONS(6690), - [anon_sym_case] = ACTIONS(6692), - [anon_sym_default] = ACTIONS(6694), - [anon_sym_while] = ACTIONS(6696), - [anon_sym_do] = ACTIONS(6698), - [anon_sym_for] = ACTIONS(6700), - [anon_sym_return] = ACTIONS(6702), - [anon_sym_break] = ACTIONS(6704), - [anon_sym_continue] = ACTIONS(6706), - [anon_sym_goto] = ACTIONS(6708), + [anon_sym_if] = ACTIONS(6738), + [anon_sym_switch] = ACTIONS(6740), + [anon_sym_case] = ACTIONS(6742), + [anon_sym_default] = ACTIONS(6744), + [anon_sym_while] = ACTIONS(6746), + [anon_sym_do] = ACTIONS(6748), + [anon_sym_for] = ACTIONS(6750), + [anon_sym_return] = ACTIONS(6752), + [anon_sym_break] = ACTIONS(6754), + [anon_sym_continue] = ACTIONS(6756), + [anon_sym_goto] = ACTIONS(6758), [anon_sym_AMP] = ACTIONS(644), [anon_sym_BANG] = ACTIONS(668), [anon_sym_TILDE] = ACTIONS(670), @@ -130090,158 +133081,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(674), [anon_sym_PLUS_PLUS] = ACTIONS(674), [anon_sym_sizeof] = ACTIONS(676), - [sym_number_literal] = ACTIONS(6682), - [sym_char_literal] = ACTIONS(6682), + [sym_number_literal] = ACTIONS(6732), + [sym_char_literal] = ACTIONS(6732), [sym_string_literal] = ACTIONS(678), - [sym_true] = ACTIONS(6710), - [sym_false] = ACTIONS(6710), - [sym_null] = ACTIONS(6710), - [sym_identifier] = ACTIONS(6712), + [sym_true] = ACTIONS(6760), + [sym_false] = ACTIONS(6760), + [sym_null] = ACTIONS(6760), + [sym_identifier] = ACTIONS(6762), [sym_comment] = ACTIONS(49), [anon_sym_new] = ACTIONS(604), [anon_sym_COLON_COLON] = ACTIONS(1303), [anon_sym_delete] = ACTIONS(686), - [sym_nullptr] = ACTIONS(6710), - }, - [3158] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_else] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), - }, - [3159] = { - [sym_raw_string_literal] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7198), - [anon_sym_LPAREN] = ACTIONS(7196), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7198), - [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7198), - [sym_preproc_directive] = ACTIONS(7198), - [anon_sym_SEMI] = ACTIONS(7196), - [anon_sym_typedef] = ACTIONS(7198), - [anon_sym_extern] = ACTIONS(7198), - [anon_sym_LBRACE] = ACTIONS(7196), - [anon_sym_STAR] = ACTIONS(7196), - [anon_sym_LBRACK] = ACTIONS(7196), - [anon_sym_static] = ACTIONS(7198), - [anon_sym_register] = ACTIONS(7198), - [anon_sym_inline] = ACTIONS(7198), - [anon_sym_const] = ACTIONS(7198), - [anon_sym_restrict] = ACTIONS(7198), - [anon_sym_volatile] = ACTIONS(7198), - [anon_sym__Atomic] = ACTIONS(7198), - [anon_sym_mutable] = ACTIONS(7198), - [anon_sym_explicit] = ACTIONS(7198), - [anon_sym_constexpr] = ACTIONS(7198), - [anon_sym_unsigned] = ACTIONS(7198), - [anon_sym_long] = ACTIONS(7198), - [anon_sym_short] = ACTIONS(7198), - [sym_primitive_type] = ACTIONS(7198), - [anon_sym_enum] = ACTIONS(7198), - [anon_sym_struct] = ACTIONS(7198), - [anon_sym_union] = ACTIONS(7198), - [anon_sym_if] = ACTIONS(7198), - [anon_sym_else] = ACTIONS(7198), - [anon_sym_switch] = ACTIONS(7198), - [anon_sym_case] = ACTIONS(7198), - [anon_sym_default] = ACTIONS(7198), - [anon_sym_while] = ACTIONS(7198), - [anon_sym_do] = ACTIONS(7198), - [anon_sym_for] = ACTIONS(7198), - [anon_sym_return] = ACTIONS(7198), - [anon_sym_break] = ACTIONS(7198), - [anon_sym_continue] = ACTIONS(7198), - [anon_sym_goto] = ACTIONS(7198), - [anon_sym_AMP] = ACTIONS(7196), - [anon_sym_BANG] = ACTIONS(7196), - [anon_sym_TILDE] = ACTIONS(7196), - [anon_sym_PLUS] = ACTIONS(7198), - [anon_sym_DASH] = ACTIONS(7198), - [anon_sym_DASH_DASH] = ACTIONS(7196), - [anon_sym_PLUS_PLUS] = ACTIONS(7196), - [anon_sym_sizeof] = ACTIONS(7198), - [sym_number_literal] = ACTIONS(7196), - [sym_char_literal] = ACTIONS(7196), - [sym_string_literal] = ACTIONS(7196), - [sym_true] = ACTIONS(7198), - [sym_false] = ACTIONS(7198), - [sym_null] = ACTIONS(7198), - [sym_identifier] = ACTIONS(7198), - [sym_comment] = ACTIONS(49), - [anon_sym_class] = ACTIONS(7198), - [sym_auto] = ACTIONS(7198), - [anon_sym_typename] = ACTIONS(7198), - [anon_sym_new] = ACTIONS(7198), - [anon_sym_COLON_COLON] = ACTIONS(7196), - [anon_sym_delete] = ACTIONS(7198), - [sym_nullptr] = ACTIONS(7198), + [sym_nullptr] = ACTIONS(6760), + }, + [3213] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelse_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARelif_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_else] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), + }, + [3214] = { + [sym_raw_string_literal] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARinclude_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARdefine_SLASH] = ACTIONS(7294), + [anon_sym_LPAREN] = ACTIONS(7292), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARendif_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifdef_SLASH] = ACTIONS(7294), + [aux_sym_SLASH_POUND_LBRACK_TAB_RBRACK_STARifndef_SLASH] = ACTIONS(7294), + [sym_preproc_directive] = ACTIONS(7294), + [anon_sym_SEMI] = ACTIONS(7292), + [anon_sym_typedef] = ACTIONS(7294), + [anon_sym_extern] = ACTIONS(7294), + [anon_sym_LBRACE] = ACTIONS(7292), + [anon_sym_STAR] = ACTIONS(7292), + [anon_sym_LBRACK] = ACTIONS(7292), + [anon_sym_static] = ACTIONS(7294), + [anon_sym_register] = ACTIONS(7294), + [anon_sym_inline] = ACTIONS(7294), + [anon_sym_const] = ACTIONS(7294), + [anon_sym_restrict] = ACTIONS(7294), + [anon_sym_volatile] = ACTIONS(7294), + [anon_sym__Atomic] = ACTIONS(7294), + [anon_sym_mutable] = ACTIONS(7294), + [anon_sym_explicit] = ACTIONS(7294), + [anon_sym_constexpr] = ACTIONS(7294), + [anon_sym_unsigned] = ACTIONS(7294), + [anon_sym_long] = ACTIONS(7294), + [anon_sym_short] = ACTIONS(7294), + [sym_primitive_type] = ACTIONS(7294), + [anon_sym_enum] = ACTIONS(7294), + [anon_sym_struct] = ACTIONS(7294), + [anon_sym_union] = ACTIONS(7294), + [anon_sym_if] = ACTIONS(7294), + [anon_sym_else] = ACTIONS(7294), + [anon_sym_switch] = ACTIONS(7294), + [anon_sym_case] = ACTIONS(7294), + [anon_sym_default] = ACTIONS(7294), + [anon_sym_while] = ACTIONS(7294), + [anon_sym_do] = ACTIONS(7294), + [anon_sym_for] = ACTIONS(7294), + [anon_sym_return] = ACTIONS(7294), + [anon_sym_break] = ACTIONS(7294), + [anon_sym_continue] = ACTIONS(7294), + [anon_sym_goto] = ACTIONS(7294), + [anon_sym_AMP] = ACTIONS(7292), + [anon_sym_BANG] = ACTIONS(7292), + [anon_sym_TILDE] = ACTIONS(7292), + [anon_sym_PLUS] = ACTIONS(7294), + [anon_sym_DASH] = ACTIONS(7294), + [anon_sym_DASH_DASH] = ACTIONS(7292), + [anon_sym_PLUS_PLUS] = ACTIONS(7292), + [anon_sym_sizeof] = ACTIONS(7294), + [sym_number_literal] = ACTIONS(7292), + [sym_char_literal] = ACTIONS(7292), + [sym_string_literal] = ACTIONS(7292), + [sym_true] = ACTIONS(7294), + [sym_false] = ACTIONS(7294), + [sym_null] = ACTIONS(7294), + [sym_identifier] = ACTIONS(7294), + [sym_comment] = ACTIONS(49), + [anon_sym_class] = ACTIONS(7294), + [sym_auto] = ACTIONS(7294), + [anon_sym_typename] = ACTIONS(7294), + [anon_sym_new] = ACTIONS(7294), + [anon_sym_COLON_COLON] = ACTIONS(7292), + [anon_sym_delete] = ACTIONS(7294), + [sym_nullptr] = ACTIONS(7294), }, }; @@ -131038,24 +134029,24 @@ static TSParseActionEntry ts_parse_actions[] = { [1624] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 2), [1626] = {.count = 1, .reusable = true}, SHIFT(842), [1628] = {.count = 1, .reusable = true}, SHIFT(843), - [1630] = {.count = 1, .reusable = true}, SHIFT(853), - [1632] = {.count = 1, .reusable = true}, SHIFT(844), + [1630] = {.count = 1, .reusable = true}, SHIFT(844), + [1632] = {.count = 1, .reusable = true}, SHIFT(854), [1634] = {.count = 1, .reusable = true}, SHIFT(845), [1636] = {.count = 1, .reusable = true}, SHIFT(846), [1638] = {.count = 1, .reusable = true}, SHIFT(847), - [1640] = {.count = 1, .reusable = false}, SHIFT(848), - [1642] = {.count = 1, .reusable = true}, SHIFT(848), - [1644] = {.count = 1, .reusable = false}, SHIFT(849), - [1646] = {.count = 1, .reusable = true}, SHIFT(850), - [1648] = {.count = 1, .reusable = false}, SHIFT(853), - [1650] = {.count = 1, .reusable = true}, SHIFT(851), - [1652] = {.count = 1, .reusable = false}, SHIFT(852), - [1654] = {.count = 1, .reusable = true}, SHIFT(855), + [1640] = {.count = 1, .reusable = true}, SHIFT(848), + [1642] = {.count = 1, .reusable = false}, SHIFT(849), + [1644] = {.count = 1, .reusable = true}, SHIFT(849), + [1646] = {.count = 1, .reusable = false}, SHIFT(850), + [1648] = {.count = 1, .reusable = true}, SHIFT(851), + [1650] = {.count = 1, .reusable = false}, SHIFT(854), + [1652] = {.count = 1, .reusable = true}, SHIFT(852), + [1654] = {.count = 1, .reusable = false}, SHIFT(853), [1656] = {.count = 1, .reusable = true}, SHIFT(856), - [1658] = {.count = 1, .reusable = true}, SHIFT(872), - [1660] = {.count = 1, .reusable = true}, SHIFT(857), + [1658] = {.count = 1, .reusable = true}, SHIFT(857), + [1660] = {.count = 1, .reusable = true}, SHIFT(873), [1662] = {.count = 1, .reusable = true}, SHIFT(858), - [1664] = {.count = 1, .reusable = false}, SHIFT(859), + [1664] = {.count = 1, .reusable = true}, SHIFT(859), [1666] = {.count = 1, .reusable = false}, SHIFT(860), [1668] = {.count = 1, .reusable = false}, SHIFT(861), [1670] = {.count = 1, .reusable = false}, SHIFT(862), @@ -131066,577 +134057,577 @@ static TSParseActionEntry ts_parse_actions[] = { [1680] = {.count = 1, .reusable = false}, SHIFT(867), [1682] = {.count = 1, .reusable = false}, SHIFT(868), [1684] = {.count = 1, .reusable = false}, SHIFT(869), - [1686] = {.count = 1, .reusable = false}, SHIFT(872), - [1688] = {.count = 1, .reusable = false}, SHIFT(870), - [1690] = {.count = 1, .reusable = true}, SHIFT(874), - [1692] = {.count = 1, .reusable = true}, SHIFT(876), - [1694] = {.count = 1, .reusable = true}, SHIFT(875), - [1696] = {.count = 1, .reusable = false}, SHIFT(876), - [1698] = {.count = 1, .reusable = true}, SHIFT(878), + [1686] = {.count = 1, .reusable = false}, SHIFT(870), + [1688] = {.count = 1, .reusable = false}, SHIFT(873), + [1690] = {.count = 1, .reusable = false}, SHIFT(871), + [1692] = {.count = 1, .reusable = true}, SHIFT(875), + [1694] = {.count = 1, .reusable = true}, SHIFT(877), + [1696] = {.count = 1, .reusable = true}, SHIFT(876), + [1698] = {.count = 1, .reusable = false}, SHIFT(877), [1700] = {.count = 1, .reusable = true}, SHIFT(879), [1702] = {.count = 1, .reusable = true}, SHIFT(880), - [1704] = {.count = 1, .reusable = true}, SHIFT(882), - [1706] = {.count = 1, .reusable = true}, SHIFT(881), - [1708] = {.count = 1, .reusable = false}, SHIFT(882), - [1710] = {.count = 1, .reusable = true}, SHIFT(883), - [1712] = {.count = 1, .reusable = false}, SHIFT(884), - [1714] = {.count = 1, .reusable = true}, SHIFT(885), - [1716] = {.count = 1, .reusable = false}, SHIFT(887), + [1704] = {.count = 1, .reusable = true}, SHIFT(881), + [1706] = {.count = 1, .reusable = true}, SHIFT(883), + [1708] = {.count = 1, .reusable = true}, SHIFT(882), + [1710] = {.count = 1, .reusable = false}, SHIFT(883), + [1712] = {.count = 1, .reusable = true}, SHIFT(884), + [1714] = {.count = 1, .reusable = false}, SHIFT(885), + [1716] = {.count = 1, .reusable = true}, SHIFT(886), [1718] = {.count = 1, .reusable = false}, SHIFT(888), - [1720] = {.count = 1, .reusable = true}, SHIFT(890), - [1722] = {.count = 1, .reusable = true}, SHIFT(889), - [1724] = {.count = 1, .reusable = false}, SHIFT(890), - [1726] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 14), - [1728] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 14), - [1730] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 15), - [1732] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 15), - [1734] = {.count = 1, .reusable = true}, SHIFT(891), + [1720] = {.count = 1, .reusable = false}, SHIFT(889), + [1722] = {.count = 1, .reusable = true}, SHIFT(891), + [1724] = {.count = 1, .reusable = true}, SHIFT(890), + [1726] = {.count = 1, .reusable = false}, SHIFT(891), + [1728] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 14), + [1730] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 14), + [1732] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 15), + [1734] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 1, .alias_sequence_id = 15), [1736] = {.count = 1, .reusable = true}, SHIFT(892), - [1738] = {.count = 1, .reusable = true}, SHIFT(896), + [1738] = {.count = 1, .reusable = true}, SHIFT(893), [1740] = {.count = 1, .reusable = true}, SHIFT(897), - [1742] = {.count = 1, .reusable = false}, SHIFT(898), + [1742] = {.count = 1, .reusable = true}, SHIFT(898), [1744] = {.count = 1, .reusable = false}, SHIFT(899), - [1746] = {.count = 1, .reusable = true}, SHIFT(900), - [1748] = {.count = 1, .reusable = true}, SHIFT(899), - [1750] = {.count = 1, .reusable = false}, SHIFT(901), - [1752] = {.count = 1, .reusable = true}, SHIFT(902), + [1746] = {.count = 1, .reusable = false}, SHIFT(900), + [1748] = {.count = 1, .reusable = true}, SHIFT(901), + [1750] = {.count = 1, .reusable = true}, SHIFT(900), + [1752] = {.count = 1, .reusable = false}, SHIFT(902), [1754] = {.count = 1, .reusable = true}, SHIFT(903), - [1756] = {.count = 1, .reusable = false}, SHIFT(904), + [1756] = {.count = 1, .reusable = true}, SHIFT(904), [1758] = {.count = 1, .reusable = false}, SHIFT(905), - [1760] = {.count = 1, .reusable = true}, SHIFT(906), - [1762] = {.count = 1, .reusable = false}, SHIFT(907), - [1764] = {.count = 1, .reusable = true}, SHIFT(907), - [1766] = {.count = 1, .reusable = false}, SHIFT(908), + [1760] = {.count = 1, .reusable = false}, SHIFT(906), + [1762] = {.count = 1, .reusable = true}, SHIFT(907), + [1764] = {.count = 1, .reusable = false}, SHIFT(908), + [1766] = {.count = 1, .reusable = true}, SHIFT(908), [1768] = {.count = 1, .reusable = false}, SHIFT(909), - [1770] = {.count = 1, .reusable = true}, SHIFT(910), + [1770] = {.count = 1, .reusable = false}, SHIFT(910), [1772] = {.count = 1, .reusable = true}, SHIFT(911), - [1774] = {.count = 1, .reusable = true}, SHIFT(913), - [1776] = {.count = 1, .reusable = false}, SHIFT(915), - [1778] = {.count = 1, .reusable = true}, SHIFT(916), + [1774] = {.count = 1, .reusable = true}, SHIFT(912), + [1776] = {.count = 1, .reusable = true}, SHIFT(914), + [1778] = {.count = 1, .reusable = false}, SHIFT(916), [1780] = {.count = 1, .reusable = true}, SHIFT(917), - [1782] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 2), - [1784] = {.count = 1, .reusable = true}, SHIFT(919), - [1786] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 3), - [1788] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 3), - [1790] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(136), - [1793] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(137), - [1796] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), - [1799] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), - [1801] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), - [1803] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 21), - [1805] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3), - [1807] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3), - [1809] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), - [1811] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), - [1813] = {.count = 1, .reusable = true}, SHIFT(922), + [1782] = {.count = 1, .reusable = true}, SHIFT(918), + [1784] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 2), + [1786] = {.count = 1, .reusable = true}, SHIFT(920), + [1788] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 3), + [1790] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 3), + [1792] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(136), + [1795] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(137), + [1798] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), + [1801] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), + [1803] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), + [1805] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_namespace_identifier, 3, .alias_sequence_id = 21), + [1807] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_identifier, 3), + [1809] = {.count = 1, .reusable = false}, REDUCE(sym_scoped_identifier, 3), + [1811] = {.count = 1, .reusable = true}, REDUCE(sym__declaration_specifiers, 3), + [1813] = {.count = 1, .reusable = false}, REDUCE(sym__declaration_specifiers, 3), [1815] = {.count = 1, .reusable = true}, SHIFT(923), [1817] = {.count = 1, .reusable = true}, SHIFT(924), - [1819] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), - [1821] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 6), - [1823] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 6), - [1825] = {.count = 1, .reusable = true}, SHIFT(926), - [1827] = {.count = 1, .reusable = false}, SHIFT(933), - [1829] = {.count = 1, .reusable = false}, SHIFT(932), - [1831] = {.count = 1, .reusable = false}, SHIFT(927), + [1819] = {.count = 1, .reusable = true}, SHIFT(925), + [1821] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 2), + [1823] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 6), + [1825] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 4, .alias_sequence_id = 6), + [1827] = {.count = 1, .reusable = true}, SHIFT(927), + [1829] = {.count = 1, .reusable = false}, SHIFT(934), + [1831] = {.count = 1, .reusable = false}, SHIFT(933), [1833] = {.count = 1, .reusable = false}, SHIFT(928), [1835] = {.count = 1, .reusable = false}, SHIFT(929), [1837] = {.count = 1, .reusable = false}, SHIFT(930), [1839] = {.count = 1, .reusable = false}, SHIFT(931), - [1841] = {.count = 1, .reusable = true}, SHIFT(934), - [1843] = {.count = 1, .reusable = false}, SHIFT(935), + [1841] = {.count = 1, .reusable = false}, SHIFT(932), + [1843] = {.count = 1, .reusable = true}, SHIFT(935), [1845] = {.count = 1, .reusable = false}, SHIFT(936), - [1847] = {.count = 1, .reusable = false}, SHIFT(938), - [1849] = {.count = 1, .reusable = false}, SHIFT(941), - [1851] = {.count = 1, .reusable = false}, SHIFT(944), - [1853] = {.count = 1, .reusable = true}, SHIFT(947), + [1847] = {.count = 1, .reusable = false}, SHIFT(937), + [1849] = {.count = 1, .reusable = false}, SHIFT(939), + [1851] = {.count = 1, .reusable = false}, SHIFT(942), + [1853] = {.count = 1, .reusable = false}, SHIFT(945), [1855] = {.count = 1, .reusable = true}, SHIFT(948), - [1857] = {.count = 1, .reusable = false}, SHIFT(949), - [1859] = {.count = 1, .reusable = true}, SHIFT(950), + [1857] = {.count = 1, .reusable = true}, SHIFT(949), + [1859] = {.count = 1, .reusable = false}, SHIFT(950), [1861] = {.count = 1, .reusable = true}, SHIFT(951), - [1863] = {.count = 1, .reusable = false}, SHIFT(952), + [1863] = {.count = 1, .reusable = true}, SHIFT(952), [1865] = {.count = 1, .reusable = false}, SHIFT(953), [1867] = {.count = 1, .reusable = false}, SHIFT(954), - [1869] = {.count = 1, .reusable = true}, SHIFT(956), - [1871] = {.count = 1, .reusable = true}, SHIFT(958), - [1873] = {.count = 1, .reusable = true}, SHIFT(960), + [1869] = {.count = 1, .reusable = false}, SHIFT(955), + [1871] = {.count = 1, .reusable = true}, SHIFT(957), + [1873] = {.count = 1, .reusable = true}, SHIFT(959), [1875] = {.count = 1, .reusable = true}, SHIFT(961), - [1877] = {.count = 1, .reusable = false}, SHIFT(963), + [1877] = {.count = 1, .reusable = true}, SHIFT(962), [1879] = {.count = 1, .reusable = false}, SHIFT(964), - [1881] = {.count = 1, .reusable = true}, SHIFT(966), + [1881] = {.count = 1, .reusable = false}, SHIFT(965), [1883] = {.count = 1, .reusable = true}, SHIFT(967), - [1885] = {.count = 1, .reusable = true}, SHIFT(971), - [1887] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 8), - [1889] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 22), - [1891] = {.count = 1, .reusable = false}, SHIFT(978), - [1893] = {.count = 1, .reusable = false}, SHIFT(980), - [1895] = {.count = 1, .reusable = true}, SHIFT(983), + [1885] = {.count = 1, .reusable = true}, SHIFT(968), + [1887] = {.count = 1, .reusable = true}, SHIFT(972), + [1889] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else, 2, .alias_sequence_id = 8), + [1891] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 2, .alias_sequence_id = 22), + [1893] = {.count = 1, .reusable = false}, SHIFT(979), + [1895] = {.count = 1, .reusable = false}, SHIFT(981), [1897] = {.count = 1, .reusable = true}, SHIFT(984), - [1899] = {.count = 1, .reusable = true}, SHIFT(987), - [1901] = {.count = 1, .reusable = true}, SHIFT(990), + [1899] = {.count = 1, .reusable = true}, SHIFT(985), + [1901] = {.count = 1, .reusable = true}, SHIFT(988), [1903] = {.count = 1, .reusable = true}, SHIFT(991), [1905] = {.count = 1, .reusable = true}, SHIFT(992), - [1907] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 23), - [1909] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 23), - [1911] = {.count = 1, .reusable = true}, SHIFT(994), + [1907] = {.count = 1, .reusable = true}, SHIFT(993), + [1909] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 23), + [1911] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 4, .alias_sequence_id = 23), [1913] = {.count = 1, .reusable = true}, SHIFT(995), - [1915] = {.count = 1, .reusable = true}, SHIFT(998), - [1917] = {.count = 1, .reusable = true}, SHIFT(1000), - [1919] = {.count = 1, .reusable = true}, SHIFT(1002), - [1921] = {.count = 1, .reusable = true}, SHIFT(1005), - [1923] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(161), - [1926] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(162), - [1929] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(163), - [1932] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), - [1934] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(165), - [1937] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), - [1940] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(169), - [1943] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), - [1946] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), - [1949] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(172), - [1952] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), - [1955] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(174), - [1958] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 24), - [1960] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 24), - [1962] = {.count = 1, .reusable = true}, SHIFT(1007), - [1964] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 25), - [1966] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 25), - [1968] = {.count = 1, .reusable = true}, SHIFT(1008), - [1970] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 4), - [1972] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 4), - [1974] = {.count = 1, .reusable = true}, SHIFT(1009), + [1915] = {.count = 1, .reusable = true}, SHIFT(996), + [1917] = {.count = 1, .reusable = true}, SHIFT(999), + [1919] = {.count = 1, .reusable = true}, SHIFT(1001), + [1921] = {.count = 1, .reusable = true}, SHIFT(1003), + [1923] = {.count = 1, .reusable = true}, SHIFT(1006), + [1925] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(161), + [1928] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(162), + [1931] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(163), + [1934] = {.count = 1, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), + [1936] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(165), + [1939] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(166), + [1942] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(169), + [1945] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(170), + [1948] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(171), + [1951] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(172), + [1954] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(173), + [1957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(174), + [1960] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 24), + [1962] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 24), + [1964] = {.count = 1, .reusable = true}, SHIFT(1008), + [1966] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 25), + [1968] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 4, .alias_sequence_id = 25), + [1970] = {.count = 1, .reusable = true}, SHIFT(1009), + [1972] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_call, 4), + [1974] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_call, 4), [1976] = {.count = 1, .reusable = true}, SHIFT(1010), - [1978] = {.count = 1, .reusable = true}, SHIFT(1012), - [1980] = {.count = 1, .reusable = true}, SHIFT(1015), - [1982] = {.count = 1, .reusable = true}, SHIFT(1018), - [1984] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), - [1986] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), - [1988] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), - [1990] = {.count = 1, .reusable = true}, SHIFT(1021), - [1992] = {.count = 1, .reusable = true}, SHIFT(1019), - [1994] = {.count = 1, .reusable = false}, SHIFT(1021), - [1996] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), - [1998] = {.count = 1, .reusable = true}, SHIFT(1022), - [2000] = {.count = 1, .reusable = false}, SHIFT(1025), - [2002] = {.count = 1, .reusable = false}, SHIFT(1024), - [2004] = {.count = 1, .reusable = false}, SHIFT(1023), - [2006] = {.count = 1, .reusable = true}, SHIFT(1026), - [2008] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), - [2010] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), - [2012] = {.count = 1, .reusable = true}, SHIFT(1027), - [2014] = {.count = 1, .reusable = false}, SHIFT(1027), - [2016] = {.count = 1, .reusable = true}, SHIFT(1028), - [2018] = {.count = 1, .reusable = true}, SHIFT(1030), - [2020] = {.count = 1, .reusable = true}, SHIFT(1032), + [1978] = {.count = 1, .reusable = true}, SHIFT(1011), + [1980] = {.count = 1, .reusable = true}, SHIFT(1013), + [1982] = {.count = 1, .reusable = true}, SHIFT(1016), + [1984] = {.count = 1, .reusable = true}, SHIFT(1019), + [1986] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_type_declarator, 2), + [1988] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 4), + [1990] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 4), + [1992] = {.count = 1, .reusable = true}, SHIFT(1022), + [1994] = {.count = 1, .reusable = true}, SHIFT(1020), + [1996] = {.count = 1, .reusable = false}, SHIFT(1022), + [1998] = {.count = 1, .reusable = true}, REDUCE(sym_function_type_declarator, 2), + [2000] = {.count = 1, .reusable = true}, SHIFT(1023), + [2002] = {.count = 1, .reusable = false}, SHIFT(1026), + [2004] = {.count = 1, .reusable = false}, SHIFT(1025), + [2006] = {.count = 1, .reusable = false}, SHIFT(1024), + [2008] = {.count = 1, .reusable = true}, SHIFT(1027), + [2010] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 3), + [2012] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 3), + [2014] = {.count = 1, .reusable = true}, SHIFT(1028), + [2016] = {.count = 1, .reusable = false}, SHIFT(1028), + [2018] = {.count = 1, .reusable = true}, SHIFT(1029), + [2020] = {.count = 1, .reusable = true}, SHIFT(1031), [2022] = {.count = 1, .reusable = true}, SHIFT(1033), [2024] = {.count = 1, .reusable = true}, SHIFT(1034), - [2026] = {.count = 1, .reusable = true}, SHIFT(1038), - [2028] = {.count = 1, .reusable = true}, SHIFT(1042), - [2030] = {.count = 1, .reusable = false}, SHIFT(1047), + [2026] = {.count = 1, .reusable = true}, SHIFT(1035), + [2028] = {.count = 1, .reusable = true}, SHIFT(1039), + [2030] = {.count = 1, .reusable = true}, SHIFT(1043), [2032] = {.count = 1, .reusable = false}, SHIFT(1048), - [2034] = {.count = 1, .reusable = true}, REDUCE(sym_access_specifier, 2), - [2036] = {.count = 1, .reusable = false}, REDUCE(sym_access_specifier, 2), - [2038] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 2), - [2040] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 2), - [2042] = {.count = 1, .reusable = true}, SHIFT(1051), - [2044] = {.count = 1, .reusable = true}, SHIFT(1053), + [2034] = {.count = 1, .reusable = false}, SHIFT(1049), + [2036] = {.count = 1, .reusable = true}, REDUCE(sym_access_specifier, 2), + [2038] = {.count = 1, .reusable = false}, REDUCE(sym_access_specifier, 2), + [2040] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 2), + [2042] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 2), + [2044] = {.count = 1, .reusable = true}, SHIFT(1052), [2046] = {.count = 1, .reusable = true}, SHIFT(1054), [2048] = {.count = 1, .reusable = true}, SHIFT(1055), [2050] = {.count = 1, .reusable = true}, SHIFT(1056), - [2052] = {.count = 1, .reusable = true}, SHIFT(1058), - [2054] = {.count = 1, .reusable = false}, SHIFT(1059), - [2056] = {.count = 1, .reusable = true}, SHIFT(1059), + [2052] = {.count = 1, .reusable = true}, SHIFT(1057), + [2054] = {.count = 1, .reusable = true}, SHIFT(1059), + [2056] = {.count = 1, .reusable = false}, SHIFT(1060), [2058] = {.count = 1, .reusable = true}, SHIFT(1060), - [2060] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), - [2062] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), - [2064] = {.count = 1, .reusable = true}, SHIFT(1062), + [2060] = {.count = 1, .reusable = true}, SHIFT(1061), + [2062] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 2), + [2064] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 2), [2066] = {.count = 1, .reusable = true}, SHIFT(1063), - [2068] = {.count = 1, .reusable = false}, SHIFT(1063), - [2070] = {.count = 1, .reusable = true}, SHIFT(1064), - [2072] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 26), - [2074] = {.count = 1, .reusable = false}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 26), - [2076] = {.count = 1, .reusable = true}, SHIFT(1065), - [2078] = {.count = 1, .reusable = false}, SHIFT(1067), - [2080] = {.count = 1, .reusable = true}, SHIFT(1068), + [2068] = {.count = 1, .reusable = true}, SHIFT(1064), + [2070] = {.count = 1, .reusable = false}, SHIFT(1064), + [2072] = {.count = 1, .reusable = true}, SHIFT(1065), + [2074] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 26), + [2076] = {.count = 1, .reusable = false}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 26), + [2078] = {.count = 1, .reusable = true}, SHIFT(1066), + [2080] = {.count = 1, .reusable = false}, SHIFT(1068), [2082] = {.count = 1, .reusable = true}, SHIFT(1069), [2084] = {.count = 1, .reusable = true}, SHIFT(1070), [2086] = {.count = 1, .reusable = true}, SHIFT(1071), - [2088] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), - [2090] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 12), - [2092] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), - [2094] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 27), - [2096] = {.count = 1, .reusable = true}, SHIFT(1075), + [2088] = {.count = 1, .reusable = true}, SHIFT(1072), + [2090] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 11), + [2092] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 12), + [2094] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 13), + [2096] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 1, .alias_sequence_id = 27), [2098] = {.count = 1, .reusable = true}, SHIFT(1076), - [2100] = {.count = 1, .reusable = true}, SHIFT(1078), + [2100] = {.count = 1, .reusable = true}, SHIFT(1077), [2102] = {.count = 1, .reusable = true}, SHIFT(1079), - [2104] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 2), - [2106] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 2), - [2108] = {.count = 1, .reusable = true}, SHIFT(1080), - [2110] = {.count = 1, .reusable = false}, SHIFT(1084), - [2112] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), - [2114] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), - [2116] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4), - [2119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(231), - [2122] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(232), - [2125] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(233), - [2128] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(234), - [2131] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), - [2134] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), - [2136] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), - [2139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), - [2142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(258), - [2145] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(251), - [2148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), - [2151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(236), - [2154] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(237), - [2157] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), - [2160] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), - [2163] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(18), - [2166] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(238), - [2169] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(239), - [2172] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(240), - [2175] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(241), - [2178] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(242), - [2181] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(243), - [2184] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(244), - [2187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(245), - [2190] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(249), - [2193] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(566), - [2196] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3), - [2198] = {.count = 1, .reusable = false}, SHIFT(1088), - [2200] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4), - [2202] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4), - [2204] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4), - [2206] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4), - [2208] = {.count = 1, .reusable = true}, SHIFT(1093), - [2210] = {.count = 1, .reusable = true}, SHIFT(1092), - [2212] = {.count = 1, .reusable = false}, SHIFT(1093), - [2214] = {.count = 1, .reusable = true}, SHIFT(1094), + [2104] = {.count = 1, .reusable = true}, SHIFT(1080), + [2106] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_declaration, 2), + [2108] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_declaration, 2), + [2110] = {.count = 1, .reusable = true}, SHIFT(1081), + [2112] = {.count = 1, .reusable = false}, SHIFT(1085), + [2114] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration_list, 3), + [2116] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration_list, 3), + [2118] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(4), + [2121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(231), + [2124] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(232), + [2127] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(233), + [2130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(234), + [2133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(12), + [2136] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), + [2138] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(11), + [2141] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(13), + [2144] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(258), + [2147] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(251), + [2150] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(14), + [2153] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(236), + [2156] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(237), + [2159] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), + [2162] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(17), + [2165] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(18), + [2168] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(238), + [2171] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(239), + [2174] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(240), + [2177] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(241), + [2180] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(242), + [2183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(243), + [2186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(244), + [2189] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(245), + [2192] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_field_declaration_list_repeat1, 2), SHIFT_REPEAT(249), + [2195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(566), + [2198] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 3), + [2200] = {.count = 1, .reusable = false}, SHIFT(1089), + [2202] = {.count = 1, .reusable = true}, REDUCE(sym_struct_specifier, 4), + [2204] = {.count = 1, .reusable = false}, REDUCE(sym_struct_specifier, 4), + [2206] = {.count = 1, .reusable = true}, REDUCE(sym_union_specifier, 4), + [2208] = {.count = 1, .reusable = false}, REDUCE(sym_union_specifier, 4), + [2210] = {.count = 1, .reusable = true}, SHIFT(1094), + [2212] = {.count = 1, .reusable = true}, SHIFT(1093), + [2214] = {.count = 1, .reusable = false}, SHIFT(1094), [2216] = {.count = 1, .reusable = true}, SHIFT(1095), - [2218] = {.count = 1, .reusable = false}, SHIFT(1097), + [2218] = {.count = 1, .reusable = true}, SHIFT(1096), [2220] = {.count = 1, .reusable = false}, SHIFT(1098), - [2222] = {.count = 1, .reusable = true}, SHIFT(1100), - [2224] = {.count = 1, .reusable = true}, SHIFT(1099), - [2226] = {.count = 1, .reusable = false}, SHIFT(1100), - [2228] = {.count = 1, .reusable = true}, SHIFT(1101), + [2222] = {.count = 1, .reusable = false}, SHIFT(1099), + [2224] = {.count = 1, .reusable = true}, SHIFT(1101), + [2226] = {.count = 1, .reusable = true}, SHIFT(1100), + [2228] = {.count = 1, .reusable = false}, SHIFT(1101), [2230] = {.count = 1, .reusable = true}, SHIFT(1102), - [2232] = {.count = 1, .reusable = false}, SHIFT(1103), + [2232] = {.count = 1, .reusable = true}, SHIFT(1103), [2234] = {.count = 1, .reusable = false}, SHIFT(1104), - [2236] = {.count = 1, .reusable = true}, SHIFT(1105), - [2238] = {.count = 1, .reusable = true}, SHIFT(1104), - [2240] = {.count = 1, .reusable = false}, SHIFT(1106), - [2242] = {.count = 1, .reusable = true}, SHIFT(1107), + [2236] = {.count = 1, .reusable = false}, SHIFT(1105), + [2238] = {.count = 1, .reusable = true}, SHIFT(1106), + [2240] = {.count = 1, .reusable = true}, SHIFT(1105), + [2242] = {.count = 1, .reusable = false}, SHIFT(1107), [2244] = {.count = 1, .reusable = true}, SHIFT(1108), - [2246] = {.count = 1, .reusable = false}, SHIFT(1109), + [2246] = {.count = 1, .reusable = true}, SHIFT(1109), [2248] = {.count = 1, .reusable = false}, SHIFT(1110), - [2250] = {.count = 1, .reusable = true}, SHIFT(1111), - [2252] = {.count = 1, .reusable = false}, SHIFT(1112), - [2254] = {.count = 1, .reusable = true}, SHIFT(1112), - [2256] = {.count = 1, .reusable = false}, SHIFT(1113), + [2250] = {.count = 1, .reusable = false}, SHIFT(1111), + [2252] = {.count = 1, .reusable = true}, SHIFT(1112), + [2254] = {.count = 1, .reusable = false}, SHIFT(1113), + [2256] = {.count = 1, .reusable = true}, SHIFT(1113), [2258] = {.count = 1, .reusable = false}, SHIFT(1114), - [2260] = {.count = 1, .reusable = true}, SHIFT(1115), + [2260] = {.count = 1, .reusable = false}, SHIFT(1115), [2262] = {.count = 1, .reusable = true}, SHIFT(1116), - [2264] = {.count = 1, .reusable = false}, SHIFT(1117), - [2266] = {.count = 1, .reusable = true}, SHIFT(1117), - [2268] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), - [2270] = {.count = 1, .reusable = true}, SHIFT(1123), - [2272] = {.count = 1, .reusable = true}, SHIFT(1121), - [2274] = {.count = 1, .reusable = false}, SHIFT(1123), - [2276] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 1), - [2278] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), - [2280] = {.count = 1, .reusable = true}, SHIFT(1125), - [2282] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), - [2284] = {.count = 1, .reusable = true}, SHIFT(1127), - [2286] = {.count = 1, .reusable = true}, SHIFT(1129), - [2288] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3), - [2290] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3), - [2292] = {.count = 1, .reusable = true}, SHIFT(1131), - [2294] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(603), - [2297] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4), - [2299] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4), - [2301] = {.count = 1, .reusable = true}, REDUCE(sym_type_parameter_declaration, 2, .alias_sequence_id = 4), - [2303] = {.count = 1, .reusable = true}, SHIFT(1134), + [2264] = {.count = 1, .reusable = true}, SHIFT(1117), + [2266] = {.count = 1, .reusable = false}, SHIFT(1118), + [2268] = {.count = 1, .reusable = true}, SHIFT(1118), + [2270] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 1), + [2272] = {.count = 1, .reusable = true}, SHIFT(1124), + [2274] = {.count = 1, .reusable = true}, SHIFT(1122), + [2276] = {.count = 1, .reusable = false}, SHIFT(1124), + [2278] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 1), + [2280] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 2), + [2282] = {.count = 1, .reusable = true}, SHIFT(1126), + [2284] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 1), + [2286] = {.count = 1, .reusable = true}, SHIFT(1128), + [2288] = {.count = 1, .reusable = true}, SHIFT(1130), + [2290] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 3), + [2292] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 3), + [2294] = {.count = 1, .reusable = true}, SHIFT(1132), + [2296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(603), + [2299] = {.count = 1, .reusable = true}, REDUCE(sym_class_specifier, 4), + [2301] = {.count = 1, .reusable = false}, REDUCE(sym_class_specifier, 4), + [2303] = {.count = 1, .reusable = true}, REDUCE(sym_type_parameter_declaration, 2, .alias_sequence_id = 4), [2305] = {.count = 1, .reusable = true}, SHIFT(1135), - [2307] = {.count = 1, .reusable = false}, SHIFT(1136), - [2309] = {.count = 1, .reusable = true}, SHIFT(1136), + [2307] = {.count = 1, .reusable = true}, SHIFT(1136), + [2309] = {.count = 1, .reusable = false}, SHIFT(1137), [2311] = {.count = 1, .reusable = true}, SHIFT(1137), [2313] = {.count = 1, .reusable = true}, SHIFT(1138), [2315] = {.count = 1, .reusable = true}, SHIFT(1139), [2317] = {.count = 1, .reusable = true}, SHIFT(1140), [2319] = {.count = 1, .reusable = true}, SHIFT(1141), - [2321] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), - [2323] = {.count = 1, .reusable = true}, SHIFT(1142), + [2321] = {.count = 1, .reusable = true}, SHIFT(1142), + [2323] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_declaration, 2), [2325] = {.count = 1, .reusable = true}, SHIFT(1143), - [2327] = {.count = 1, .reusable = true}, SHIFT(1145), - [2329] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 3), - [2331] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 3), - [2333] = {.count = 1, .reusable = true}, SHIFT(1149), - [2335] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(622), - [2338] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 4), - [2340] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 4), - [2342] = {.count = 1, .reusable = false}, SHIFT(1154), - [2344] = {.count = 1, .reusable = false}, SHIFT(1153), - [2346] = {.count = 1, .reusable = false}, SHIFT(1152), - [2348] = {.count = 1, .reusable = true}, SHIFT(1155), - [2350] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(630), - [2353] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), - [2355] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), - [2357] = {.count = 1, .reusable = true}, SHIFT(1158), - [2359] = {.count = 1, .reusable = false}, SHIFT(1159), - [2361] = {.count = 1, .reusable = true}, SHIFT(1159), - [2363] = {.count = 1, .reusable = true}, SHIFT(1162), - [2365] = {.count = 1, .reusable = false}, SHIFT(1163), + [2327] = {.count = 1, .reusable = true}, SHIFT(1144), + [2329] = {.count = 1, .reusable = true}, SHIFT(1146), + [2331] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 3), + [2333] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 3), + [2335] = {.count = 1, .reusable = true}, SHIFT(1150), + [2337] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(622), + [2340] = {.count = 1, .reusable = true}, REDUCE(sym_template_instantiation, 4), + [2342] = {.count = 1, .reusable = false}, REDUCE(sym_template_instantiation, 4), + [2344] = {.count = 1, .reusable = false}, SHIFT(1155), + [2346] = {.count = 1, .reusable = false}, SHIFT(1154), + [2348] = {.count = 1, .reusable = false}, SHIFT(1153), + [2350] = {.count = 1, .reusable = true}, SHIFT(1156), + [2352] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(630), + [2355] = {.count = 1, .reusable = true}, REDUCE(sym_declaration_list, 3), + [2357] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_list, 3), + [2359] = {.count = 1, .reusable = true}, SHIFT(1159), + [2361] = {.count = 1, .reusable = false}, SHIFT(1160), + [2363] = {.count = 1, .reusable = true}, SHIFT(1160), + [2365] = {.count = 1, .reusable = true}, SHIFT(1163), [2367] = {.count = 1, .reusable = false}, SHIFT(1164), - [2369] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 4), - [2371] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 4), - [2373] = {.count = 1, .reusable = true}, SHIFT(1165), - [2375] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 3), - [2377] = {.count = 1, .reusable = true}, SHIFT(1166), - [2379] = {.count = 2, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2382] = {.count = 1, .reusable = true}, SHIFT(1168), - [2384] = {.count = 1, .reusable = false}, SHIFT(1170), - [2386] = {.count = 1, .reusable = true}, SHIFT(1171), + [2369] = {.count = 1, .reusable = false}, SHIFT(1165), + [2371] = {.count = 1, .reusable = true}, REDUCE(sym_using_declaration, 4), + [2373] = {.count = 1, .reusable = false}, REDUCE(sym_using_declaration, 4), + [2375] = {.count = 1, .reusable = true}, SHIFT(1166), + [2377] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 3), + [2379] = {.count = 1, .reusable = true}, SHIFT(1167), + [2381] = {.count = 2, .reusable = true}, REDUCE(sym_parameter_list, 2, .dynamic_precedence = 1), REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2384] = {.count = 1, .reusable = true}, SHIFT(1169), + [2386] = {.count = 1, .reusable = false}, SHIFT(1171), [2388] = {.count = 1, .reusable = true}, SHIFT(1172), - [2390] = {.count = 1, .reusable = true}, SHIFT(1174), - [2392] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), - [2394] = {.count = 1, .reusable = true}, SHIFT(1176), + [2390] = {.count = 1, .reusable = true}, SHIFT(1173), + [2392] = {.count = 1, .reusable = true}, SHIFT(1175), + [2394] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), [2396] = {.count = 1, .reusable = true}, SHIFT(1177), - [2398] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), - [2400] = {.count = 1, .reusable = true}, SHIFT(1178), + [2398] = {.count = 1, .reusable = true}, SHIFT(1178), + [2400] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 2), [2402] = {.count = 1, .reusable = true}, SHIFT(1179), - [2404] = {.count = 1, .reusable = false}, SHIFT(1179), - [2406] = {.count = 1, .reusable = true}, SHIFT(1181), - [2408] = {.count = 1, .reusable = true}, SHIFT(1180), - [2410] = {.count = 1, .reusable = false}, SHIFT(1181), - [2412] = {.count = 1, .reusable = true}, SHIFT(1182), + [2404] = {.count = 1, .reusable = true}, SHIFT(1180), + [2406] = {.count = 1, .reusable = false}, SHIFT(1180), + [2408] = {.count = 1, .reusable = true}, SHIFT(1182), + [2410] = {.count = 1, .reusable = true}, SHIFT(1181), + [2412] = {.count = 1, .reusable = false}, SHIFT(1182), [2414] = {.count = 1, .reusable = true}, SHIFT(1183), - [2416] = {.count = 1, .reusable = false}, SHIFT(1184), - [2418] = {.count = 1, .reusable = true}, SHIFT(1186), - [2420] = {.count = 1, .reusable = true}, SHIFT(1185), - [2422] = {.count = 1, .reusable = false}, SHIFT(1186), - [2424] = {.count = 1, .reusable = true}, SHIFT(1187), - [2426] = {.count = 1, .reusable = false}, SHIFT(1188), + [2416] = {.count = 1, .reusable = true}, SHIFT(1184), + [2418] = {.count = 1, .reusable = false}, SHIFT(1185), + [2420] = {.count = 1, .reusable = true}, SHIFT(1187), + [2422] = {.count = 1, .reusable = true}, SHIFT(1186), + [2424] = {.count = 1, .reusable = false}, SHIFT(1187), + [2426] = {.count = 1, .reusable = true}, SHIFT(1188), [2428] = {.count = 1, .reusable = false}, SHIFT(1189), - [2430] = {.count = 1, .reusable = true}, SHIFT(1190), - [2432] = {.count = 1, .reusable = true}, SHIFT(1189), - [2434] = {.count = 1, .reusable = false}, SHIFT(1191), - [2436] = {.count = 1, .reusable = true}, SHIFT(1192), + [2430] = {.count = 1, .reusable = false}, SHIFT(1190), + [2432] = {.count = 1, .reusable = true}, SHIFT(1191), + [2434] = {.count = 1, .reusable = true}, SHIFT(1190), + [2436] = {.count = 1, .reusable = false}, SHIFT(1192), [2438] = {.count = 1, .reusable = true}, SHIFT(1193), - [2440] = {.count = 1, .reusable = false}, SHIFT(1194), + [2440] = {.count = 1, .reusable = true}, SHIFT(1194), [2442] = {.count = 1, .reusable = false}, SHIFT(1195), - [2444] = {.count = 1, .reusable = true}, SHIFT(1196), - [2446] = {.count = 1, .reusable = false}, SHIFT(1197), - [2448] = {.count = 1, .reusable = true}, SHIFT(1197), - [2450] = {.count = 1, .reusable = false}, SHIFT(1198), + [2444] = {.count = 1, .reusable = false}, SHIFT(1196), + [2446] = {.count = 1, .reusable = true}, SHIFT(1197), + [2448] = {.count = 1, .reusable = false}, SHIFT(1198), + [2450] = {.count = 1, .reusable = true}, SHIFT(1198), [2452] = {.count = 1, .reusable = false}, SHIFT(1199), - [2454] = {.count = 1, .reusable = true}, SHIFT(1201), + [2454] = {.count = 1, .reusable = false}, SHIFT(1200), [2456] = {.count = 1, .reusable = true}, SHIFT(1202), [2458] = {.count = 1, .reusable = true}, SHIFT(1203), - [2460] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), - [2462] = {.count = 1, .reusable = false}, SHIFT(1210), - [2464] = {.count = 1, .reusable = false}, SHIFT(1209), - [2466] = {.count = 1, .reusable = false}, SHIFT(1205), + [2460] = {.count = 1, .reusable = true}, SHIFT(1204), + [2462] = {.count = 1, .reusable = true}, REDUCE(sym_init_declarator, 3), + [2464] = {.count = 1, .reusable = false}, SHIFT(1211), + [2466] = {.count = 1, .reusable = false}, SHIFT(1210), [2468] = {.count = 1, .reusable = false}, SHIFT(1206), [2470] = {.count = 1, .reusable = false}, SHIFT(1207), [2472] = {.count = 1, .reusable = false}, SHIFT(1208), - [2474] = {.count = 1, .reusable = true}, SHIFT(1211), - [2476] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), - [2478] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), - [2480] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(327), - [2483] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2485] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), - [2487] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), - [2489] = {.count = 1, .reusable = true}, SHIFT(1214), - [2491] = {.count = 1, .reusable = true}, SHIFT(1213), - [2493] = {.count = 1, .reusable = false}, SHIFT(1214), - [2495] = {.count = 1, .reusable = true}, SHIFT(1215), - [2497] = {.count = 1, .reusable = false}, SHIFT(1216), - [2499] = {.count = 1, .reusable = true}, SHIFT(1218), - [2501] = {.count = 1, .reusable = true}, SHIFT(1217), - [2503] = {.count = 1, .reusable = false}, SHIFT(1218), + [2474] = {.count = 1, .reusable = false}, SHIFT(1209), + [2476] = {.count = 1, .reusable = true}, SHIFT(1212), + [2478] = {.count = 1, .reusable = true}, REDUCE(sym_declaration, 4), + [2480] = {.count = 1, .reusable = false}, REDUCE(sym_declaration, 4), + [2482] = {.count = 2, .reusable = true}, REDUCE(aux_sym_declaration_repeat1, 2), SHIFT_REPEAT(327), + [2485] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2487] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 2, .dynamic_precedence = 1), + [2489] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 2), + [2491] = {.count = 1, .reusable = true}, SHIFT(1215), + [2493] = {.count = 1, .reusable = true}, SHIFT(1214), + [2495] = {.count = 1, .reusable = false}, SHIFT(1215), + [2497] = {.count = 1, .reusable = true}, SHIFT(1216), + [2499] = {.count = 1, .reusable = false}, SHIFT(1217), + [2501] = {.count = 1, .reusable = true}, SHIFT(1219), + [2503] = {.count = 1, .reusable = true}, SHIFT(1218), [2505] = {.count = 1, .reusable = false}, SHIFT(1219), [2507] = {.count = 1, .reusable = false}, SHIFT(1220), - [2509] = {.count = 1, .reusable = true}, SHIFT(1221), - [2511] = {.count = 1, .reusable = true}, SHIFT(1220), - [2513] = {.count = 1, .reusable = false}, SHIFT(1222), - [2515] = {.count = 1, .reusable = true}, SHIFT(1223), + [2509] = {.count = 1, .reusable = false}, SHIFT(1221), + [2511] = {.count = 1, .reusable = true}, SHIFT(1222), + [2513] = {.count = 1, .reusable = true}, SHIFT(1221), + [2515] = {.count = 1, .reusable = false}, SHIFT(1223), [2517] = {.count = 1, .reusable = true}, SHIFT(1224), - [2519] = {.count = 1, .reusable = false}, SHIFT(1225), + [2519] = {.count = 1, .reusable = true}, SHIFT(1225), [2521] = {.count = 1, .reusable = false}, SHIFT(1226), - [2523] = {.count = 1, .reusable = true}, SHIFT(1227), - [2525] = {.count = 1, .reusable = false}, SHIFT(1228), - [2527] = {.count = 1, .reusable = true}, SHIFT(1228), - [2529] = {.count = 1, .reusable = false}, SHIFT(1229), + [2523] = {.count = 1, .reusable = false}, SHIFT(1227), + [2525] = {.count = 1, .reusable = true}, SHIFT(1228), + [2527] = {.count = 1, .reusable = false}, SHIFT(1229), + [2529] = {.count = 1, .reusable = true}, SHIFT(1229), [2531] = {.count = 1, .reusable = false}, SHIFT(1230), - [2533] = {.count = 1, .reusable = true}, SHIFT(1233), - [2535] = {.count = 1, .reusable = true}, SHIFT(1232), - [2537] = {.count = 1, .reusable = false}, SHIFT(1233), - [2539] = {.count = 1, .reusable = true}, SHIFT(1234), - [2541] = {.count = 1, .reusable = false}, SHIFT(1235), - [2543] = {.count = 1, .reusable = true}, SHIFT(1237), - [2545] = {.count = 1, .reusable = true}, SHIFT(1236), - [2547] = {.count = 1, .reusable = false}, SHIFT(1237), - [2549] = {.count = 1, .reusable = true}, SHIFT(1238), - [2551] = {.count = 1, .reusable = false}, SHIFT(1239), + [2533] = {.count = 1, .reusable = false}, SHIFT(1231), + [2535] = {.count = 1, .reusable = true}, SHIFT(1234), + [2537] = {.count = 1, .reusable = true}, SHIFT(1233), + [2539] = {.count = 1, .reusable = false}, SHIFT(1234), + [2541] = {.count = 1, .reusable = true}, SHIFT(1235), + [2543] = {.count = 1, .reusable = false}, SHIFT(1236), + [2545] = {.count = 1, .reusable = true}, SHIFT(1238), + [2547] = {.count = 1, .reusable = true}, SHIFT(1237), + [2549] = {.count = 1, .reusable = false}, SHIFT(1238), + [2551] = {.count = 1, .reusable = true}, SHIFT(1239), [2553] = {.count = 1, .reusable = false}, SHIFT(1240), - [2555] = {.count = 1, .reusable = true}, SHIFT(1241), - [2557] = {.count = 1, .reusable = true}, SHIFT(1240), - [2559] = {.count = 1, .reusable = false}, SHIFT(1242), - [2561] = {.count = 1, .reusable = true}, SHIFT(1243), + [2555] = {.count = 1, .reusable = false}, SHIFT(1241), + [2557] = {.count = 1, .reusable = true}, SHIFT(1242), + [2559] = {.count = 1, .reusable = true}, SHIFT(1241), + [2561] = {.count = 1, .reusable = false}, SHIFT(1243), [2563] = {.count = 1, .reusable = true}, SHIFT(1244), - [2565] = {.count = 1, .reusable = false}, SHIFT(1245), + [2565] = {.count = 1, .reusable = true}, SHIFT(1245), [2567] = {.count = 1, .reusable = false}, SHIFT(1246), - [2569] = {.count = 1, .reusable = true}, SHIFT(1247), - [2571] = {.count = 1, .reusable = false}, SHIFT(1248), - [2573] = {.count = 1, .reusable = true}, SHIFT(1248), - [2575] = {.count = 1, .reusable = false}, SHIFT(1249), + [2569] = {.count = 1, .reusable = false}, SHIFT(1247), + [2571] = {.count = 1, .reusable = true}, SHIFT(1248), + [2573] = {.count = 1, .reusable = false}, SHIFT(1249), + [2575] = {.count = 1, .reusable = true}, SHIFT(1249), [2577] = {.count = 1, .reusable = false}, SHIFT(1250), - [2579] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 4, .alias_sequence_id = 28), - [2581] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 4, .alias_sequence_id = 28), - [2583] = {.count = 1, .reusable = true}, SHIFT(1251), - [2585] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 4), - [2587] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 4), - [2589] = {.count = 1, .reusable = true}, SHIFT(1252), - [2591] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), - [2593] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), - [2595] = {.count = 1, .reusable = true}, SHIFT(1253), - [2597] = {.count = 1, .reusable = true}, SHIFT(1255), - [2599] = {.count = 1, .reusable = true}, SHIFT(1257), - [2601] = {.count = 1, .reusable = true}, SHIFT(1259), - [2603] = {.count = 1, .reusable = true}, SHIFT(1262), + [2579] = {.count = 1, .reusable = false}, SHIFT(1251), + [2581] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 4, .alias_sequence_id = 28), + [2583] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 4, .alias_sequence_id = 28), + [2585] = {.count = 1, .reusable = true}, SHIFT(1252), + [2587] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 4), + [2589] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 4), + [2591] = {.count = 1, .reusable = true}, SHIFT(1253), + [2593] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), + [2595] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 3, .dynamic_precedence = 1), + [2597] = {.count = 1, .reusable = true}, SHIFT(1254), + [2599] = {.count = 1, .reusable = true}, SHIFT(1256), + [2601] = {.count = 1, .reusable = true}, SHIFT(1258), + [2603] = {.count = 1, .reusable = true}, SHIFT(1260), [2605] = {.count = 1, .reusable = true}, SHIFT(1263), - [2607] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(716), - [2610] = {.count = 1, .reusable = true}, SHIFT(1267), + [2607] = {.count = 1, .reusable = true}, SHIFT(1264), + [2609] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(716), [2612] = {.count = 1, .reusable = true}, SHIFT(1268), - [2614] = {.count = 1, .reusable = false}, SHIFT(1269), + [2614] = {.count = 1, .reusable = true}, SHIFT(1269), [2616] = {.count = 1, .reusable = false}, SHIFT(1270), - [2618] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), - [2620] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), - [2622] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 2), - [2624] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 2), - [2626] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_default_capture, 1), - [2628] = {.count = 1, .reusable = true}, SHIFT(1273), - [2630] = {.count = 1, .reusable = true}, SHIFT(1272), - [2632] = {.count = 1, .reusable = false}, SHIFT(1273), - [2634] = {.count = 1, .reusable = true}, SHIFT(1274), - [2636] = {.count = 1, .reusable = false}, SHIFT(1275), - [2638] = {.count = 1, .reusable = true}, SHIFT(1277), - [2640] = {.count = 1, .reusable = true}, SHIFT(1276), - [2642] = {.count = 1, .reusable = false}, SHIFT(1277), - [2644] = {.count = 1, .reusable = true}, SHIFT(1278), - [2646] = {.count = 1, .reusable = false}, SHIFT(1279), - [2648] = {.count = 1, .reusable = true}, SHIFT(1280), - [2650] = {.count = 1, .reusable = false}, SHIFT(1281), - [2652] = {.count = 1, .reusable = true}, SHIFT(1282), - [2654] = {.count = 1, .reusable = true}, SHIFT(1281), - [2656] = {.count = 1, .reusable = false}, SHIFT(1283), - [2658] = {.count = 1, .reusable = true}, SHIFT(1284), + [2618] = {.count = 1, .reusable = false}, SHIFT(1271), + [2620] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_expression, 2), + [2622] = {.count = 1, .reusable = false}, REDUCE(sym_pointer_expression, 2), + [2624] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 2), + [2626] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 2), + [2628] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_default_capture, 1), + [2630] = {.count = 1, .reusable = true}, SHIFT(1274), + [2632] = {.count = 1, .reusable = true}, SHIFT(1273), + [2634] = {.count = 1, .reusable = false}, SHIFT(1274), + [2636] = {.count = 1, .reusable = true}, SHIFT(1275), + [2638] = {.count = 1, .reusable = false}, SHIFT(1276), + [2640] = {.count = 1, .reusable = true}, SHIFT(1278), + [2642] = {.count = 1, .reusable = true}, SHIFT(1277), + [2644] = {.count = 1, .reusable = false}, SHIFT(1278), + [2646] = {.count = 1, .reusable = true}, SHIFT(1279), + [2648] = {.count = 1, .reusable = false}, SHIFT(1280), + [2650] = {.count = 1, .reusable = true}, SHIFT(1281), + [2652] = {.count = 1, .reusable = false}, SHIFT(1282), + [2654] = {.count = 1, .reusable = true}, SHIFT(1283), + [2656] = {.count = 1, .reusable = true}, SHIFT(1282), + [2658] = {.count = 1, .reusable = false}, SHIFT(1284), [2660] = {.count = 1, .reusable = true}, SHIFT(1285), - [2662] = {.count = 1, .reusable = false}, SHIFT(1286), + [2662] = {.count = 1, .reusable = true}, SHIFT(1286), [2664] = {.count = 1, .reusable = false}, SHIFT(1287), - [2666] = {.count = 1, .reusable = true}, SHIFT(1288), - [2668] = {.count = 1, .reusable = false}, SHIFT(1289), - [2670] = {.count = 1, .reusable = true}, SHIFT(1289), - [2672] = {.count = 1, .reusable = false}, SHIFT(1290), + [2666] = {.count = 1, .reusable = false}, SHIFT(1288), + [2668] = {.count = 1, .reusable = true}, SHIFT(1289), + [2670] = {.count = 1, .reusable = false}, SHIFT(1290), + [2672] = {.count = 1, .reusable = true}, SHIFT(1290), [2674] = {.count = 1, .reusable = false}, SHIFT(1291), - [2676] = {.count = 1, .reusable = true}, SHIFT(1293), + [2676] = {.count = 1, .reusable = false}, SHIFT(1292), [2678] = {.count = 1, .reusable = true}, SHIFT(1294), - [2680] = {.count = 1, .reusable = true}, SHIFT(1297), - [2682] = {.count = 1, .reusable = true}, SHIFT(1299), - [2684] = {.count = 1, .reusable = true}, SHIFT(1301), - [2686] = {.count = 1, .reusable = true}, SHIFT(1304), - [2688] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), - [2690] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), - [2692] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), - [2694] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), - [2696] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), - [2698] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), - [2700] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), - [2702] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), - [2704] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), - [2706] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), - [2708] = {.count = 1, .reusable = true}, SHIFT(1308), + [2680] = {.count = 1, .reusable = true}, SHIFT(1295), + [2682] = {.count = 1, .reusable = true}, SHIFT(1298), + [2684] = {.count = 1, .reusable = true}, SHIFT(1300), + [2686] = {.count = 1, .reusable = true}, SHIFT(1302), + [2688] = {.count = 1, .reusable = true}, SHIFT(1305), + [2690] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 2), + [2692] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 2), + [2694] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 2), + [2696] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 2), + [2698] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 2), + [2700] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 2), + [2702] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 2), + [2704] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 2), + [2706] = {.count = 1, .reusable = true}, REDUCE(sym_concatenated_string, 2), + [2708] = {.count = 1, .reusable = false}, REDUCE(sym_concatenated_string, 2), [2710] = {.count = 1, .reusable = true}, SHIFT(1309), - [2712] = {.count = 1, .reusable = false}, SHIFT(1311), - [2714] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), - [2716] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), - [2718] = {.count = 2, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), - [2721] = {.count = 1, .reusable = true}, SHIFT(1314), - [2723] = {.count = 1, .reusable = true}, SHIFT(1317), - [2725] = {.count = 1, .reusable = true}, SHIFT(1321), - [2727] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 4), - [2730] = {.count = 1, .reusable = true}, SHIFT(1323), - [2732] = {.count = 1, .reusable = true}, SHIFT(1322), - [2734] = {.count = 1, .reusable = false}, SHIFT(1323), - [2736] = {.count = 1, .reusable = true}, SHIFT(1324), - [2738] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 2), - [2740] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 2), - [2742] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), - [2744] = {.count = 1, .reusable = true}, SHIFT(1325), - [2746] = {.count = 1, .reusable = true}, SHIFT(1327), - [2748] = {.count = 1, .reusable = false}, SHIFT(1327), - [2750] = {.count = 1, .reusable = true}, SHIFT(1328), - [2752] = {.count = 1, .reusable = false}, SHIFT(1328), - [2754] = {.count = 1, .reusable = true}, SHIFT(1329), - [2756] = {.count = 1, .reusable = false}, SHIFT(1329), - [2758] = {.count = 1, .reusable = true}, SHIFT(1330), - [2760] = {.count = 1, .reusable = false}, SHIFT(1330), - [2762] = {.count = 1, .reusable = true}, SHIFT(1331), - [2764] = {.count = 1, .reusable = false}, SHIFT(1331), - [2766] = {.count = 1, .reusable = true}, SHIFT(1332), - [2768] = {.count = 1, .reusable = false}, SHIFT(1332), - [2770] = {.count = 1, .reusable = true}, SHIFT(1333), - [2772] = {.count = 1, .reusable = false}, SHIFT(1333), - [2774] = {.count = 1, .reusable = true}, SHIFT(1334), - [2776] = {.count = 1, .reusable = false}, SHIFT(1334), - [2778] = {.count = 1, .reusable = true}, SHIFT(1335), - [2780] = {.count = 1, .reusable = false}, SHIFT(1335), - [2782] = {.count = 1, .reusable = true}, SHIFT(1336), - [2784] = {.count = 1, .reusable = false}, SHIFT(1336), - [2786] = {.count = 1, .reusable = true}, SHIFT(1337), - [2788] = {.count = 1, .reusable = false}, SHIFT(1337), - [2790] = {.count = 1, .reusable = true}, SHIFT(1338), - [2792] = {.count = 1, .reusable = false}, SHIFT(1338), - [2794] = {.count = 1, .reusable = true}, SHIFT(1339), - [2796] = {.count = 1, .reusable = false}, SHIFT(1339), - [2798] = {.count = 1, .reusable = true}, SHIFT(1340), - [2800] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), - [2802] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), - [2804] = {.count = 1, .reusable = false}, SHIFT(1343), - [2806] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2), - [2808] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2), - [2810] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 1), - [2812] = {.count = 1, .reusable = true}, SHIFT(1348), + [2712] = {.count = 1, .reusable = true}, SHIFT(1310), + [2714] = {.count = 1, .reusable = false}, SHIFT(1312), + [2716] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), + [2718] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2, .alias_sequence_id = 1), + [2720] = {.count = 2, .reusable = false}, REDUCE(sym_template_type, 2, .alias_sequence_id = 1), REDUCE(sym_template_function, 2), + [2723] = {.count = 1, .reusable = true}, SHIFT(1315), + [2725] = {.count = 1, .reusable = true}, SHIFT(1318), + [2727] = {.count = 1, .reusable = true}, SHIFT(1322), + [2729] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 2), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 4), + [2732] = {.count = 1, .reusable = true}, SHIFT(1324), + [2734] = {.count = 1, .reusable = true}, SHIFT(1323), + [2736] = {.count = 1, .reusable = false}, SHIFT(1324), + [2738] = {.count = 1, .reusable = true}, SHIFT(1325), + [2740] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 2), + [2742] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 2), + [2744] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 4), + [2746] = {.count = 1, .reusable = true}, SHIFT(1326), + [2748] = {.count = 1, .reusable = true}, SHIFT(1328), + [2750] = {.count = 1, .reusable = false}, SHIFT(1328), + [2752] = {.count = 1, .reusable = true}, SHIFT(1329), + [2754] = {.count = 1, .reusable = false}, SHIFT(1329), + [2756] = {.count = 1, .reusable = true}, SHIFT(1330), + [2758] = {.count = 1, .reusable = false}, SHIFT(1330), + [2760] = {.count = 1, .reusable = true}, SHIFT(1331), + [2762] = {.count = 1, .reusable = false}, SHIFT(1331), + [2764] = {.count = 1, .reusable = true}, SHIFT(1332), + [2766] = {.count = 1, .reusable = false}, SHIFT(1332), + [2768] = {.count = 1, .reusable = true}, SHIFT(1333), + [2770] = {.count = 1, .reusable = false}, SHIFT(1333), + [2772] = {.count = 1, .reusable = true}, SHIFT(1334), + [2774] = {.count = 1, .reusable = false}, SHIFT(1334), + [2776] = {.count = 1, .reusable = true}, SHIFT(1335), + [2778] = {.count = 1, .reusable = false}, SHIFT(1335), + [2780] = {.count = 1, .reusable = true}, SHIFT(1336), + [2782] = {.count = 1, .reusable = false}, SHIFT(1336), + [2784] = {.count = 1, .reusable = true}, SHIFT(1337), + [2786] = {.count = 1, .reusable = false}, SHIFT(1337), + [2788] = {.count = 1, .reusable = true}, SHIFT(1338), + [2790] = {.count = 1, .reusable = false}, SHIFT(1338), + [2792] = {.count = 1, .reusable = true}, SHIFT(1339), + [2794] = {.count = 1, .reusable = false}, SHIFT(1339), + [2796] = {.count = 1, .reusable = true}, SHIFT(1340), + [2798] = {.count = 1, .reusable = false}, SHIFT(1340), + [2800] = {.count = 1, .reusable = true}, SHIFT(1341), + [2802] = {.count = 1, .reusable = true}, REDUCE(sym_call_expression, 2), + [2804] = {.count = 1, .reusable = false}, REDUCE(sym_call_expression, 2), + [2806] = {.count = 1, .reusable = false}, SHIFT(1344), + [2808] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 2), + [2810] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 2), + [2812] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 1), [2814] = {.count = 1, .reusable = true}, SHIFT(1349), [2816] = {.count = 1, .reusable = true}, SHIFT(1350), - [2818] = {.count = 1, .reusable = true}, SHIFT(1352), - [2820] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(816), - [2823] = {.count = 1, .reusable = true}, SHIFT(1355), + [2818] = {.count = 1, .reusable = true}, SHIFT(1351), + [2820] = {.count = 1, .reusable = true}, SHIFT(1353), + [2822] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(816), [2825] = {.count = 1, .reusable = true}, SHIFT(1356), - [2827] = {.count = 1, .reusable = true}, SHIFT(1358), + [2827] = {.count = 1, .reusable = true}, SHIFT(1357), [2829] = {.count = 1, .reusable = true}, SHIFT(1359), - [2831] = {.count = 1, .reusable = true}, SHIFT(1368), + [2831] = {.count = 1, .reusable = true}, SHIFT(1360), [2833] = {.count = 1, .reusable = true}, SHIFT(1369), - [2835] = {.count = 1, .reusable = false}, SHIFT(1374), - [2837] = {.count = 1, .reusable = true}, SHIFT(1375), - [2839] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 2), - [2841] = {.count = 1, .reusable = true}, SHIFT(1376), - [2843] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 2), - [2845] = {.count = 1, .reusable = false}, SHIFT(1377), - [2847] = {.count = 1, .reusable = true}, SHIFT(1377), - [2849] = {.count = 1, .reusable = true}, SHIFT(1380), - [2851] = {.count = 1, .reusable = false}, SHIFT(1384), - [2853] = {.count = 1, .reusable = false}, SHIFT(1382), + [2835] = {.count = 1, .reusable = true}, SHIFT(1370), + [2837] = {.count = 1, .reusable = false}, SHIFT(1375), + [2839] = {.count = 1, .reusable = true}, SHIFT(1376), + [2841] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 2), + [2843] = {.count = 1, .reusable = true}, SHIFT(1377), + [2845] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 2), + [2847] = {.count = 1, .reusable = false}, SHIFT(1378), + [2849] = {.count = 1, .reusable = true}, SHIFT(1378), + [2851] = {.count = 1, .reusable = true}, SHIFT(1381), + [2853] = {.count = 1, .reusable = false}, SHIFT(1385), [2855] = {.count = 1, .reusable = false}, SHIFT(1383), - [2857] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), - [2859] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(376), - [2862] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(376), - [2865] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(377), - [2868] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(829), - [2871] = {.count = 1, .reusable = false}, SHIFT(1385), + [2857] = {.count = 1, .reusable = false}, SHIFT(1384), + [2859] = {.count = 1, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), + [2861] = {.count = 2, .reusable = false}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(376), + [2864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(376), + [2867] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(377), + [2870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(829), [2873] = {.count = 1, .reusable = false}, SHIFT(1386), - [2875] = {.count = 1, .reusable = true}, SHIFT(1388), - [2877] = {.count = 1, .reusable = true}, SHIFT(1418), - [2879] = {.count = 1, .reusable = false}, SHIFT(1389), + [2875] = {.count = 1, .reusable = false}, SHIFT(1387), + [2877] = {.count = 1, .reusable = true}, SHIFT(1389), + [2879] = {.count = 1, .reusable = true}, SHIFT(1419), [2881] = {.count = 1, .reusable = false}, SHIFT(1390), [2883] = {.count = 1, .reusable = false}, SHIFT(1391), [2885] = {.count = 1, .reusable = false}, SHIFT(1392), @@ -131645,10 +134636,10 @@ static TSParseActionEntry ts_parse_actions[] = { [2891] = {.count = 1, .reusable = false}, SHIFT(1395), [2893] = {.count = 1, .reusable = false}, SHIFT(1396), [2895] = {.count = 1, .reusable = false}, SHIFT(1397), - [2897] = {.count = 1, .reusable = true}, SHIFT(1398), - [2899] = {.count = 1, .reusable = false}, SHIFT(1399), - [2901] = {.count = 1, .reusable = true}, SHIFT(1400), - [2903] = {.count = 1, .reusable = false}, SHIFT(1401), + [2897] = {.count = 1, .reusable = false}, SHIFT(1398), + [2899] = {.count = 1, .reusable = true}, SHIFT(1399), + [2901] = {.count = 1, .reusable = false}, SHIFT(1400), + [2903] = {.count = 1, .reusable = true}, SHIFT(1401), [2905] = {.count = 1, .reusable = false}, SHIFT(1402), [2907] = {.count = 1, .reusable = false}, SHIFT(1403), [2909] = {.count = 1, .reusable = false}, SHIFT(1404), @@ -131659,711 +134650,711 @@ static TSParseActionEntry ts_parse_actions[] = { [2919] = {.count = 1, .reusable = false}, SHIFT(1409), [2921] = {.count = 1, .reusable = false}, SHIFT(1410), [2923] = {.count = 1, .reusable = false}, SHIFT(1411), - [2925] = {.count = 1, .reusable = false}, SHIFT(1418), - [2927] = {.count = 1, .reusable = false}, SHIFT(1412), - [2929] = {.count = 1, .reusable = false}, SHIFT(1421), - [2931] = {.count = 1, .reusable = false}, SHIFT(1425), - [2933] = {.count = 1, .reusable = false}, SHIFT(1429), - [2935] = {.count = 1, .reusable = false}, SHIFT(1431), - [2937] = {.count = 1, .reusable = true}, SHIFT(1432), - [2939] = {.count = 1, .reusable = true}, SHIFT(1442), - [2941] = {.count = 1, .reusable = true}, SHIFT(1433), + [2925] = {.count = 1, .reusable = false}, SHIFT(1412), + [2927] = {.count = 1, .reusable = false}, SHIFT(1419), + [2929] = {.count = 1, .reusable = false}, SHIFT(1413), + [2931] = {.count = 1, .reusable = false}, SHIFT(1422), + [2933] = {.count = 1, .reusable = false}, SHIFT(1426), + [2935] = {.count = 1, .reusable = false}, SHIFT(1430), + [2937] = {.count = 1, .reusable = false}, SHIFT(1432), + [2939] = {.count = 1, .reusable = true}, SHIFT(1433), + [2941] = {.count = 1, .reusable = true}, SHIFT(1443), [2943] = {.count = 1, .reusable = true}, SHIFT(1434), [2945] = {.count = 1, .reusable = true}, SHIFT(1435), [2947] = {.count = 1, .reusable = true}, SHIFT(1436), - [2949] = {.count = 1, .reusable = false}, SHIFT(1437), - [2951] = {.count = 1, .reusable = true}, SHIFT(1437), - [2953] = {.count = 1, .reusable = false}, SHIFT(1438), - [2955] = {.count = 1, .reusable = true}, SHIFT(1439), - [2957] = {.count = 1, .reusable = false}, SHIFT(1442), - [2959] = {.count = 1, .reusable = true}, SHIFT(1440), - [2961] = {.count = 1, .reusable = false}, SHIFT(1441), - [2963] = {.count = 1, .reusable = true}, SHIFT(1443), - [2965] = {.count = 1, .reusable = false}, SHIFT(1443), + [2949] = {.count = 1, .reusable = true}, SHIFT(1437), + [2951] = {.count = 1, .reusable = false}, SHIFT(1438), + [2953] = {.count = 1, .reusable = true}, SHIFT(1438), + [2955] = {.count = 1, .reusable = false}, SHIFT(1439), + [2957] = {.count = 1, .reusable = true}, SHIFT(1440), + [2959] = {.count = 1, .reusable = false}, SHIFT(1443), + [2961] = {.count = 1, .reusable = true}, SHIFT(1441), + [2963] = {.count = 1, .reusable = false}, SHIFT(1442), + [2965] = {.count = 1, .reusable = true}, SHIFT(1444), [2967] = {.count = 1, .reusable = true}, SHIFT(1445), [2969] = {.count = 1, .reusable = false}, SHIFT(1445), - [2971] = {.count = 1, .reusable = true}, SHIFT(1446), - [2973] = {.count = 1, .reusable = false}, SHIFT(1446), - [2975] = {.count = 1, .reusable = true}, SHIFT(1447), - [2977] = {.count = 1, .reusable = false}, SHIFT(1447), - [2979] = {.count = 1, .reusable = true}, SHIFT(1448), - [2981] = {.count = 1, .reusable = false}, SHIFT(1448), + [2971] = {.count = 1, .reusable = true}, SHIFT(1447), + [2973] = {.count = 1, .reusable = false}, SHIFT(1447), + [2975] = {.count = 1, .reusable = true}, SHIFT(1448), + [2977] = {.count = 1, .reusable = false}, SHIFT(1448), + [2979] = {.count = 1, .reusable = true}, SHIFT(1449), + [2981] = {.count = 1, .reusable = false}, SHIFT(1449), [2983] = {.count = 1, .reusable = true}, SHIFT(1450), - [2985] = {.count = 1, .reusable = true}, SHIFT(1449), - [2987] = {.count = 1, .reusable = false}, SHIFT(1450), + [2985] = {.count = 1, .reusable = false}, SHIFT(1450), + [2987] = {.count = 1, .reusable = true}, SHIFT(1452), [2989] = {.count = 1, .reusable = true}, SHIFT(1451), [2991] = {.count = 1, .reusable = false}, SHIFT(1452), - [2993] = {.count = 1, .reusable = true}, SHIFT(1454), - [2995] = {.count = 1, .reusable = true}, SHIFT(1453), - [2997] = {.count = 1, .reusable = false}, SHIFT(1454), - [2999] = {.count = 1, .reusable = false}, SHIFT(1455), + [2993] = {.count = 1, .reusable = true}, SHIFT(1453), + [2995] = {.count = 1, .reusable = false}, SHIFT(1454), + [2997] = {.count = 1, .reusable = true}, SHIFT(1456), + [2999] = {.count = 1, .reusable = true}, SHIFT(1455), [3001] = {.count = 1, .reusable = false}, SHIFT(1456), - [3003] = {.count = 1, .reusable = true}, SHIFT(1457), - [3005] = {.count = 1, .reusable = true}, SHIFT(1458), - [3007] = {.count = 1, .reusable = true}, SHIFT(1456), - [3009] = {.count = 1, .reusable = false}, SHIFT(1459), - [3011] = {.count = 1, .reusable = true}, SHIFT(1460), - [3013] = {.count = 1, .reusable = true}, SHIFT(1461), - [3015] = {.count = 1, .reusable = false}, SHIFT(1462), - [3017] = {.count = 1, .reusable = false}, SHIFT(1463), - [3019] = {.count = 1, .reusable = true}, SHIFT(1464), + [3003] = {.count = 1, .reusable = false}, SHIFT(1457), + [3005] = {.count = 1, .reusable = false}, SHIFT(1458), + [3007] = {.count = 1, .reusable = true}, SHIFT(1459), + [3009] = {.count = 1, .reusable = true}, SHIFT(1460), + [3011] = {.count = 1, .reusable = true}, SHIFT(1458), + [3013] = {.count = 1, .reusable = false}, SHIFT(1461), + [3015] = {.count = 1, .reusable = true}, SHIFT(1462), + [3017] = {.count = 1, .reusable = true}, SHIFT(1463), + [3019] = {.count = 1, .reusable = false}, SHIFT(1464), [3021] = {.count = 1, .reusable = false}, SHIFT(1465), - [3023] = {.count = 1, .reusable = true}, SHIFT(1465), - [3025] = {.count = 1, .reusable = false}, SHIFT(1466), - [3027] = {.count = 1, .reusable = false}, SHIFT(1467), - [3029] = {.count = 1, .reusable = true}, SHIFT(1468), - [3031] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1076), - [3034] = {.count = 1, .reusable = false}, SHIFT(1469), - [3036] = {.count = 1, .reusable = true}, SHIFT(1470), - [3038] = {.count = 1, .reusable = true}, SHIFT(1475), - [3040] = {.count = 1, .reusable = false}, SHIFT(1475), - [3042] = {.count = 1, .reusable = true}, SHIFT(1476), - [3044] = {.count = 1, .reusable = true}, SHIFT(1478), - [3046] = {.count = 1, .reusable = true}, SHIFT(1479), + [3023] = {.count = 1, .reusable = true}, SHIFT(1466), + [3025] = {.count = 1, .reusable = false}, SHIFT(1467), + [3027] = {.count = 1, .reusable = true}, SHIFT(1467), + [3029] = {.count = 1, .reusable = false}, SHIFT(1468), + [3031] = {.count = 1, .reusable = false}, SHIFT(1469), + [3033] = {.count = 1, .reusable = true}, SHIFT(1470), + [3035] = {.count = 2, .reusable = false}, REDUCE(sym__expression, 1), SHIFT(1077), + [3038] = {.count = 1, .reusable = false}, SHIFT(1471), + [3040] = {.count = 1, .reusable = true}, SHIFT(1472), + [3042] = {.count = 1, .reusable = true}, SHIFT(1477), + [3044] = {.count = 1, .reusable = false}, SHIFT(1477), + [3046] = {.count = 1, .reusable = true}, SHIFT(1478), [3048] = {.count = 1, .reusable = true}, SHIFT(1480), - [3050] = {.count = 1, .reusable = false}, SHIFT(1480), - [3052] = {.count = 1, .reusable = true}, SHIFT(1481), - [3054] = {.count = 1, .reusable = true}, SHIFT(1482), - [3056] = {.count = 1, .reusable = true}, SHIFT(1484), - [3058] = {.count = 1, .reusable = true}, SHIFT(1486), + [3050] = {.count = 1, .reusable = true}, SHIFT(1481), + [3052] = {.count = 1, .reusable = true}, SHIFT(1482), + [3054] = {.count = 1, .reusable = true}, SHIFT(1483), + [3056] = {.count = 1, .reusable = false}, SHIFT(1483), + [3058] = {.count = 1, .reusable = true}, SHIFT(1484), [3060] = {.count = 1, .reusable = true}, SHIFT(1485), - [3062] = {.count = 1, .reusable = false}, SHIFT(1486), - [3064] = {.count = 1, .reusable = true}, SHIFT(1488), - [3066] = {.count = 1, .reusable = true}, SHIFT(1489), - [3068] = {.count = 1, .reusable = true}, SHIFT(1490), - [3070] = {.count = 1, .reusable = false}, SHIFT(1491), + [3062] = {.count = 1, .reusable = true}, SHIFT(1487), + [3064] = {.count = 1, .reusable = true}, SHIFT(1489), + [3066] = {.count = 1, .reusable = true}, SHIFT(1488), + [3068] = {.count = 1, .reusable = false}, SHIFT(1489), + [3070] = {.count = 1, .reusable = true}, SHIFT(1491), [3072] = {.count = 1, .reusable = true}, SHIFT(1492), [3074] = {.count = 1, .reusable = true}, SHIFT(1493), - [3076] = {.count = 1, .reusable = true}, SHIFT(1498), - [3078] = {.count = 1, .reusable = true}, SHIFT(1494), - [3080] = {.count = 1, .reusable = false}, SHIFT(1498), - [3082] = {.count = 1, .reusable = false}, SHIFT(1495), - [3084] = {.count = 1, .reusable = true}, SHIFT(1496), - [3086] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), - [3088] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), - [3090] = {.count = 1, .reusable = true}, SHIFT(1500), - [3092] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), - [3094] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), - [3096] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), - [3098] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), - [3100] = {.count = 1, .reusable = true}, SHIFT(1501), - [3102] = {.count = 1, .reusable = true}, SHIFT(1503), - [3104] = {.count = 1, .reusable = false}, SHIFT(1504), - [3106] = {.count = 1, .reusable = false}, SHIFT(1506), - [3108] = {.count = 1, .reusable = true}, SHIFT(1508), - [3110] = {.count = 1, .reusable = true}, SHIFT(1507), - [3112] = {.count = 1, .reusable = false}, SHIFT(1508), - [3114] = {.count = 1, .reusable = true}, SHIFT(1509), + [3076] = {.count = 1, .reusable = false}, SHIFT(1494), + [3078] = {.count = 1, .reusable = true}, SHIFT(1495), + [3080] = {.count = 1, .reusable = true}, SHIFT(1496), + [3082] = {.count = 1, .reusable = true}, SHIFT(1501), + [3084] = {.count = 1, .reusable = true}, SHIFT(1497), + [3086] = {.count = 1, .reusable = false}, SHIFT(1501), + [3088] = {.count = 1, .reusable = false}, SHIFT(1498), + [3090] = {.count = 1, .reusable = true}, SHIFT(1499), + [3092] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 2), + [3094] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 2), + [3096] = {.count = 1, .reusable = true}, SHIFT(1503), + [3098] = {.count = 1, .reusable = true}, REDUCE(sym_break_statement, 2), + [3100] = {.count = 1, .reusable = false}, REDUCE(sym_break_statement, 2), + [3102] = {.count = 1, .reusable = true}, REDUCE(sym_continue_statement, 2), + [3104] = {.count = 1, .reusable = false}, REDUCE(sym_continue_statement, 2), + [3106] = {.count = 1, .reusable = true}, SHIFT(1504), + [3108] = {.count = 1, .reusable = true}, SHIFT(1506), + [3110] = {.count = 1, .reusable = false}, SHIFT(1507), + [3112] = {.count = 1, .reusable = false}, SHIFT(1509), + [3114] = {.count = 1, .reusable = true}, SHIFT(1511), [3116] = {.count = 1, .reusable = true}, SHIFT(1510), - [3118] = {.count = 1, .reusable = true}, SHIFT(1512), - [3120] = {.count = 1, .reusable = true}, SHIFT(1514), - [3122] = {.count = 1, .reusable = true}, SHIFT(1516), - [3124] = {.count = 1, .reusable = false}, SHIFT(1516), - [3126] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), - [3128] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), - [3130] = {.count = 1, .reusable = true}, SHIFT(1518), - [3132] = {.count = 1, .reusable = false}, SHIFT(1518), - [3134] = {.count = 1, .reusable = true}, SHIFT(1519), - [3136] = {.count = 1, .reusable = false}, SHIFT(1519), - [3138] = {.count = 1, .reusable = true}, SHIFT(1520), - [3140] = {.count = 1, .reusable = false}, SHIFT(1520), - [3142] = {.count = 1, .reusable = true}, SHIFT(1521), - [3144] = {.count = 1, .reusable = false}, SHIFT(1521), - [3146] = {.count = 1, .reusable = true}, SHIFT(1522), - [3148] = {.count = 1, .reusable = false}, SHIFT(1522), - [3150] = {.count = 1, .reusable = true}, SHIFT(1523), - [3152] = {.count = 1, .reusable = false}, SHIFT(1523), - [3154] = {.count = 1, .reusable = true}, SHIFT(1524), - [3156] = {.count = 1, .reusable = false}, SHIFT(1524), - [3158] = {.count = 1, .reusable = true}, SHIFT(1525), - [3160] = {.count = 1, .reusable = false}, SHIFT(1525), - [3162] = {.count = 1, .reusable = true}, SHIFT(1526), - [3164] = {.count = 1, .reusable = false}, SHIFT(1526), - [3166] = {.count = 1, .reusable = true}, SHIFT(1527), - [3168] = {.count = 1, .reusable = false}, SHIFT(1527), - [3170] = {.count = 1, .reusable = true}, SHIFT(1528), - [3172] = {.count = 1, .reusable = false}, SHIFT(1528), - [3174] = {.count = 1, .reusable = false}, SHIFT(1529), - [3176] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), - [3178] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), - [3180] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(413), - [3183] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(379), - [3186] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(380), - [3189] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(381), - [3192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(382), - [3195] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(383), - [3198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(384), - [3201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(385), - [3204] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(386), - [3207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(387), - [3210] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(95), - [3213] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(388), - [3216] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [3218] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(390), - [3221] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(350), - [3224] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(97), - [3227] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(38), - [3230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(30), - [3233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), - [3236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(15), - [3239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(16), - [3242] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(391), - [3245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(392), - [3248] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(393), - [3251] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(394), - [3254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(395), - [3257] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(396), - [3260] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(397), - [3263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(398), - [3266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(399), - [3269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(400), - [3272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(401), - [3275] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(402), - [3278] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(403), - [3281] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(404), - [3284] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(404), - [3287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(405), - [3290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(406), - [3293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(413), - [3296] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(407), - [3299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(20), - [3302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), - [3305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(363), - [3308] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(408), - [3311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(409), - [3314] = {.count = 1, .reusable = false}, SHIFT(1530), - [3316] = {.count = 1, .reusable = true}, SHIFT(1531), - [3318] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2, .alias_sequence_id = 26), - [3320] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 29), - [3322] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2), - [3324] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 3), - [3326] = {.count = 1, .reusable = false}, SHIFT(1534), - [3328] = {.count = 1, .reusable = true}, SHIFT(1535), - [3330] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2), - [3332] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 4), - [3334] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 4), - [3336] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 6), - [3338] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 6), - [3340] = {.count = 1, .reusable = true}, SHIFT(1536), - [3342] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), - [3344] = {.count = 1, .reusable = true}, SHIFT(1537), - [3346] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 6), - [3348] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 6), - [3350] = {.count = 1, .reusable = true}, SHIFT(1539), - [3352] = {.count = 1, .reusable = true}, SHIFT(1543), - [3354] = {.count = 1, .reusable = false}, SHIFT(1544), - [3356] = {.count = 1, .reusable = true}, SHIFT(1544), - [3358] = {.count = 1, .reusable = false}, SHIFT(1547), - [3360] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(437), - [3363] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(934), - [3366] = {.count = 1, .reusable = false}, SHIFT(1548), - [3368] = {.count = 1, .reusable = false}, SHIFT(1549), - [3370] = {.count = 1, .reusable = false}, SHIFT(1550), - [3372] = {.count = 1, .reusable = true}, SHIFT(1551), - [3374] = {.count = 1, .reusable = false}, SHIFT(1551), - [3376] = {.count = 1, .reusable = true}, SHIFT(1553), - [3378] = {.count = 1, .reusable = false}, SHIFT(1553), - [3380] = {.count = 1, .reusable = true}, SHIFT(1555), - [3382] = {.count = 1, .reusable = false}, SHIFT(1555), - [3384] = {.count = 1, .reusable = false}, SHIFT(1557), - [3386] = {.count = 1, .reusable = false}, SHIFT(1558), - [3388] = {.count = 1, .reusable = false}, SHIFT(1560), - [3390] = {.count = 1, .reusable = false}, SHIFT(1563), - [3392] = {.count = 1, .reusable = false}, SHIFT(1566), - [3394] = {.count = 1, .reusable = false}, SHIFT(1569), - [3396] = {.count = 1, .reusable = false}, SHIFT(1571), - [3398] = {.count = 1, .reusable = true}, SHIFT(1574), - [3400] = {.count = 1, .reusable = true}, SHIFT(1575), - [3402] = {.count = 1, .reusable = true}, SHIFT(1578), - [3404] = {.count = 1, .reusable = true}, SHIFT(1581), - [3406] = {.count = 1, .reusable = true}, SHIFT(1582), - [3408] = {.count = 1, .reusable = true}, SHIFT(1583), - [3410] = {.count = 1, .reusable = true}, SHIFT(1585), - [3412] = {.count = 1, .reusable = true}, SHIFT(1586), - [3414] = {.count = 1, .reusable = true}, SHIFT(1589), - [3416] = {.count = 1, .reusable = true}, SHIFT(1591), - [3418] = {.count = 1, .reusable = true}, SHIFT(1593), - [3420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(445), - [3423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(446), - [3426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), - [3429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), - [3432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), - [3435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), - [3438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), - [3441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(452), - [3444] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), - [3447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(454), - [3450] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), - [3453] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 22), - [3455] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 22), - [3457] = {.count = 1, .reusable = true}, SHIFT(1598), - [3459] = {.count = 1, .reusable = true}, SHIFT(1599), - [3461] = {.count = 1, .reusable = true}, SHIFT(1601), - [3463] = {.count = 1, .reusable = true}, SHIFT(1602), - [3465] = {.count = 1, .reusable = true}, SHIFT(1604), - [3467] = {.count = 1, .reusable = true}, SHIFT(1605), - [3469] = {.count = 1, .reusable = true}, SHIFT(1606), + [3118] = {.count = 1, .reusable = false}, SHIFT(1511), + [3120] = {.count = 1, .reusable = true}, SHIFT(1512), + [3122] = {.count = 1, .reusable = true}, SHIFT(1513), + [3124] = {.count = 1, .reusable = true}, SHIFT(1515), + [3126] = {.count = 1, .reusable = true}, SHIFT(1517), + [3128] = {.count = 1, .reusable = true}, SHIFT(1519), + [3130] = {.count = 1, .reusable = false}, SHIFT(1519), + [3132] = {.count = 1, .reusable = true}, REDUCE(sym_expression_statement, 2), + [3134] = {.count = 1, .reusable = false}, REDUCE(sym_expression_statement, 2), + [3136] = {.count = 1, .reusable = true}, SHIFT(1521), + [3138] = {.count = 1, .reusable = false}, SHIFT(1521), + [3140] = {.count = 1, .reusable = true}, SHIFT(1522), + [3142] = {.count = 1, .reusable = false}, SHIFT(1522), + [3144] = {.count = 1, .reusable = true}, SHIFT(1523), + [3146] = {.count = 1, .reusable = false}, SHIFT(1523), + [3148] = {.count = 1, .reusable = true}, SHIFT(1524), + [3150] = {.count = 1, .reusable = false}, SHIFT(1524), + [3152] = {.count = 1, .reusable = true}, SHIFT(1525), + [3154] = {.count = 1, .reusable = false}, SHIFT(1525), + [3156] = {.count = 1, .reusable = true}, SHIFT(1526), + [3158] = {.count = 1, .reusable = false}, SHIFT(1526), + [3160] = {.count = 1, .reusable = true}, SHIFT(1527), + [3162] = {.count = 1, .reusable = false}, SHIFT(1527), + [3164] = {.count = 1, .reusable = true}, SHIFT(1528), + [3166] = {.count = 1, .reusable = false}, SHIFT(1528), + [3168] = {.count = 1, .reusable = true}, SHIFT(1529), + [3170] = {.count = 1, .reusable = false}, SHIFT(1529), + [3172] = {.count = 1, .reusable = true}, SHIFT(1530), + [3174] = {.count = 1, .reusable = false}, SHIFT(1530), + [3176] = {.count = 1, .reusable = true}, SHIFT(1531), + [3178] = {.count = 1, .reusable = false}, SHIFT(1531), + [3180] = {.count = 1, .reusable = false}, SHIFT(1532), + [3182] = {.count = 1, .reusable = true}, REDUCE(sym_compound_statement, 3), + [3184] = {.count = 1, .reusable = false}, REDUCE(sym_compound_statement, 3), + [3186] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(413), + [3189] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(379), + [3192] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(380), + [3195] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(381), + [3198] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(382), + [3201] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(383), + [3204] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(384), + [3207] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(385), + [3210] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(386), + [3213] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(387), + [3216] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(95), + [3219] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(388), + [3222] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [3224] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(390), + [3227] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(350), + [3230] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(97), + [3233] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(38), + [3236] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(30), + [3239] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(14), + [3242] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(15), + [3245] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(16), + [3248] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(391), + [3251] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(392), + [3254] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(393), + [3257] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(394), + [3260] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(395), + [3263] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(396), + [3266] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(397), + [3269] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(398), + [3272] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(399), + [3275] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(400), + [3278] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(401), + [3281] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(402), + [3284] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(403), + [3287] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(404), + [3290] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(404), + [3293] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(405), + [3296] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(406), + [3299] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(413), + [3302] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(407), + [3305] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(20), + [3308] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(21), + [3311] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(363), + [3314] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(408), + [3317] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(409), + [3320] = {.count = 1, .reusable = false}, SHIFT(1533), + [3322] = {.count = 1, .reusable = true}, SHIFT(1534), + [3324] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2, .alias_sequence_id = 26), + [3326] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 29), + [3328] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2), + [3330] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer_list, 3), + [3332] = {.count = 1, .reusable = false}, SHIFT(1537), + [3334] = {.count = 1, .reusable = true}, SHIFT(1538), + [3336] = {.count = 1, .reusable = true}, REDUCE(sym_field_initializer, 2), + [3338] = {.count = 1, .reusable = true}, REDUCE(sym_constructor_or_destructor_definition, 4), + [3340] = {.count = 1, .reusable = false}, REDUCE(sym_constructor_or_destructor_definition, 4), + [3342] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 6), + [3344] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_def, 5, .alias_sequence_id = 6), + [3346] = {.count = 1, .reusable = true}, SHIFT(1539), + [3348] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 3), + [3350] = {.count = 1, .reusable = true}, SHIFT(1540), + [3352] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 6), + [3354] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_function_def, 5, .alias_sequence_id = 6), + [3356] = {.count = 1, .reusable = true}, SHIFT(1542), + [3358] = {.count = 1, .reusable = true}, SHIFT(1546), + [3360] = {.count = 1, .reusable = false}, SHIFT(1547), + [3362] = {.count = 1, .reusable = true}, SHIFT(1547), + [3364] = {.count = 1, .reusable = false}, SHIFT(1550), + [3366] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(437), + [3369] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(935), + [3372] = {.count = 1, .reusable = false}, SHIFT(1551), + [3374] = {.count = 1, .reusable = false}, SHIFT(1552), + [3376] = {.count = 1, .reusable = false}, SHIFT(1553), + [3378] = {.count = 1, .reusable = true}, SHIFT(1554), + [3380] = {.count = 1, .reusable = false}, SHIFT(1554), + [3382] = {.count = 1, .reusable = true}, SHIFT(1556), + [3384] = {.count = 1, .reusable = false}, SHIFT(1556), + [3386] = {.count = 1, .reusable = true}, SHIFT(1558), + [3388] = {.count = 1, .reusable = false}, SHIFT(1558), + [3390] = {.count = 1, .reusable = false}, SHIFT(1560), + [3392] = {.count = 1, .reusable = false}, SHIFT(1561), + [3394] = {.count = 1, .reusable = false}, SHIFT(1563), + [3396] = {.count = 1, .reusable = false}, SHIFT(1566), + [3398] = {.count = 1, .reusable = false}, SHIFT(1569), + [3400] = {.count = 1, .reusable = false}, SHIFT(1572), + [3402] = {.count = 1, .reusable = false}, SHIFT(1574), + [3404] = {.count = 1, .reusable = true}, SHIFT(1577), + [3406] = {.count = 1, .reusable = true}, SHIFT(1578), + [3408] = {.count = 1, .reusable = true}, SHIFT(1581), + [3410] = {.count = 1, .reusable = true}, SHIFT(1584), + [3412] = {.count = 1, .reusable = true}, SHIFT(1585), + [3414] = {.count = 1, .reusable = true}, SHIFT(1586), + [3416] = {.count = 1, .reusable = true}, SHIFT(1588), + [3418] = {.count = 1, .reusable = true}, SHIFT(1589), + [3420] = {.count = 1, .reusable = true}, SHIFT(1592), + [3422] = {.count = 1, .reusable = true}, SHIFT(1594), + [3424] = {.count = 1, .reusable = true}, SHIFT(1596), + [3426] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(445), + [3429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(446), + [3432] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(447), + [3435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(448), + [3438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(449), + [3441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(450), + [3444] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(451), + [3447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(452), + [3450] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(453), + [3453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(454), + [3456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_translation_unit_repeat1, 2), SHIFT_REPEAT(455), + [3459] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 22), + [3461] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif, 3, .alias_sequence_id = 22), + [3463] = {.count = 1, .reusable = true}, SHIFT(1601), + [3465] = {.count = 1, .reusable = true}, SHIFT(1602), + [3467] = {.count = 1, .reusable = true}, SHIFT(1604), + [3469] = {.count = 1, .reusable = true}, SHIFT(1605), [3471] = {.count = 1, .reusable = true}, SHIFT(1607), - [3473] = {.count = 1, .reusable = false}, SHIFT(1607), + [3473] = {.count = 1, .reusable = true}, SHIFT(1608), [3475] = {.count = 1, .reusable = true}, SHIFT(1609), [3477] = {.count = 1, .reusable = true}, SHIFT(1610), [3479] = {.count = 1, .reusable = false}, SHIFT(1610), [3481] = {.count = 1, .reusable = true}, SHIFT(1612), [3483] = {.count = 1, .reusable = true}, SHIFT(1613), - [3485] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 30), - [3487] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 30), - [3489] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 31), - [3491] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 31), - [3493] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 32), - [3495] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 32), - [3497] = {.count = 1, .reusable = true}, SHIFT(1615), - [3499] = {.count = 1, .reusable = true}, SHIFT(1616), - [3501] = {.count = 1, .reusable = true}, SHIFT(1617), - [3503] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), - [3505] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), - [3507] = {.count = 1, .reusable = true}, SHIFT(1619), - [3509] = {.count = 1, .reusable = true}, SHIFT(1618), - [3511] = {.count = 1, .reusable = false}, SHIFT(1619), - [3513] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), - [3515] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), - [3517] = {.count = 1, .reusable = true}, SHIFT(1620), - [3519] = {.count = 1, .reusable = false}, SHIFT(1621), - [3521] = {.count = 1, .reusable = true}, SHIFT(1621), - [3523] = {.count = 1, .reusable = false}, SHIFT(1624), - [3525] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(516), - [3528] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1026), - [3531] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), - [3533] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), - [3535] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), - [3537] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), - [3539] = {.count = 1, .reusable = true}, SHIFT(1625), - [3541] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1626), - [3544] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 7), - [3546] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 7), - [3548] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 8), - [3550] = {.count = 1, .reusable = false}, SHIFT(1628), - [3552] = {.count = 1, .reusable = true}, SHIFT(1629), - [3554] = {.count = 1, .reusable = true}, SHIFT(1630), - [3556] = {.count = 1, .reusable = true}, SHIFT(1631), - [3558] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 9), - [3560] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 9), - [3562] = {.count = 1, .reusable = true}, SHIFT(1635), - [3564] = {.count = 1, .reusable = true}, SHIFT(1636), - [3566] = {.count = 1, .reusable = true}, SHIFT(1637), - [3568] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 10), - [3570] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 10), + [3485] = {.count = 1, .reusable = false}, SHIFT(1613), + [3487] = {.count = 1, .reusable = true}, SHIFT(1615), + [3489] = {.count = 1, .reusable = true}, SHIFT(1616), + [3491] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 30), + [3493] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if, 5, .alias_sequence_id = 30), + [3495] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 31), + [3497] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 31), + [3499] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 32), + [3501] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef, 5, .alias_sequence_id = 32), + [3503] = {.count = 1, .reusable = true}, SHIFT(1618), + [3505] = {.count = 1, .reusable = true}, SHIFT(1619), + [3507] = {.count = 1, .reusable = true}, SHIFT(1620), + [3509] = {.count = 1, .reusable = true}, REDUCE(sym__type_declarator, 3), + [3511] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 3), + [3513] = {.count = 1, .reusable = true}, SHIFT(1622), + [3515] = {.count = 1, .reusable = true}, SHIFT(1621), + [3517] = {.count = 1, .reusable = false}, SHIFT(1622), + [3519] = {.count = 1, .reusable = true}, REDUCE(sym_type_definition, 5), + [3521] = {.count = 1, .reusable = false}, REDUCE(sym_type_definition, 5), + [3523] = {.count = 1, .reusable = true}, SHIFT(1623), + [3525] = {.count = 1, .reusable = false}, SHIFT(1624), + [3527] = {.count = 1, .reusable = true}, SHIFT(1624), + [3529] = {.count = 1, .reusable = false}, SHIFT(1627), + [3531] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(516), + [3534] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1027), + [3537] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator, 3), + [3539] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 4), + [3541] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 4), + [3543] = {.count = 1, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), + [3545] = {.count = 1, .reusable = true}, SHIFT(1628), + [3547] = {.count = 2, .reusable = true}, REDUCE(aux_sym_enumerator_list_repeat1, 2), SHIFT_REPEAT(1629), + [3550] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 7), + [3552] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 3, .alias_sequence_id = 7), + [3554] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 1, .alias_sequence_id = 8), + [3556] = {.count = 1, .reusable = false}, SHIFT(1631), + [3558] = {.count = 1, .reusable = true}, SHIFT(1632), + [3560] = {.count = 1, .reusable = true}, SHIFT(1633), + [3562] = {.count = 1, .reusable = true}, SHIFT(1634), + [3564] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 9), + [3566] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 9), + [3568] = {.count = 1, .reusable = true}, SHIFT(1638), + [3570] = {.count = 1, .reusable = true}, SHIFT(1639), [3572] = {.count = 1, .reusable = true}, SHIFT(1640), - [3574] = {.count = 1, .reusable = true}, SHIFT(1641), - [3576] = {.count = 1, .reusable = true}, SHIFT(1642), - [3578] = {.count = 1, .reusable = true}, SHIFT(1645), - [3580] = {.count = 1, .reusable = true}, SHIFT(1647), - [3582] = {.count = 1, .reusable = true}, SHIFT(1648), - [3584] = {.count = 1, .reusable = true}, SHIFT(1649), - [3586] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 3), - [3588] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 3), - [3590] = {.count = 1, .reusable = true}, SHIFT(1653), - [3592] = {.count = 1, .reusable = true}, SHIFT(1654), - [3594] = {.count = 1, .reusable = true}, SHIFT(1655), + [3574] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 10), + [3576] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 3, .alias_sequence_id = 10), + [3578] = {.count = 1, .reusable = true}, SHIFT(1643), + [3580] = {.count = 1, .reusable = true}, SHIFT(1644), + [3582] = {.count = 1, .reusable = true}, SHIFT(1645), + [3584] = {.count = 1, .reusable = true}, SHIFT(1648), + [3586] = {.count = 1, .reusable = true}, SHIFT(1650), + [3588] = {.count = 1, .reusable = true}, SHIFT(1651), + [3590] = {.count = 1, .reusable = true}, SHIFT(1652), + [3592] = {.count = 1, .reusable = true}, REDUCE(sym_friend_declaration, 3), + [3594] = {.count = 1, .reusable = false}, REDUCE(sym_friend_declaration, 3), [3596] = {.count = 1, .reusable = true}, SHIFT(1656), - [3598] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), + [3598] = {.count = 1, .reusable = true}, SHIFT(1657), [3600] = {.count = 1, .reusable = true}, SHIFT(1658), - [3602] = {.count = 1, .reusable = true}, REDUCE(sym_reference_field_declarator, 2), - [3604] = {.count = 1, .reusable = false}, SHIFT(1659), - [3606] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2, .alias_sequence_id = 26), - [3608] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2, .alias_sequence_id = 26), - [3610] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 29), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 4), - [3613] = {.count = 1, .reusable = true}, SHIFT(1660), - [3615] = {.count = 1, .reusable = false}, SHIFT(1661), - [3617] = {.count = 1, .reusable = true}, SHIFT(1661), - [3619] = {.count = 1, .reusable = true}, SHIFT(1662), - [3621] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), - [3623] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [3602] = {.count = 1, .reusable = true}, SHIFT(1659), + [3604] = {.count = 1, .reusable = true}, REDUCE(sym_pointer_field_declarator, 2), + [3606] = {.count = 1, .reusable = true}, SHIFT(1661), + [3608] = {.count = 1, .reusable = true}, REDUCE(sym_reference_field_declarator, 2), + [3610] = {.count = 1, .reusable = false}, SHIFT(1662), + [3612] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2, .alias_sequence_id = 26), + [3614] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2, .alias_sequence_id = 26), + [3616] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 2, .alias_sequence_id = 29), REDUCE(sym_scoped_type_identifier, 2, .alias_sequence_id = 4), + [3619] = {.count = 1, .reusable = true}, SHIFT(1663), + [3621] = {.count = 1, .reusable = false}, SHIFT(1664), + [3623] = {.count = 1, .reusable = true}, SHIFT(1664), [3625] = {.count = 1, .reusable = true}, SHIFT(1665), - [3627] = {.count = 1, .reusable = true}, SHIFT(1663), - [3629] = {.count = 1, .reusable = false}, SHIFT(1665), - [3631] = {.count = 1, .reusable = true}, SHIFT(1666), - [3633] = {.count = 1, .reusable = false}, SHIFT(1666), - [3635] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 3), - [3637] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 3), - [3639] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), - [3641] = {.count = 1, .reusable = true}, SHIFT(1667), - [3643] = {.count = 1, .reusable = true}, SHIFT(1668), - [3645] = {.count = 1, .reusable = true}, SHIFT(1669), - [3647] = {.count = 1, .reusable = false}, SHIFT(1671), - [3649] = {.count = 1, .reusable = true}, SHIFT(1672), - [3651] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2), - [3653] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2), - [3655] = {.count = 1, .reusable = false}, SHIFT(1676), - [3657] = {.count = 1, .reusable = false}, SHIFT(1675), - [3659] = {.count = 1, .reusable = false}, SHIFT(1674), - [3661] = {.count = 1, .reusable = true}, SHIFT(1677), - [3663] = {.count = 1, .reusable = true}, SHIFT(1678), - [3665] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4), - [3667] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), - [3669] = {.count = 2, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(568), - [3672] = {.count = 1, .reusable = true}, SHIFT(1681), - [3674] = {.count = 1, .reusable = true}, SHIFT(1683), - [3676] = {.count = 1, .reusable = false}, SHIFT(1684), - [3678] = {.count = 1, .reusable = true}, SHIFT(1686), - [3680] = {.count = 1, .reusable = true}, SHIFT(1685), - [3682] = {.count = 1, .reusable = false}, SHIFT(1686), - [3684] = {.count = 1, .reusable = true}, SHIFT(1687), + [3627] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 3), + [3629] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 3), + [3631] = {.count = 1, .reusable = true}, SHIFT(1668), + [3633] = {.count = 1, .reusable = true}, SHIFT(1666), + [3635] = {.count = 1, .reusable = false}, SHIFT(1668), + [3637] = {.count = 1, .reusable = true}, SHIFT(1669), + [3639] = {.count = 1, .reusable = false}, SHIFT(1669), + [3641] = {.count = 1, .reusable = true}, REDUCE(sym_inline_method_definition, 3), + [3643] = {.count = 1, .reusable = false}, REDUCE(sym_inline_method_definition, 3), + [3645] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 2), + [3647] = {.count = 1, .reusable = true}, SHIFT(1670), + [3649] = {.count = 1, .reusable = true}, SHIFT(1671), + [3651] = {.count = 1, .reusable = true}, SHIFT(1672), + [3653] = {.count = 1, .reusable = false}, SHIFT(1674), + [3655] = {.count = 1, .reusable = true}, SHIFT(1675), + [3657] = {.count = 1, .reusable = true}, REDUCE(sym_template_method, 2), + [3659] = {.count = 1, .reusable = false}, REDUCE(sym_template_method, 2), + [3661] = {.count = 1, .reusable = false}, SHIFT(1679), + [3663] = {.count = 1, .reusable = false}, SHIFT(1678), + [3665] = {.count = 1, .reusable = false}, SHIFT(1677), + [3667] = {.count = 1, .reusable = true}, SHIFT(1680), + [3669] = {.count = 1, .reusable = true}, SHIFT(1681), + [3671] = {.count = 1, .reusable = true}, REDUCE(sym_base_class_clause, 4), + [3673] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), + [3675] = {.count = 2, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 2), SHIFT_REPEAT(568), + [3678] = {.count = 1, .reusable = true}, SHIFT(1684), + [3680] = {.count = 1, .reusable = true}, SHIFT(1686), + [3682] = {.count = 1, .reusable = false}, SHIFT(1687), + [3684] = {.count = 1, .reusable = true}, SHIFT(1689), [3686] = {.count = 1, .reusable = true}, SHIFT(1688), - [3688] = {.count = 1, .reusable = false}, SHIFT(1688), - [3690] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), - [3692] = {.count = 1, .reusable = true}, SHIFT(1689), - [3694] = {.count = 1, .reusable = false}, SHIFT(1689), - [3696] = {.count = 1, .reusable = true}, SHIFT(1690), - [3698] = {.count = 1, .reusable = false}, SHIFT(1690), - [3700] = {.count = 1, .reusable = true}, SHIFT(1691), - [3702] = {.count = 1, .reusable = false}, SHIFT(1691), - [3704] = {.count = 1, .reusable = true}, SHIFT(1692), - [3706] = {.count = 1, .reusable = false}, SHIFT(1692), - [3708] = {.count = 1, .reusable = true}, SHIFT(1693), - [3710] = {.count = 1, .reusable = false}, SHIFT(1693), - [3712] = {.count = 1, .reusable = true}, SHIFT(1694), - [3714] = {.count = 1, .reusable = false}, SHIFT(1694), - [3716] = {.count = 1, .reusable = true}, SHIFT(1695), - [3718] = {.count = 1, .reusable = false}, SHIFT(1695), - [3720] = {.count = 1, .reusable = true}, SHIFT(1696), - [3722] = {.count = 1, .reusable = false}, SHIFT(1696), - [3724] = {.count = 1, .reusable = true}, SHIFT(1697), - [3726] = {.count = 1, .reusable = false}, SHIFT(1697), - [3728] = {.count = 1, .reusable = true}, SHIFT(1698), - [3730] = {.count = 1, .reusable = false}, SHIFT(1698), - [3732] = {.count = 1, .reusable = true}, SHIFT(1699), - [3734] = {.count = 1, .reusable = false}, SHIFT(1699), - [3736] = {.count = 1, .reusable = false}, SHIFT(1700), - [3738] = {.count = 1, .reusable = true}, SHIFT(1703), - [3740] = {.count = 1, .reusable = true}, SHIFT(1705), - [3742] = {.count = 1, .reusable = true}, SHIFT(1706), - [3744] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), - [3746] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), - [3748] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 2), - [3750] = {.count = 1, .reusable = true}, SHIFT(1708), - [3752] = {.count = 1, .reusable = true}, SHIFT(1707), - [3754] = {.count = 1, .reusable = false}, SHIFT(1708), - [3756] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 2), - [3758] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), - [3760] = {.count = 1, .reusable = true}, SHIFT(1711), - [3762] = {.count = 1, .reusable = false}, SHIFT(1712), - [3764] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 2), - [3766] = {.count = 1, .reusable = true}, SHIFT(1713), - [3768] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), - [3770] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4), - [3772] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4), - [3774] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(599), - [3777] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), - [3779] = {.count = 1, .reusable = false}, SHIFT(1716), - [3781] = {.count = 1, .reusable = false}, SHIFT(1715), - [3783] = {.count = 1, .reusable = false}, SHIFT(1714), - [3785] = {.count = 1, .reusable = true}, SHIFT(1717), - [3787] = {.count = 1, .reusable = true}, SHIFT(1718), - [3789] = {.count = 1, .reusable = false}, SHIFT(1718), - [3791] = {.count = 1, .reusable = true}, SHIFT(1722), - [3793] = {.count = 1, .reusable = true}, SHIFT(1720), - [3795] = {.count = 1, .reusable = true}, SHIFT(1721), - [3797] = {.count = 1, .reusable = false}, SHIFT(1722), - [3799] = {.count = 1, .reusable = true}, SHIFT(1733), + [3688] = {.count = 1, .reusable = false}, SHIFT(1689), + [3690] = {.count = 1, .reusable = true}, SHIFT(1690), + [3692] = {.count = 1, .reusable = true}, SHIFT(1691), + [3694] = {.count = 1, .reusable = false}, SHIFT(1691), + [3696] = {.count = 1, .reusable = true}, REDUCE(sym_parenthesized_expression, 3), + [3698] = {.count = 1, .reusable = true}, SHIFT(1692), + [3700] = {.count = 1, .reusable = false}, SHIFT(1692), + [3702] = {.count = 1, .reusable = true}, SHIFT(1693), + [3704] = {.count = 1, .reusable = false}, SHIFT(1693), + [3706] = {.count = 1, .reusable = true}, SHIFT(1694), + [3708] = {.count = 1, .reusable = false}, SHIFT(1694), + [3710] = {.count = 1, .reusable = true}, SHIFT(1695), + [3712] = {.count = 1, .reusable = false}, SHIFT(1695), + [3714] = {.count = 1, .reusable = true}, SHIFT(1696), + [3716] = {.count = 1, .reusable = false}, SHIFT(1696), + [3718] = {.count = 1, .reusable = true}, SHIFT(1697), + [3720] = {.count = 1, .reusable = false}, SHIFT(1697), + [3722] = {.count = 1, .reusable = true}, SHIFT(1698), + [3724] = {.count = 1, .reusable = false}, SHIFT(1698), + [3726] = {.count = 1, .reusable = true}, SHIFT(1699), + [3728] = {.count = 1, .reusable = false}, SHIFT(1699), + [3730] = {.count = 1, .reusable = true}, SHIFT(1700), + [3732] = {.count = 1, .reusable = false}, SHIFT(1700), + [3734] = {.count = 1, .reusable = true}, SHIFT(1701), + [3736] = {.count = 1, .reusable = false}, SHIFT(1701), + [3738] = {.count = 1, .reusable = true}, SHIFT(1702), + [3740] = {.count = 1, .reusable = false}, SHIFT(1702), + [3742] = {.count = 1, .reusable = false}, SHIFT(1703), + [3744] = {.count = 1, .reusable = true}, SHIFT(1706), + [3746] = {.count = 1, .reusable = true}, SHIFT(1708), + [3748] = {.count = 1, .reusable = true}, SHIFT(1709), + [3750] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_pointer_declarator, 2), + [3752] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 2), + [3754] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 2), + [3756] = {.count = 1, .reusable = true}, SHIFT(1711), + [3758] = {.count = 1, .reusable = true}, SHIFT(1710), + [3760] = {.count = 1, .reusable = false}, SHIFT(1711), + [3762] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_reference_declarator, 2), + [3764] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 2), + [3766] = {.count = 1, .reusable = true}, SHIFT(1714), + [3768] = {.count = 1, .reusable = false}, SHIFT(1715), + [3770] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 2), + [3772] = {.count = 1, .reusable = true}, SHIFT(1716), + [3774] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), + [3776] = {.count = 1, .reusable = true}, REDUCE(sym_template_argument_list, 4), + [3778] = {.count = 1, .reusable = false}, REDUCE(sym_template_argument_list, 4), + [3780] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_argument_list_repeat1, 2), SHIFT_REPEAT(599), + [3783] = {.count = 1, .reusable = true}, REDUCE(sym_type_descriptor, 3), + [3785] = {.count = 1, .reusable = false}, SHIFT(1719), + [3787] = {.count = 1, .reusable = false}, SHIFT(1718), + [3789] = {.count = 1, .reusable = false}, SHIFT(1717), + [3791] = {.count = 1, .reusable = true}, SHIFT(1720), + [3793] = {.count = 1, .reusable = true}, SHIFT(1721), + [3795] = {.count = 1, .reusable = false}, SHIFT(1721), + [3797] = {.count = 1, .reusable = true}, SHIFT(1725), + [3799] = {.count = 1, .reusable = true}, SHIFT(1723), [3801] = {.count = 1, .reusable = true}, SHIFT(1724), - [3803] = {.count = 1, .reusable = true}, SHIFT(1725), - [3805] = {.count = 1, .reusable = true}, SHIFT(1726), + [3803] = {.count = 1, .reusable = false}, SHIFT(1725), + [3805] = {.count = 1, .reusable = true}, SHIFT(1736), [3807] = {.count = 1, .reusable = true}, SHIFT(1727), - [3809] = {.count = 1, .reusable = false}, SHIFT(1728), - [3811] = {.count = 1, .reusable = true}, SHIFT(1728), - [3813] = {.count = 1, .reusable = false}, SHIFT(1729), - [3815] = {.count = 1, .reusable = true}, SHIFT(1730), - [3817] = {.count = 1, .reusable = false}, SHIFT(1733), - [3819] = {.count = 1, .reusable = true}, SHIFT(1731), - [3821] = {.count = 1, .reusable = false}, SHIFT(1732), - [3823] = {.count = 1, .reusable = true}, SHIFT(1734), - [3825] = {.count = 1, .reusable = true}, SHIFT(1735), - [3827] = {.count = 1, .reusable = true}, SHIFT(1736), - [3829] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), - [3831] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 4), - [3833] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 4), - [3835] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(618), - [3838] = {.count = 1, .reusable = true}, SHIFT(1737), - [3840] = {.count = 1, .reusable = false}, SHIFT(1738), - [3842] = {.count = 1, .reusable = true}, SHIFT(1738), - [3844] = {.count = 1, .reusable = false}, SHIFT(1741), - [3846] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(625), - [3849] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1155), - [3852] = {.count = 1, .reusable = true}, SHIFT(1745), - [3854] = {.count = 1, .reusable = true}, SHIFT(1746), - [3856] = {.count = 1, .reusable = true}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 4), - [3858] = {.count = 1, .reusable = false}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 4), - [3860] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1164), - [3863] = {.count = 1, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), - [3865] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 4), - [3867] = {.count = 2, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(643), - [3870] = {.count = 1, .reusable = false}, SHIFT(1748), - [3872] = {.count = 1, .reusable = true}, SHIFT(1749), - [3874] = {.count = 1, .reusable = false}, SHIFT(1749), - [3876] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3878] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), - [3880] = {.count = 1, .reusable = true}, SHIFT(1751), - [3882] = {.count = 1, .reusable = false}, SHIFT(1753), - [3884] = {.count = 1, .reusable = true}, SHIFT(1754), - [3886] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), - [3888] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), - [3890] = {.count = 1, .reusable = true}, SHIFT(1755), - [3892] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 29), - [3894] = {.count = 1, .reusable = true}, SHIFT(1757), - [3896] = {.count = 1, .reusable = true}, SHIFT(1759), - [3898] = {.count = 1, .reusable = true}, SHIFT(1758), - [3900] = {.count = 1, .reusable = false}, SHIFT(1759), - [3902] = {.count = 1, .reusable = true}, SHIFT(1760), - [3904] = {.count = 1, .reusable = true}, SHIFT(1762), - [3906] = {.count = 1, .reusable = true}, SHIFT(1761), - [3908] = {.count = 1, .reusable = false}, SHIFT(1762), - [3910] = {.count = 1, .reusable = true}, SHIFT(1764), - [3912] = {.count = 1, .reusable = false}, SHIFT(1764), - [3914] = {.count = 1, .reusable = true}, SHIFT(1765), - [3916] = {.count = 1, .reusable = false}, SHIFT(1765), - [3918] = {.count = 1, .reusable = true}, SHIFT(1766), - [3920] = {.count = 1, .reusable = false}, SHIFT(1766), - [3922] = {.count = 1, .reusable = true}, SHIFT(1767), - [3924] = {.count = 1, .reusable = false}, SHIFT(1767), - [3926] = {.count = 1, .reusable = true}, SHIFT(1768), - [3928] = {.count = 1, .reusable = false}, SHIFT(1768), - [3930] = {.count = 1, .reusable = true}, SHIFT(1769), - [3932] = {.count = 1, .reusable = false}, SHIFT(1769), - [3934] = {.count = 1, .reusable = true}, SHIFT(1770), - [3936] = {.count = 1, .reusable = false}, SHIFT(1770), - [3938] = {.count = 1, .reusable = true}, SHIFT(1771), - [3940] = {.count = 1, .reusable = false}, SHIFT(1771), - [3942] = {.count = 1, .reusable = true}, SHIFT(1772), - [3944] = {.count = 1, .reusable = false}, SHIFT(1772), - [3946] = {.count = 1, .reusable = true}, SHIFT(1773), - [3948] = {.count = 1, .reusable = false}, SHIFT(1773), - [3950] = {.count = 1, .reusable = true}, SHIFT(1774), - [3952] = {.count = 1, .reusable = false}, SHIFT(1774), - [3954] = {.count = 1, .reusable = true}, SHIFT(1775), + [3809] = {.count = 1, .reusable = true}, SHIFT(1728), + [3811] = {.count = 1, .reusable = true}, SHIFT(1729), + [3813] = {.count = 1, .reusable = true}, SHIFT(1730), + [3815] = {.count = 1, .reusable = false}, SHIFT(1731), + [3817] = {.count = 1, .reusable = true}, SHIFT(1731), + [3819] = {.count = 1, .reusable = false}, SHIFT(1732), + [3821] = {.count = 1, .reusable = true}, SHIFT(1733), + [3823] = {.count = 1, .reusable = false}, SHIFT(1736), + [3825] = {.count = 1, .reusable = true}, SHIFT(1734), + [3827] = {.count = 1, .reusable = false}, SHIFT(1735), + [3829] = {.count = 1, .reusable = true}, SHIFT(1737), + [3831] = {.count = 1, .reusable = true}, SHIFT(1738), + [3833] = {.count = 1, .reusable = true}, SHIFT(1739), + [3835] = {.count = 1, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), + [3837] = {.count = 1, .reusable = false}, REDUCE(sym_template_parameter_list, 4), + [3839] = {.count = 1, .reusable = true}, REDUCE(sym_template_parameter_list, 4), + [3841] = {.count = 2, .reusable = true}, REDUCE(aux_sym_template_parameter_list_repeat1, 2), SHIFT_REPEAT(618), + [3844] = {.count = 1, .reusable = true}, SHIFT(1740), + [3846] = {.count = 1, .reusable = false}, SHIFT(1741), + [3848] = {.count = 1, .reusable = true}, SHIFT(1741), + [3850] = {.count = 1, .reusable = false}, SHIFT(1744), + [3852] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(625), + [3855] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1156), + [3858] = {.count = 1, .reusable = true}, SHIFT(1748), + [3860] = {.count = 1, .reusable = true}, SHIFT(1749), + [3862] = {.count = 1, .reusable = true}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 4), + [3864] = {.count = 1, .reusable = false}, REDUCE(sym_alias_declaration, 5, .alias_sequence_id = 4), + [3866] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1165), + [3869] = {.count = 1, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), + [3871] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declarator, 4), + [3873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_structured_binding_declarator_repeat1, 2), SHIFT_REPEAT(643), + [3876] = {.count = 1, .reusable = false}, SHIFT(1751), + [3878] = {.count = 1, .reusable = true}, SHIFT(1752), + [3880] = {.count = 1, .reusable = false}, SHIFT(1752), + [3882] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [3884] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 3, .dynamic_precedence = 1), + [3886] = {.count = 1, .reusable = true}, SHIFT(1754), + [3888] = {.count = 1, .reusable = false}, SHIFT(1756), + [3890] = {.count = 1, .reusable = true}, SHIFT(1757), + [3892] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 3), + [3894] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 3), + [3896] = {.count = 1, .reusable = true}, SHIFT(1758), + [3898] = {.count = 1, .reusable = true}, REDUCE(sym_field_designator, 2, .alias_sequence_id = 29), + [3900] = {.count = 1, .reusable = true}, SHIFT(1760), + [3902] = {.count = 1, .reusable = true}, SHIFT(1762), + [3904] = {.count = 1, .reusable = true}, SHIFT(1761), + [3906] = {.count = 1, .reusable = false}, SHIFT(1762), + [3908] = {.count = 1, .reusable = true}, SHIFT(1763), + [3910] = {.count = 1, .reusable = true}, SHIFT(1765), + [3912] = {.count = 1, .reusable = true}, SHIFT(1764), + [3914] = {.count = 1, .reusable = false}, SHIFT(1765), + [3916] = {.count = 1, .reusable = true}, SHIFT(1767), + [3918] = {.count = 1, .reusable = false}, SHIFT(1767), + [3920] = {.count = 1, .reusable = true}, SHIFT(1768), + [3922] = {.count = 1, .reusable = false}, SHIFT(1768), + [3924] = {.count = 1, .reusable = true}, SHIFT(1769), + [3926] = {.count = 1, .reusable = false}, SHIFT(1769), + [3928] = {.count = 1, .reusable = true}, SHIFT(1770), + [3930] = {.count = 1, .reusable = false}, SHIFT(1770), + [3932] = {.count = 1, .reusable = true}, SHIFT(1771), + [3934] = {.count = 1, .reusable = false}, SHIFT(1771), + [3936] = {.count = 1, .reusable = true}, SHIFT(1772), + [3938] = {.count = 1, .reusable = false}, SHIFT(1772), + [3940] = {.count = 1, .reusable = true}, SHIFT(1773), + [3942] = {.count = 1, .reusable = false}, SHIFT(1773), + [3944] = {.count = 1, .reusable = true}, SHIFT(1774), + [3946] = {.count = 1, .reusable = false}, SHIFT(1774), + [3948] = {.count = 1, .reusable = true}, SHIFT(1775), + [3950] = {.count = 1, .reusable = false}, SHIFT(1775), + [3952] = {.count = 1, .reusable = true}, SHIFT(1776), + [3954] = {.count = 1, .reusable = false}, SHIFT(1776), [3956] = {.count = 1, .reusable = true}, SHIFT(1777), [3958] = {.count = 1, .reusable = false}, SHIFT(1777), [3960] = {.count = 1, .reusable = true}, SHIFT(1778), - [3962] = {.count = 1, .reusable = false}, SHIFT(1778), - [3964] = {.count = 1, .reusable = true}, SHIFT(1779), - [3966] = {.count = 1, .reusable = false}, SHIFT(1779), - [3968] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1202), - [3971] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), - [3973] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(665), - [3976] = {.count = 1, .reusable = true}, SHIFT(1784), - [3978] = {.count = 1, .reusable = false}, SHIFT(1785), - [3980] = {.count = 1, .reusable = true}, SHIFT(1785), - [3982] = {.count = 1, .reusable = false}, SHIFT(1788), - [3984] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(675), - [3987] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1211), - [3990] = {.count = 1, .reusable = true}, SHIFT(1789), - [3992] = {.count = 1, .reusable = true}, SHIFT(1791), - [3994] = {.count = 1, .reusable = true}, SHIFT(1793), + [3962] = {.count = 1, .reusable = true}, SHIFT(1780), + [3964] = {.count = 1, .reusable = false}, SHIFT(1780), + [3966] = {.count = 1, .reusable = true}, SHIFT(1781), + [3968] = {.count = 1, .reusable = false}, SHIFT(1781), + [3970] = {.count = 1, .reusable = true}, SHIFT(1782), + [3972] = {.count = 1, .reusable = false}, SHIFT(1782), + [3974] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(1203), + [3977] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), + [3979] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_pair_repeat1, 2), SHIFT_REPEAT(665), + [3982] = {.count = 1, .reusable = true}, SHIFT(1787), + [3984] = {.count = 1, .reusable = false}, SHIFT(1788), + [3986] = {.count = 1, .reusable = true}, SHIFT(1788), + [3988] = {.count = 1, .reusable = false}, SHIFT(1791), + [3990] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(675), + [3993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1212), [3996] = {.count = 1, .reusable = true}, SHIFT(1792), - [3998] = {.count = 1, .reusable = false}, SHIFT(1793), - [4000] = {.count = 1, .reusable = true}, SHIFT(1794), + [3998] = {.count = 1, .reusable = true}, SHIFT(1794), + [4000] = {.count = 1, .reusable = true}, SHIFT(1796), [4002] = {.count = 1, .reusable = true}, SHIFT(1795), - [4004] = {.count = 1, .reusable = false}, SHIFT(1795), - [4006] = {.count = 1, .reusable = true}, SHIFT(1796), - [4008] = {.count = 1, .reusable = false}, SHIFT(1796), - [4010] = {.count = 1, .reusable = true}, SHIFT(1797), - [4012] = {.count = 1, .reusable = false}, SHIFT(1797), - [4014] = {.count = 1, .reusable = true}, SHIFT(1798), - [4016] = {.count = 1, .reusable = false}, SHIFT(1798), - [4018] = {.count = 1, .reusable = true}, SHIFT(1799), - [4020] = {.count = 1, .reusable = false}, SHIFT(1799), - [4022] = {.count = 1, .reusable = true}, SHIFT(1800), - [4024] = {.count = 1, .reusable = false}, SHIFT(1800), - [4026] = {.count = 1, .reusable = true}, SHIFT(1801), - [4028] = {.count = 1, .reusable = false}, SHIFT(1801), - [4030] = {.count = 1, .reusable = true}, SHIFT(1802), - [4032] = {.count = 1, .reusable = false}, SHIFT(1802), - [4034] = {.count = 1, .reusable = true}, SHIFT(1803), - [4036] = {.count = 1, .reusable = false}, SHIFT(1803), - [4038] = {.count = 1, .reusable = true}, SHIFT(1804), - [4040] = {.count = 1, .reusable = false}, SHIFT(1804), - [4042] = {.count = 1, .reusable = true}, SHIFT(1805), - [4044] = {.count = 1, .reusable = false}, SHIFT(1805), - [4046] = {.count = 1, .reusable = true}, SHIFT(1806), + [4004] = {.count = 1, .reusable = false}, SHIFT(1796), + [4006] = {.count = 1, .reusable = true}, SHIFT(1797), + [4008] = {.count = 1, .reusable = true}, SHIFT(1798), + [4010] = {.count = 1, .reusable = false}, SHIFT(1798), + [4012] = {.count = 1, .reusable = true}, SHIFT(1799), + [4014] = {.count = 1, .reusable = false}, SHIFT(1799), + [4016] = {.count = 1, .reusable = true}, SHIFT(1800), + [4018] = {.count = 1, .reusable = false}, SHIFT(1800), + [4020] = {.count = 1, .reusable = true}, SHIFT(1801), + [4022] = {.count = 1, .reusable = false}, SHIFT(1801), + [4024] = {.count = 1, .reusable = true}, SHIFT(1802), + [4026] = {.count = 1, .reusable = false}, SHIFT(1802), + [4028] = {.count = 1, .reusable = true}, SHIFT(1803), + [4030] = {.count = 1, .reusable = false}, SHIFT(1803), + [4032] = {.count = 1, .reusable = true}, SHIFT(1804), + [4034] = {.count = 1, .reusable = false}, SHIFT(1804), + [4036] = {.count = 1, .reusable = true}, SHIFT(1805), + [4038] = {.count = 1, .reusable = false}, SHIFT(1805), + [4040] = {.count = 1, .reusable = true}, SHIFT(1806), + [4042] = {.count = 1, .reusable = false}, SHIFT(1806), + [4044] = {.count = 1, .reusable = true}, SHIFT(1807), + [4046] = {.count = 1, .reusable = false}, SHIFT(1807), [4048] = {.count = 1, .reusable = true}, SHIFT(1808), - [4050] = {.count = 1, .reusable = true}, SHIFT(1810), + [4050] = {.count = 1, .reusable = false}, SHIFT(1808), [4052] = {.count = 1, .reusable = true}, SHIFT(1809), - [4054] = {.count = 1, .reusable = false}, SHIFT(1810), - [4056] = {.count = 1, .reusable = true}, SHIFT(1811), - [4058] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 5, .alias_sequence_id = 28), - [4060] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 5, .alias_sequence_id = 28), - [4062] = {.count = 1, .reusable = true}, SHIFT(1812), - [4064] = {.count = 1, .reusable = false}, SHIFT(1812), - [4066] = {.count = 1, .reusable = true}, SHIFT(1813), - [4068] = {.count = 1, .reusable = false}, SHIFT(1813), - [4070] = {.count = 1, .reusable = true}, SHIFT(1814), - [4072] = {.count = 1, .reusable = false}, SHIFT(1814), - [4074] = {.count = 1, .reusable = true}, SHIFT(1815), - [4076] = {.count = 1, .reusable = false}, SHIFT(1815), - [4078] = {.count = 1, .reusable = true}, SHIFT(1816), - [4080] = {.count = 1, .reusable = false}, SHIFT(1816), - [4082] = {.count = 1, .reusable = true}, SHIFT(1817), - [4084] = {.count = 1, .reusable = false}, SHIFT(1817), - [4086] = {.count = 1, .reusable = true}, SHIFT(1818), - [4088] = {.count = 1, .reusable = false}, SHIFT(1818), - [4090] = {.count = 1, .reusable = true}, SHIFT(1819), - [4092] = {.count = 1, .reusable = false}, SHIFT(1819), - [4094] = {.count = 1, .reusable = true}, SHIFT(1820), - [4096] = {.count = 1, .reusable = false}, SHIFT(1820), - [4098] = {.count = 1, .reusable = true}, SHIFT(1821), - [4100] = {.count = 1, .reusable = false}, SHIFT(1821), - [4102] = {.count = 1, .reusable = true}, SHIFT(1822), - [4104] = {.count = 1, .reusable = false}, SHIFT(1822), - [4106] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 5), - [4108] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 5), - [4110] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [4112] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), - [4114] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), - [4116] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(706), - [4119] = {.count = 1, .reusable = true}, SHIFT(1823), - [4121] = {.count = 1, .reusable = false}, SHIFT(1823), - [4123] = {.count = 1, .reusable = true}, SHIFT(1824), - [4125] = {.count = 1, .reusable = true}, SHIFT(1825), - [4127] = {.count = 1, .reusable = true}, SHIFT(1826), - [4129] = {.count = 1, .reusable = false}, SHIFT(1829), - [4131] = {.count = 1, .reusable = false}, SHIFT(1828), - [4133] = {.count = 1, .reusable = false}, SHIFT(1827), - [4135] = {.count = 1, .reusable = true}, SHIFT(1830), - [4137] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), - [4139] = {.count = 1, .reusable = true}, SHIFT(1831), - [4141] = {.count = 1, .reusable = false}, SHIFT(1831), - [4143] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1270), - [4146] = {.count = 1, .reusable = true}, SHIFT(1834), - [4148] = {.count = 1, .reusable = true}, SHIFT(1836), - [4150] = {.count = 1, .reusable = true}, SHIFT(1838), + [4054] = {.count = 1, .reusable = true}, SHIFT(1811), + [4056] = {.count = 1, .reusable = true}, SHIFT(1813), + [4058] = {.count = 1, .reusable = true}, SHIFT(1812), + [4060] = {.count = 1, .reusable = false}, SHIFT(1813), + [4062] = {.count = 1, .reusable = true}, SHIFT(1814), + [4064] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 5, .alias_sequence_id = 28), + [4066] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 5, .alias_sequence_id = 28), + [4068] = {.count = 1, .reusable = true}, SHIFT(1815), + [4070] = {.count = 1, .reusable = false}, SHIFT(1815), + [4072] = {.count = 1, .reusable = true}, SHIFT(1816), + [4074] = {.count = 1, .reusable = false}, SHIFT(1816), + [4076] = {.count = 1, .reusable = true}, SHIFT(1817), + [4078] = {.count = 1, .reusable = false}, SHIFT(1817), + [4080] = {.count = 1, .reusable = true}, SHIFT(1818), + [4082] = {.count = 1, .reusable = false}, SHIFT(1818), + [4084] = {.count = 1, .reusable = true}, SHIFT(1819), + [4086] = {.count = 1, .reusable = false}, SHIFT(1819), + [4088] = {.count = 1, .reusable = true}, SHIFT(1820), + [4090] = {.count = 1, .reusable = false}, SHIFT(1820), + [4092] = {.count = 1, .reusable = true}, SHIFT(1821), + [4094] = {.count = 1, .reusable = false}, SHIFT(1821), + [4096] = {.count = 1, .reusable = true}, SHIFT(1822), + [4098] = {.count = 1, .reusable = false}, SHIFT(1822), + [4100] = {.count = 1, .reusable = true}, SHIFT(1823), + [4102] = {.count = 1, .reusable = false}, SHIFT(1823), + [4104] = {.count = 1, .reusable = true}, SHIFT(1824), + [4106] = {.count = 1, .reusable = false}, SHIFT(1824), + [4108] = {.count = 1, .reusable = true}, SHIFT(1825), + [4110] = {.count = 1, .reusable = false}, SHIFT(1825), + [4112] = {.count = 1, .reusable = true}, REDUCE(sym_structured_binding_declaration, 5), + [4114] = {.count = 1, .reusable = false}, REDUCE(sym_structured_binding_declaration, 5), + [4116] = {.count = 1, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [4118] = {.count = 1, .reusable = true}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), + [4120] = {.count = 1, .reusable = false}, REDUCE(sym_parameter_list, 4, .dynamic_precedence = 1), + [4122] = {.count = 2, .reusable = true}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(706), + [4125] = {.count = 1, .reusable = true}, SHIFT(1826), + [4127] = {.count = 1, .reusable = false}, SHIFT(1826), + [4129] = {.count = 1, .reusable = true}, SHIFT(1827), + [4131] = {.count = 1, .reusable = true}, SHIFT(1828), + [4133] = {.count = 1, .reusable = true}, SHIFT(1829), + [4135] = {.count = 1, .reusable = false}, SHIFT(1832), + [4137] = {.count = 1, .reusable = false}, SHIFT(1831), + [4139] = {.count = 1, .reusable = false}, SHIFT(1830), + [4141] = {.count = 1, .reusable = true}, SHIFT(1833), + [4143] = {.count = 1, .reusable = false}, REDUCE(sym_parenthesized_expression, 3), + [4145] = {.count = 1, .reusable = true}, SHIFT(1834), + [4147] = {.count = 1, .reusable = false}, SHIFT(1834), + [4149] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1271), [4152] = {.count = 1, .reusable = true}, SHIFT(1837), - [4154] = {.count = 1, .reusable = false}, SHIFT(1838), - [4156] = {.count = 1, .reusable = true}, SHIFT(1839), + [4154] = {.count = 1, .reusable = true}, SHIFT(1839), + [4156] = {.count = 1, .reusable = true}, SHIFT(1841), [4158] = {.count = 1, .reusable = true}, SHIFT(1840), - [4160] = {.count = 1, .reusable = false}, SHIFT(1840), - [4162] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 3), - [4164] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 3), - [4166] = {.count = 1, .reusable = true}, SHIFT(1841), - [4168] = {.count = 1, .reusable = false}, SHIFT(1841), - [4170] = {.count = 1, .reusable = true}, SHIFT(1842), - [4172] = {.count = 1, .reusable = false}, SHIFT(1842), - [4174] = {.count = 1, .reusable = true}, SHIFT(1843), - [4176] = {.count = 1, .reusable = false}, SHIFT(1843), - [4178] = {.count = 1, .reusable = true}, SHIFT(1844), - [4180] = {.count = 1, .reusable = false}, SHIFT(1844), - [4182] = {.count = 1, .reusable = true}, SHIFT(1845), - [4184] = {.count = 1, .reusable = false}, SHIFT(1845), - [4186] = {.count = 1, .reusable = true}, SHIFT(1846), - [4188] = {.count = 1, .reusable = false}, SHIFT(1846), - [4190] = {.count = 1, .reusable = true}, SHIFT(1847), - [4192] = {.count = 1, .reusable = false}, SHIFT(1847), - [4194] = {.count = 1, .reusable = true}, SHIFT(1848), - [4196] = {.count = 1, .reusable = false}, SHIFT(1848), - [4198] = {.count = 1, .reusable = true}, SHIFT(1849), - [4200] = {.count = 1, .reusable = false}, SHIFT(1849), - [4202] = {.count = 1, .reusable = true}, SHIFT(1850), - [4204] = {.count = 1, .reusable = false}, SHIFT(1850), - [4206] = {.count = 1, .reusable = true}, SHIFT(1851), - [4208] = {.count = 1, .reusable = false}, SHIFT(1851), - [4210] = {.count = 1, .reusable = true}, SHIFT(1852), + [4160] = {.count = 1, .reusable = false}, SHIFT(1841), + [4162] = {.count = 1, .reusable = true}, SHIFT(1842), + [4164] = {.count = 1, .reusable = true}, SHIFT(1843), + [4166] = {.count = 1, .reusable = false}, SHIFT(1843), + [4168] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 3), + [4170] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 3), + [4172] = {.count = 1, .reusable = true}, SHIFT(1844), + [4174] = {.count = 1, .reusable = false}, SHIFT(1844), + [4176] = {.count = 1, .reusable = true}, SHIFT(1845), + [4178] = {.count = 1, .reusable = false}, SHIFT(1845), + [4180] = {.count = 1, .reusable = true}, SHIFT(1846), + [4182] = {.count = 1, .reusable = false}, SHIFT(1846), + [4184] = {.count = 1, .reusable = true}, SHIFT(1847), + [4186] = {.count = 1, .reusable = false}, SHIFT(1847), + [4188] = {.count = 1, .reusable = true}, SHIFT(1848), + [4190] = {.count = 1, .reusable = false}, SHIFT(1848), + [4192] = {.count = 1, .reusable = true}, SHIFT(1849), + [4194] = {.count = 1, .reusable = false}, SHIFT(1849), + [4196] = {.count = 1, .reusable = true}, SHIFT(1850), + [4198] = {.count = 1, .reusable = false}, SHIFT(1850), + [4200] = {.count = 1, .reusable = true}, SHIFT(1851), + [4202] = {.count = 1, .reusable = false}, SHIFT(1851), + [4204] = {.count = 1, .reusable = true}, SHIFT(1852), + [4206] = {.count = 1, .reusable = false}, SHIFT(1852), + [4208] = {.count = 1, .reusable = true}, SHIFT(1853), + [4210] = {.count = 1, .reusable = false}, SHIFT(1853), [4212] = {.count = 1, .reusable = true}, SHIFT(1854), - [4214] = {.count = 1, .reusable = true}, SHIFT(1855), - [4216] = {.count = 1, .reusable = true}, SHIFT(1857), - [4218] = {.count = 1, .reusable = true}, SHIFT(1858), - [4220] = {.count = 1, .reusable = true}, SHIFT(1860), - [4222] = {.count = 1, .reusable = true}, SHIFT(1862), - [4224] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4226] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), - [4228] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1308), - [4231] = {.count = 1, .reusable = true}, SHIFT(1863), - [4233] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 17), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 18), - [4236] = {.count = 1, .reusable = true}, SHIFT(1866), - [4238] = {.count = 1, .reusable = false}, SHIFT(1866), - [4240] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3, .alias_sequence_id = 4), - [4242] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3, .alias_sequence_id = 4), - [4244] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3), - [4246] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3), - [4248] = {.count = 1, .reusable = false}, REDUCE(sym_destructor_name, 2), - [4250] = {.count = 1, .reusable = true}, SHIFT(1872), - [4252] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 3), - [4254] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 3), - [4256] = {.count = 1, .reusable = true}, SHIFT(1873), - [4258] = {.count = 1, .reusable = false}, SHIFT(1873), - [4260] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), - [4262] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(784), - [4265] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(785), - [4268] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), - [4270] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), - [4272] = {.count = 1, .reusable = true}, SHIFT(1874), - [4274] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), - [4276] = {.count = 1, .reusable = true}, SHIFT(1875), - [4278] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), - [4280] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), - [4282] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), - [4284] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), - [4286] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), - [4288] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), - [4290] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), - [4292] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), - [4294] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), - [4296] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), - [4298] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), - [4300] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), - [4302] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), SHIFT(810), - [4305] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3), - [4307] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3), - [4309] = {.count = 1, .reusable = true}, SHIFT(810), - [4311] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), - [4314] = {.count = 1, .reusable = true}, SHIFT(1877), - [4316] = {.count = 1, .reusable = true}, SHIFT(1878), - [4318] = {.count = 1, .reusable = true}, SHIFT(1879), - [4320] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_expression, 3), - [4322] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_expression, 3), - [4324] = {.count = 1, .reusable = false}, SHIFT(1886), - [4326] = {.count = 1, .reusable = false}, SHIFT(1885), - [4328] = {.count = 1, .reusable = false}, SHIFT(1880), - [4330] = {.count = 1, .reusable = false}, SHIFT(1881), - [4332] = {.count = 1, .reusable = false}, SHIFT(1882), + [4214] = {.count = 1, .reusable = false}, SHIFT(1854), + [4216] = {.count = 1, .reusable = true}, SHIFT(1855), + [4218] = {.count = 1, .reusable = true}, SHIFT(1857), + [4220] = {.count = 1, .reusable = true}, SHIFT(1858), + [4222] = {.count = 1, .reusable = true}, SHIFT(1860), + [4224] = {.count = 1, .reusable = true}, SHIFT(1861), + [4226] = {.count = 1, .reusable = true}, SHIFT(1863), + [4228] = {.count = 1, .reusable = true}, SHIFT(1865), + [4230] = {.count = 1, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4232] = {.count = 1, .reusable = false}, REDUCE(aux_sym_concatenated_string_repeat1, 2), + [4234] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1309), + [4237] = {.count = 1, .reusable = true}, SHIFT(1866), + [4239] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3, .alias_sequence_id = 17), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 18), + [4242] = {.count = 1, .reusable = true}, SHIFT(1869), + [4244] = {.count = 1, .reusable = false}, SHIFT(1869), + [4246] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3, .alias_sequence_id = 4), + [4248] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3, .alias_sequence_id = 4), + [4250] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 3), + [4252] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 3), + [4254] = {.count = 1, .reusable = false}, REDUCE(sym_destructor_name, 2), + [4256] = {.count = 1, .reusable = true}, SHIFT(1875), + [4258] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 3), + [4260] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 3), + [4262] = {.count = 1, .reusable = true}, SHIFT(1876), + [4264] = {.count = 1, .reusable = false}, SHIFT(1876), + [4266] = {.count = 1, .reusable = true}, REDUCE(sym_array_declarator, 5), + [4268] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(784), + [4271] = {.count = 2, .reusable = false}, REDUCE(aux_sym__declaration_specifiers_repeat1, 2), SHIFT_REPEAT(785), + [4274] = {.count = 1, .reusable = true}, REDUCE(sym_math_expression, 3), + [4276] = {.count = 1, .reusable = false}, REDUCE(sym_math_expression, 3), + [4278] = {.count = 1, .reusable = true}, SHIFT(1877), + [4280] = {.count = 1, .reusable = true}, REDUCE(sym_assignment_expression, 3), + [4282] = {.count = 1, .reusable = true}, SHIFT(1878), + [4284] = {.count = 1, .reusable = true}, REDUCE(sym_bitwise_expression, 3), + [4286] = {.count = 1, .reusable = false}, REDUCE(sym_bitwise_expression, 3), + [4288] = {.count = 1, .reusable = true}, REDUCE(sym_logical_expression, 3), + [4290] = {.count = 1, .reusable = false}, REDUCE(sym_logical_expression, 3), + [4292] = {.count = 1, .reusable = true}, REDUCE(sym_equality_expression, 3), + [4294] = {.count = 1, .reusable = false}, REDUCE(sym_equality_expression, 3), + [4296] = {.count = 1, .reusable = true}, REDUCE(sym_relational_expression, 3), + [4298] = {.count = 1, .reusable = false}, REDUCE(sym_relational_expression, 3), + [4300] = {.count = 1, .reusable = true}, REDUCE(sym_shift_expression, 3), + [4302] = {.count = 1, .reusable = false}, REDUCE(sym_shift_expression, 3), + [4304] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), + [4306] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), + [4308] = {.count = 2, .reusable = false}, REDUCE(sym_field_expression, 3, .alias_sequence_id = 33), SHIFT(810), + [4311] = {.count = 1, .reusable = true}, REDUCE(sym_field_expression, 3), + [4313] = {.count = 1, .reusable = false}, REDUCE(sym_field_expression, 3), + [4315] = {.count = 1, .reusable = true}, SHIFT(810), + [4317] = {.count = 2, .reusable = false}, REDUCE(sym_scoped_identifier, 3), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), + [4320] = {.count = 1, .reusable = true}, SHIFT(1880), + [4322] = {.count = 1, .reusable = true}, SHIFT(1881), + [4324] = {.count = 1, .reusable = true}, SHIFT(1882), + [4326] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_expression, 3), + [4328] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_expression, 3), + [4330] = {.count = 1, .reusable = false}, SHIFT(1889), + [4332] = {.count = 1, .reusable = false}, SHIFT(1888), [4334] = {.count = 1, .reusable = false}, SHIFT(1883), [4336] = {.count = 1, .reusable = false}, SHIFT(1884), - [4338] = {.count = 1, .reusable = true}, SHIFT(1887), - [4340] = {.count = 1, .reusable = true}, SHIFT(1888), - [4342] = {.count = 1, .reusable = true}, SHIFT(1890), - [4344] = {.count = 1, .reusable = true}, SHIFT(1892), - [4346] = {.count = 1, .reusable = true}, SHIFT(1893), - [4348] = {.count = 1, .reusable = true}, SHIFT(1896), - [4350] = {.count = 1, .reusable = true}, SHIFT(1902), - [4352] = {.count = 1, .reusable = true}, SHIFT(1904), - [4354] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 1), - [4356] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 1), - [4358] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 3), - [4360] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 3), - [4362] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 1), - [4364] = {.count = 1, .reusable = true}, SHIFT(1911), - [4366] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1384), - [4369] = {.count = 1, .reusable = false}, SHIFT(1912), - [4371] = {.count = 1, .reusable = false}, SHIFT(1913), - [4373] = {.count = 1, .reusable = false}, SHIFT(1914), - [4375] = {.count = 1, .reusable = true}, SHIFT(1915), - [4377] = {.count = 1, .reusable = true}, SHIFT(1916), + [4338] = {.count = 1, .reusable = false}, SHIFT(1885), + [4340] = {.count = 1, .reusable = false}, SHIFT(1886), + [4342] = {.count = 1, .reusable = false}, SHIFT(1887), + [4344] = {.count = 1, .reusable = true}, SHIFT(1890), + [4346] = {.count = 1, .reusable = true}, SHIFT(1891), + [4348] = {.count = 1, .reusable = true}, SHIFT(1893), + [4350] = {.count = 1, .reusable = true}, SHIFT(1895), + [4352] = {.count = 1, .reusable = true}, SHIFT(1896), + [4354] = {.count = 1, .reusable = true}, SHIFT(1899), + [4356] = {.count = 1, .reusable = true}, SHIFT(1905), + [4358] = {.count = 1, .reusable = true}, SHIFT(1907), + [4360] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 1), + [4362] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 1), + [4364] = {.count = 1, .reusable = true}, REDUCE(sym_trailing_return_type, 3), + [4366] = {.count = 1, .reusable = false}, REDUCE(sym_trailing_return_type, 3), + [4368] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 1), + [4370] = {.count = 1, .reusable = true}, SHIFT(1914), + [4372] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1385), + [4375] = {.count = 1, .reusable = false}, SHIFT(1915), + [4377] = {.count = 1, .reusable = false}, SHIFT(1916), [4379] = {.count = 1, .reusable = false}, SHIFT(1917), - [4381] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 7), - [4383] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 7), - [4385] = {.count = 1, .reusable = true}, SHIFT(1918), - [4387] = {.count = 1, .reusable = true}, SHIFT(1919), - [4389] = {.count = 1, .reusable = true}, SHIFT(1944), - [4391] = {.count = 1, .reusable = false}, SHIFT(1920), - [4393] = {.count = 1, .reusable = false}, SHIFT(1921), - [4395] = {.count = 1, .reusable = false}, SHIFT(1922), - [4397] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 8), - [4399] = {.count = 1, .reusable = false}, SHIFT(1923), - [4401] = {.count = 1, .reusable = false}, SHIFT(1924), - [4403] = {.count = 1, .reusable = false}, SHIFT(1925), - [4405] = {.count = 1, .reusable = true}, SHIFT(1926), + [4381] = {.count = 1, .reusable = true}, SHIFT(1918), + [4383] = {.count = 1, .reusable = true}, SHIFT(1919), + [4385] = {.count = 1, .reusable = false}, SHIFT(1920), + [4387] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 7), + [4389] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 3, .alias_sequence_id = 7), + [4391] = {.count = 1, .reusable = true}, SHIFT(1921), + [4393] = {.count = 1, .reusable = true}, SHIFT(1922), + [4395] = {.count = 1, .reusable = true}, SHIFT(1947), + [4397] = {.count = 1, .reusable = false}, SHIFT(1923), + [4399] = {.count = 1, .reusable = false}, SHIFT(1924), + [4401] = {.count = 1, .reusable = false}, SHIFT(1925), + [4403] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 1, .alias_sequence_id = 8), + [4405] = {.count = 1, .reusable = false}, SHIFT(1926), [4407] = {.count = 1, .reusable = false}, SHIFT(1927), - [4409] = {.count = 1, .reusable = true}, SHIFT(1928), - [4411] = {.count = 1, .reusable = false}, SHIFT(1929), + [4409] = {.count = 1, .reusable = false}, SHIFT(1928), + [4411] = {.count = 1, .reusable = true}, SHIFT(1929), [4413] = {.count = 1, .reusable = false}, SHIFT(1930), - [4415] = {.count = 1, .reusable = false}, SHIFT(1931), + [4415] = {.count = 1, .reusable = true}, SHIFT(1931), [4417] = {.count = 1, .reusable = false}, SHIFT(1932), [4419] = {.count = 1, .reusable = false}, SHIFT(1933), [4421] = {.count = 1, .reusable = false}, SHIFT(1934), @@ -132372,1386 +135363,1438 @@ static TSParseActionEntry ts_parse_actions[] = { [4427] = {.count = 1, .reusable = false}, SHIFT(1937), [4429] = {.count = 1, .reusable = false}, SHIFT(1938), [4431] = {.count = 1, .reusable = false}, SHIFT(1939), - [4433] = {.count = 1, .reusable = false}, SHIFT(1944), - [4435] = {.count = 1, .reusable = false}, SHIFT(1940), - [4437] = {.count = 1, .reusable = false}, SHIFT(1947), - [4439] = {.count = 1, .reusable = false}, SHIFT(1948), - [4441] = {.count = 1, .reusable = false}, SHIFT(1949), + [4433] = {.count = 1, .reusable = false}, SHIFT(1940), + [4435] = {.count = 1, .reusable = false}, SHIFT(1941), + [4437] = {.count = 1, .reusable = false}, SHIFT(1942), + [4439] = {.count = 1, .reusable = false}, SHIFT(1947), + [4441] = {.count = 1, .reusable = false}, SHIFT(1943), [4443] = {.count = 1, .reusable = false}, SHIFT(1950), - [4445] = {.count = 1, .reusable = true}, SHIFT(1952), - [4447] = {.count = 1, .reusable = true}, SHIFT(1954), - [4449] = {.count = 1, .reusable = true}, SHIFT(1955), - [4451] = {.count = 1, .reusable = true}, SHIFT(1956), - [4453] = {.count = 1, .reusable = false}, SHIFT(1956), - [4455] = {.count = 1, .reusable = true}, SHIFT(1957), - [4457] = {.count = 1, .reusable = true}, SHIFT(1958), + [4445] = {.count = 1, .reusable = false}, SHIFT(1951), + [4447] = {.count = 1, .reusable = false}, SHIFT(1952), + [4449] = {.count = 1, .reusable = false}, SHIFT(1953), + [4451] = {.count = 1, .reusable = true}, SHIFT(1955), + [4453] = {.count = 1, .reusable = true}, SHIFT(1957), + [4455] = {.count = 1, .reusable = true}, SHIFT(1958), + [4457] = {.count = 1, .reusable = true}, SHIFT(1959), [4459] = {.count = 1, .reusable = true}, SHIFT(1960), - [4461] = {.count = 1, .reusable = true}, SHIFT(1962), + [4461] = {.count = 1, .reusable = false}, SHIFT(1960), [4463] = {.count = 1, .reusable = true}, SHIFT(1961), - [4465] = {.count = 1, .reusable = false}, SHIFT(1962), + [4465] = {.count = 1, .reusable = true}, SHIFT(1962), [4467] = {.count = 1, .reusable = true}, SHIFT(1964), - [4469] = {.count = 1, .reusable = true}, SHIFT(1965), - [4471] = {.count = 1, .reusable = true}, SHIFT(1966), - [4473] = {.count = 1, .reusable = false}, SHIFT(1967), + [4469] = {.count = 1, .reusable = true}, SHIFT(1966), + [4471] = {.count = 1, .reusable = true}, SHIFT(1965), + [4473] = {.count = 1, .reusable = false}, SHIFT(1966), [4475] = {.count = 1, .reusable = true}, SHIFT(1968), [4477] = {.count = 1, .reusable = true}, SHIFT(1969), [4479] = {.count = 1, .reusable = true}, SHIFT(1970), - [4481] = {.count = 1, .reusable = true}, SHIFT(1971), - [4483] = {.count = 1, .reusable = true}, SHIFT(1975), - [4485] = {.count = 1, .reusable = false}, SHIFT(1976), - [4487] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 9), - [4489] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 9), - [4491] = {.count = 1, .reusable = true}, SHIFT(1980), - [4493] = {.count = 1, .reusable = true}, SHIFT(1981), - [4495] = {.count = 1, .reusable = false}, SHIFT(1982), - [4497] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 10), - [4499] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 10), + [4481] = {.count = 1, .reusable = false}, SHIFT(1971), + [4483] = {.count = 1, .reusable = true}, SHIFT(1972), + [4485] = {.count = 1, .reusable = true}, SHIFT(1973), + [4487] = {.count = 1, .reusable = true}, SHIFT(1974), + [4489] = {.count = 1, .reusable = true}, SHIFT(1975), + [4491] = {.count = 1, .reusable = true}, SHIFT(1979), + [4493] = {.count = 1, .reusable = false}, SHIFT(1980), + [4495] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 9), + [4497] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 9), + [4499] = {.count = 1, .reusable = true}, SHIFT(1984), [4501] = {.count = 1, .reusable = true}, SHIFT(1985), - [4503] = {.count = 1, .reusable = true}, SHIFT(1986), - [4505] = {.count = 1, .reusable = false}, SHIFT(1987), - [4507] = {.count = 1, .reusable = true}, SHIFT(1990), - [4509] = {.count = 1, .reusable = true}, SHIFT(1991), - [4511] = {.count = 1, .reusable = true}, SHIFT(1995), - [4513] = {.count = 1, .reusable = true}, SHIFT(1994), - [4515] = {.count = 1, .reusable = false}, SHIFT(1995), - [4517] = {.count = 1, .reusable = true}, SHIFT(1996), - [4519] = {.count = 1, .reusable = false}, SHIFT(1997), - [4521] = {.count = 1, .reusable = true}, SHIFT(1999), - [4523] = {.count = 1, .reusable = true}, SHIFT(1998), - [4525] = {.count = 1, .reusable = false}, SHIFT(1999), - [4527] = {.count = 1, .reusable = true}, SHIFT(2000), - [4529] = {.count = 1, .reusable = false}, SHIFT(2001), - [4531] = {.count = 1, .reusable = false}, SHIFT(2002), - [4533] = {.count = 1, .reusable = true}, SHIFT(2003), - [4535] = {.count = 1, .reusable = true}, SHIFT(2002), - [4537] = {.count = 1, .reusable = false}, SHIFT(2004), - [4539] = {.count = 1, .reusable = true}, SHIFT(2005), - [4541] = {.count = 1, .reusable = true}, SHIFT(2006), - [4543] = {.count = 1, .reusable = false}, SHIFT(2007), + [4503] = {.count = 1, .reusable = false}, SHIFT(1986), + [4505] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 10), + [4507] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 3, .alias_sequence_id = 10), + [4509] = {.count = 1, .reusable = true}, SHIFT(1989), + [4511] = {.count = 1, .reusable = true}, SHIFT(1990), + [4513] = {.count = 1, .reusable = false}, SHIFT(1991), + [4515] = {.count = 1, .reusable = true}, SHIFT(1994), + [4517] = {.count = 1, .reusable = true}, SHIFT(1995), + [4519] = {.count = 1, .reusable = true}, SHIFT(1999), + [4521] = {.count = 1, .reusable = true}, SHIFT(1998), + [4523] = {.count = 1, .reusable = false}, SHIFT(1999), + [4525] = {.count = 1, .reusable = true}, SHIFT(2000), + [4527] = {.count = 1, .reusable = false}, SHIFT(2001), + [4529] = {.count = 1, .reusable = true}, SHIFT(2003), + [4531] = {.count = 1, .reusable = true}, SHIFT(2002), + [4533] = {.count = 1, .reusable = false}, SHIFT(2003), + [4535] = {.count = 1, .reusable = true}, SHIFT(2004), + [4537] = {.count = 1, .reusable = false}, SHIFT(2005), + [4539] = {.count = 1, .reusable = false}, SHIFT(2006), + [4541] = {.count = 1, .reusable = true}, SHIFT(2007), + [4543] = {.count = 1, .reusable = true}, SHIFT(2006), [4545] = {.count = 1, .reusable = false}, SHIFT(2008), [4547] = {.count = 1, .reusable = true}, SHIFT(2009), - [4549] = {.count = 1, .reusable = false}, SHIFT(2010), - [4551] = {.count = 1, .reusable = true}, SHIFT(2010), - [4553] = {.count = 1, .reusable = false}, SHIFT(2011), - [4555] = {.count = 1, .reusable = false}, SHIFT(2012), - [4557] = {.count = 1, .reusable = true}, SHIFT(2013), + [4549] = {.count = 1, .reusable = true}, SHIFT(2010), + [4551] = {.count = 1, .reusable = false}, SHIFT(2011), + [4553] = {.count = 1, .reusable = false}, SHIFT(2012), + [4555] = {.count = 1, .reusable = true}, SHIFT(2013), + [4557] = {.count = 1, .reusable = false}, SHIFT(2014), [4559] = {.count = 1, .reusable = true}, SHIFT(2014), - [4561] = {.count = 1, .reusable = true}, SHIFT(2016), - [4563] = {.count = 1, .reusable = true}, SHIFT(2018), + [4561] = {.count = 1, .reusable = false}, SHIFT(2015), + [4563] = {.count = 1, .reusable = false}, SHIFT(2016), [4565] = {.count = 1, .reusable = true}, SHIFT(2017), - [4567] = {.count = 1, .reusable = false}, SHIFT(2018), - [4569] = {.count = 1, .reusable = true}, SHIFT(2019), - [4571] = {.count = 1, .reusable = true}, SHIFT(2020), - [4573] = {.count = 1, .reusable = false}, SHIFT(2020), - [4575] = {.count = 1, .reusable = true}, SHIFT(2021), - [4577] = {.count = 1, .reusable = false}, SHIFT(2021), - [4579] = {.count = 1, .reusable = true}, SHIFT(2023), - [4581] = {.count = 1, .reusable = false}, SHIFT(2023), - [4583] = {.count = 1, .reusable = true}, SHIFT(2024), - [4585] = {.count = 1, .reusable = false}, SHIFT(2024), - [4587] = {.count = 1, .reusable = true}, SHIFT(2025), - [4589] = {.count = 1, .reusable = false}, SHIFT(2025), - [4591] = {.count = 1, .reusable = true}, SHIFT(2026), - [4593] = {.count = 1, .reusable = false}, SHIFT(2026), - [4595] = {.count = 1, .reusable = true}, SHIFT(2027), - [4597] = {.count = 1, .reusable = false}, SHIFT(2027), - [4599] = {.count = 1, .reusable = true}, SHIFT(2028), - [4601] = {.count = 1, .reusable = false}, SHIFT(2028), - [4603] = {.count = 1, .reusable = true}, SHIFT(2029), - [4605] = {.count = 1, .reusable = false}, SHIFT(2029), - [4607] = {.count = 1, .reusable = true}, SHIFT(2030), - [4609] = {.count = 1, .reusable = false}, SHIFT(2030), - [4611] = {.count = 1, .reusable = true}, SHIFT(2031), - [4613] = {.count = 1, .reusable = false}, SHIFT(2031), - [4615] = {.count = 1, .reusable = true}, SHIFT(2032), - [4617] = {.count = 1, .reusable = false}, SHIFT(2032), - [4619] = {.count = 1, .reusable = true}, SHIFT(2033), + [4567] = {.count = 1, .reusable = false}, SHIFT(2017), + [4569] = {.count = 1, .reusable = true}, SHIFT(2018), + [4571] = {.count = 1, .reusable = true}, SHIFT(2019), + [4573] = {.count = 1, .reusable = true}, SHIFT(2021), + [4575] = {.count = 1, .reusable = true}, SHIFT(2023), + [4577] = {.count = 1, .reusable = true}, SHIFT(2022), + [4579] = {.count = 1, .reusable = false}, SHIFT(2023), + [4581] = {.count = 1, .reusable = true}, SHIFT(2024), + [4583] = {.count = 1, .reusable = true}, SHIFT(2025), + [4585] = {.count = 1, .reusable = false}, SHIFT(2025), + [4587] = {.count = 1, .reusable = true}, SHIFT(2026), + [4589] = {.count = 1, .reusable = false}, SHIFT(2026), + [4591] = {.count = 1, .reusable = true}, SHIFT(2028), + [4593] = {.count = 1, .reusable = false}, SHIFT(2028), + [4595] = {.count = 1, .reusable = true}, SHIFT(2029), + [4597] = {.count = 1, .reusable = false}, SHIFT(2029), + [4599] = {.count = 1, .reusable = true}, SHIFT(2030), + [4601] = {.count = 1, .reusable = false}, SHIFT(2030), + [4603] = {.count = 1, .reusable = true}, SHIFT(2031), + [4605] = {.count = 1, .reusable = false}, SHIFT(2031), + [4607] = {.count = 1, .reusable = true}, SHIFT(2032), + [4609] = {.count = 1, .reusable = false}, SHIFT(2032), + [4611] = {.count = 1, .reusable = true}, SHIFT(2033), + [4613] = {.count = 1, .reusable = false}, SHIFT(2033), + [4615] = {.count = 1, .reusable = true}, SHIFT(2034), + [4617] = {.count = 1, .reusable = false}, SHIFT(2034), + [4619] = {.count = 1, .reusable = true}, SHIFT(2035), [4621] = {.count = 1, .reusable = false}, SHIFT(2035), - [4623] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), - [4625] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), - [4627] = {.count = 1, .reusable = true}, SHIFT(2036), - [4629] = {.count = 1, .reusable = true}, SHIFT(2037), + [4623] = {.count = 1, .reusable = true}, SHIFT(2036), + [4625] = {.count = 1, .reusable = false}, SHIFT(2036), + [4627] = {.count = 1, .reusable = true}, SHIFT(2037), + [4629] = {.count = 1, .reusable = false}, SHIFT(2037), [4631] = {.count = 1, .reusable = true}, SHIFT(2038), - [4633] = {.count = 1, .reusable = true}, SHIFT(2039), - [4635] = {.count = 1, .reusable = false}, SHIFT(2039), - [4637] = {.count = 1, .reusable = true}, SHIFT(2040), - [4639] = {.count = 1, .reusable = false}, SHIFT(2040), - [4641] = {.count = 1, .reusable = true}, SHIFT(2041), - [4643] = {.count = 1, .reusable = false}, SHIFT(2042), - [4645] = {.count = 1, .reusable = false}, SHIFT(2043), - [4647] = {.count = 1, .reusable = true}, SHIFT(2046), - [4649] = {.count = 1, .reusable = false}, SHIFT(2046), - [4651] = {.count = 1, .reusable = true}, SHIFT(2047), - [4653] = {.count = 1, .reusable = true}, SHIFT(2049), - [4655] = {.count = 1, .reusable = true}, SHIFT(2048), - [4657] = {.count = 1, .reusable = false}, SHIFT(2049), - [4659] = {.count = 1, .reusable = true}, SHIFT(2051), + [4633] = {.count = 1, .reusable = false}, SHIFT(2040), + [4635] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 3), + [4637] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 3), + [4639] = {.count = 1, .reusable = true}, SHIFT(2041), + [4641] = {.count = 1, .reusable = true}, SHIFT(2042), + [4643] = {.count = 1, .reusable = true}, SHIFT(2043), + [4645] = {.count = 1, .reusable = true}, SHIFT(2044), + [4647] = {.count = 1, .reusable = false}, SHIFT(2044), + [4649] = {.count = 1, .reusable = true}, SHIFT(2045), + [4651] = {.count = 1, .reusable = true}, SHIFT(2046), + [4653] = {.count = 1, .reusable = false}, SHIFT(2046), + [4655] = {.count = 1, .reusable = true}, SHIFT(2047), + [4657] = {.count = 1, .reusable = false}, SHIFT(2048), + [4659] = {.count = 1, .reusable = false}, SHIFT(2049), [4661] = {.count = 1, .reusable = true}, SHIFT(2052), - [4663] = {.count = 1, .reusable = true}, SHIFT(2054), - [4665] = {.count = 1, .reusable = true}, SHIFT(2056), + [4663] = {.count = 1, .reusable = false}, SHIFT(2052), + [4665] = {.count = 1, .reusable = true}, SHIFT(2053), [4667] = {.count = 1, .reusable = true}, SHIFT(2055), - [4669] = {.count = 1, .reusable = false}, SHIFT(2056), - [4671] = {.count = 1, .reusable = true}, SHIFT(2057), - [4673] = {.count = 1, .reusable = false}, SHIFT(2058), + [4669] = {.count = 1, .reusable = true}, SHIFT(2054), + [4671] = {.count = 1, .reusable = false}, SHIFT(2055), + [4673] = {.count = 1, .reusable = true}, SHIFT(2057), [4675] = {.count = 1, .reusable = true}, SHIFT(2058), - [4677] = {.count = 1, .reusable = true}, SHIFT(2059), + [4677] = {.count = 1, .reusable = true}, SHIFT(2060), [4679] = {.count = 1, .reusable = true}, SHIFT(2062), - [4681] = {.count = 1, .reusable = true}, SHIFT(2063), - [4683] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), - [4685] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), - [4687] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 34), - [4689] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 34), - [4691] = {.count = 1, .reusable = true}, SHIFT(2064), - [4693] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1503), - [4696] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 35), - [4698] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 35), - [4700] = {.count = 1, .reusable = true}, SHIFT(2065), - [4702] = {.count = 1, .reusable = true}, SHIFT(2066), - [4704] = {.count = 1, .reusable = false}, SHIFT(2066), - [4706] = {.count = 1, .reusable = true}, SHIFT(2067), - [4708] = {.count = 1, .reusable = true}, SHIFT(2068), - [4710] = {.count = 1, .reusable = false}, SHIFT(2068), - [4712] = {.count = 1, .reusable = true}, SHIFT(2070), + [4681] = {.count = 1, .reusable = true}, SHIFT(2061), + [4683] = {.count = 1, .reusable = false}, SHIFT(2062), + [4685] = {.count = 1, .reusable = true}, SHIFT(2063), + [4687] = {.count = 1, .reusable = false}, SHIFT(2064), + [4689] = {.count = 1, .reusable = true}, SHIFT(2064), + [4691] = {.count = 1, .reusable = true}, SHIFT(2065), + [4693] = {.count = 1, .reusable = true}, SHIFT(2068), + [4695] = {.count = 1, .reusable = true}, SHIFT(2069), + [4697] = {.count = 1, .reusable = true}, REDUCE(sym_return_statement, 3), + [4699] = {.count = 1, .reusable = false}, REDUCE(sym_return_statement, 3), + [4701] = {.count = 1, .reusable = true}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 34), + [4703] = {.count = 1, .reusable = false}, REDUCE(sym_goto_statement, 3, .alias_sequence_id = 34), + [4705] = {.count = 1, .reusable = true}, SHIFT(2070), + [4707] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1506), + [4710] = {.count = 1, .reusable = true}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 35), + [4712] = {.count = 1, .reusable = false}, REDUCE(sym_labeled_statement, 3, .alias_sequence_id = 35), [4714] = {.count = 1, .reusable = true}, SHIFT(2071), - [4716] = {.count = 1, .reusable = false}, SHIFT(2071), - [4718] = {.count = 1, .reusable = true}, SHIFT(2073), - [4720] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [4716] = {.count = 1, .reusable = true}, SHIFT(2072), + [4718] = {.count = 1, .reusable = false}, SHIFT(2072), + [4720] = {.count = 1, .reusable = true}, SHIFT(2073), [4722] = {.count = 1, .reusable = true}, SHIFT(2074), - [4724] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 36), - [4726] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 17), - [4728] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), - [4730] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(917), - [4733] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 33), - [4735] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3), - [4737] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), - [4739] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), - [4741] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(923), - [4744] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1547), - [4747] = {.count = 1, .reusable = true}, SHIFT(2079), - [4749] = {.count = 1, .reusable = true}, SHIFT(2080), - [4751] = {.count = 1, .reusable = true}, SHIFT(2081), - [4753] = {.count = 1, .reusable = true}, SHIFT(2082), - [4755] = {.count = 1, .reusable = true}, SHIFT(2083), - [4757] = {.count = 1, .reusable = false}, SHIFT(2084), - [4759] = {.count = 1, .reusable = false}, SHIFT(2085), - [4761] = {.count = 1, .reusable = false}, SHIFT(2086), - [4763] = {.count = 1, .reusable = true}, SHIFT(2087), - [4765] = {.count = 1, .reusable = false}, SHIFT(2087), - [4767] = {.count = 1, .reusable = true}, SHIFT(2089), - [4769] = {.count = 1, .reusable = false}, SHIFT(2089), - [4771] = {.count = 1, .reusable = true}, SHIFT(2091), + [4724] = {.count = 1, .reusable = false}, SHIFT(2074), + [4726] = {.count = 1, .reusable = true}, SHIFT(2076), + [4728] = {.count = 1, .reusable = true}, SHIFT(2077), + [4730] = {.count = 1, .reusable = false}, SHIFT(2077), + [4732] = {.count = 1, .reusable = true}, SHIFT(2079), + [4734] = {.count = 1, .reusable = true}, REDUCE(sym_comma_expression, 3), + [4736] = {.count = 1, .reusable = true}, SHIFT(2080), + [4738] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 36), + [4740] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 17), + [4742] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), + [4744] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_initializer_list_repeat1, 2), SHIFT_REPEAT(918), + [4747] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 33), + [4749] = {.count = 1, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3), + [4751] = {.count = 1, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), + [4753] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_params, 4), + [4755] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_params_repeat1, 2), SHIFT_REPEAT(924), + [4758] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1550), + [4761] = {.count = 1, .reusable = true}, SHIFT(2085), + [4763] = {.count = 1, .reusable = true}, SHIFT(2086), + [4765] = {.count = 1, .reusable = true}, SHIFT(2087), + [4767] = {.count = 1, .reusable = true}, SHIFT(2088), + [4769] = {.count = 1, .reusable = true}, SHIFT(2089), + [4771] = {.count = 1, .reusable = false}, SHIFT(2090), [4773] = {.count = 1, .reusable = false}, SHIFT(2091), - [4775] = {.count = 1, .reusable = true}, SHIFT(2093), - [4777] = {.count = 1, .reusable = true}, SHIFT(2094), - [4779] = {.count = 1, .reusable = true}, SHIFT(2096), - [4781] = {.count = 1, .reusable = true}, SHIFT(2097), - [4783] = {.count = 1, .reusable = true}, SHIFT(2099), - [4785] = {.count = 1, .reusable = true}, SHIFT(2100), - [4787] = {.count = 1, .reusable = true}, SHIFT(2101), - [4789] = {.count = 1, .reusable = true}, SHIFT(2102), - [4791] = {.count = 1, .reusable = false}, SHIFT(2102), - [4793] = {.count = 1, .reusable = true}, SHIFT(2104), - [4795] = {.count = 1, .reusable = true}, SHIFT(2105), - [4797] = {.count = 1, .reusable = false}, SHIFT(2105), - [4799] = {.count = 1, .reusable = true}, SHIFT(2107), - [4801] = {.count = 1, .reusable = true}, SHIFT(2108), - [4803] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 22), - [4805] = {.count = 1, .reusable = true}, SHIFT(2110), - [4807] = {.count = 1, .reusable = true}, SHIFT(2111), - [4809] = {.count = 1, .reusable = true}, SHIFT(2112), - [4811] = {.count = 1, .reusable = true}, SHIFT(2113), - [4813] = {.count = 1, .reusable = true}, SHIFT(2114), - [4815] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), - [4817] = {.count = 1, .reusable = true}, SHIFT(2115), - [4819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1624), - [4822] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), - [4824] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), - [4826] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 8), - [4828] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 22), - [4830] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 37), - [4832] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 37), - [4834] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 38), - [4836] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 38), - [4838] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [4840] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), - [4842] = {.count = 1, .reusable = true}, SHIFT(2124), - [4844] = {.count = 1, .reusable = true}, SHIFT(2125), - [4846] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 39), - [4848] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 39), - [4850] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 40), - [4852] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 40), - [4854] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [4856] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), - [4858] = {.count = 1, .reusable = true}, SHIFT(2126), - [4860] = {.count = 1, .reusable = true}, SHIFT(2127), - [4862] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 41), - [4864] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 41), - [4866] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 42), - [4868] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 42), - [4870] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [4872] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), - [4874] = {.count = 1, .reusable = true}, SHIFT(2128), - [4876] = {.count = 1, .reusable = true}, SHIFT(2129), - [4878] = {.count = 1, .reusable = true}, SHIFT(2130), - [4880] = {.count = 1, .reusable = true}, SHIFT(2131), - [4882] = {.count = 1, .reusable = true}, SHIFT(2132), - [4884] = {.count = 1, .reusable = true}, SHIFT(2133), - [4886] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), + [4775] = {.count = 1, .reusable = false}, SHIFT(2092), + [4777] = {.count = 1, .reusable = true}, SHIFT(2093), + [4779] = {.count = 1, .reusable = false}, SHIFT(2093), + [4781] = {.count = 1, .reusable = true}, SHIFT(2095), + [4783] = {.count = 1, .reusable = false}, SHIFT(2095), + [4785] = {.count = 1, .reusable = true}, SHIFT(2097), + [4787] = {.count = 1, .reusable = false}, SHIFT(2097), + [4789] = {.count = 1, .reusable = true}, SHIFT(2099), + [4791] = {.count = 1, .reusable = true}, SHIFT(2100), + [4793] = {.count = 1, .reusable = true}, SHIFT(2102), + [4795] = {.count = 1, .reusable = true}, SHIFT(2103), + [4797] = {.count = 1, .reusable = true}, SHIFT(2105), + [4799] = {.count = 1, .reusable = true}, SHIFT(2106), + [4801] = {.count = 1, .reusable = true}, SHIFT(2107), + [4803] = {.count = 1, .reusable = true}, SHIFT(2108), + [4805] = {.count = 1, .reusable = false}, SHIFT(2108), + [4807] = {.count = 1, .reusable = true}, SHIFT(2110), + [4809] = {.count = 1, .reusable = true}, SHIFT(2111), + [4811] = {.count = 1, .reusable = false}, SHIFT(2111), + [4813] = {.count = 1, .reusable = true}, SHIFT(2113), + [4815] = {.count = 1, .reusable = true}, SHIFT(2114), + [4817] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif, 4, .alias_sequence_id = 22), + [4819] = {.count = 1, .reusable = true}, SHIFT(2116), + [4821] = {.count = 1, .reusable = true}, SHIFT(2117), + [4823] = {.count = 1, .reusable = true}, SHIFT(2118), + [4825] = {.count = 1, .reusable = true}, SHIFT(2119), + [4827] = {.count = 1, .reusable = true}, SHIFT(2120), + [4829] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 4), + [4831] = {.count = 1, .reusable = true}, SHIFT(2121), + [4833] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1627), + [4836] = {.count = 1, .reusable = true}, REDUCE(sym_enumerator_list, 5), + [4838] = {.count = 1, .reusable = false}, REDUCE(sym_enumerator_list, 5), + [4840] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_else_in_field_declaration_list, 2, .alias_sequence_id = 8), + [4842] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 2, .alias_sequence_id = 22), + [4844] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 37), + [4846] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 37), + [4848] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 38), + [4850] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 38), + [4852] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [4854] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 4, .alias_sequence_id = 23), + [4856] = {.count = 1, .reusable = true}, SHIFT(2130), + [4858] = {.count = 1, .reusable = true}, SHIFT(2131), + [4860] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 39), + [4862] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 39), + [4864] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 40), + [4866] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 40), + [4868] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [4870] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 24), + [4872] = {.count = 1, .reusable = true}, SHIFT(2132), + [4874] = {.count = 1, .reusable = true}, SHIFT(2133), + [4876] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 41), + [4878] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 41), + [4880] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 42), + [4882] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 42), + [4884] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), + [4886] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 4, .alias_sequence_id = 25), [4888] = {.count = 1, .reusable = true}, SHIFT(2134), - [4890] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), - [4892] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), - [4894] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 36), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 18), - [4897] = {.count = 1, .reusable = true}, SHIFT(2135), - [4899] = {.count = 1, .reusable = true}, SHIFT(2136), - [4901] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), - [4903] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), - [4905] = {.count = 1, .reusable = true}, SHIFT(2139), - [4907] = {.count = 1, .reusable = true}, SHIFT(2138), - [4909] = {.count = 1, .reusable = false}, SHIFT(2139), - [4911] = {.count = 1, .reusable = true}, SHIFT(2140), - [4913] = {.count = 1, .reusable = false}, SHIFT(2143), - [4915] = {.count = 1, .reusable = false}, SHIFT(2142), - [4917] = {.count = 1, .reusable = false}, SHIFT(2141), - [4919] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 3), + [4890] = {.count = 1, .reusable = true}, SHIFT(2135), + [4892] = {.count = 1, .reusable = true}, SHIFT(2136), + [4894] = {.count = 1, .reusable = true}, SHIFT(2137), + [4896] = {.count = 1, .reusable = true}, SHIFT(2138), + [4898] = {.count = 1, .reusable = true}, SHIFT(2139), + [4900] = {.count = 1, .reusable = true}, REDUCE(sym__field_declarator, 3), + [4902] = {.count = 1, .reusable = true}, SHIFT(2140), + [4904] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 4), + [4906] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 4), + [4908] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 36), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 18), + [4911] = {.count = 1, .reusable = true}, SHIFT(2141), + [4913] = {.count = 1, .reusable = true}, SHIFT(2142), + [4915] = {.count = 1, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), + [4917] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 3), + [4919] = {.count = 1, .reusable = true}, SHIFT(2145), [4921] = {.count = 1, .reusable = true}, SHIFT(2144), - [4923] = {.count = 1, .reusable = true}, SHIFT(2145), - [4925] = {.count = 1, .reusable = false}, SHIFT(2145), - [4927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(1068), - [4930] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 33), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), - [4933] = {.count = 1, .reusable = true}, SHIFT(2146), - [4935] = {.count = 1, .reusable = true}, SHIFT(2148), - [4937] = {.count = 1, .reusable = false}, SHIFT(2149), - [4939] = {.count = 1, .reusable = true}, SHIFT(2149), - [4941] = {.count = 1, .reusable = false}, SHIFT(2152), - [4943] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1078), - [4946] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1677), - [4949] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3), - [4951] = {.count = 1, .reusable = true}, SHIFT(2153), - [4953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1683), - [4956] = {.count = 1, .reusable = true}, SHIFT(2154), - [4958] = {.count = 1, .reusable = true}, SHIFT(2155), - [4960] = {.count = 1, .reusable = false}, SHIFT(2155), - [4962] = {.count = 1, .reusable = true}, SHIFT(2156), - [4964] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), - [4966] = {.count = 1, .reusable = false}, REDUCE(sym__abstract_declarator, 3), - [4968] = {.count = 1, .reusable = true}, SHIFT(2157), - [4970] = {.count = 1, .reusable = false}, SHIFT(2158), - [4972] = {.count = 1, .reusable = true}, SHIFT(2159), - [4974] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), - [4976] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 3), - [4978] = {.count = 1, .reusable = true}, SHIFT(2160), - [4980] = {.count = 1, .reusable = true}, SHIFT(2161), - [4982] = {.count = 1, .reusable = false}, SHIFT(2161), - [4984] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 3), - [4986] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 3), - [4988] = {.count = 1, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), - [4990] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(376), - [4993] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(376), - [4996] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1713), - [4999] = {.count = 1, .reusable = true}, REDUCE(sym_optional_type_parameter_declaration, 4, .alias_sequence_id = 4), - [5001] = {.count = 1, .reusable = false}, SHIFT(2164), - [5003] = {.count = 1, .reusable = true}, SHIFT(2165), - [5005] = {.count = 1, .reusable = true}, SHIFT(2167), - [5007] = {.count = 1, .reusable = true}, SHIFT(2168), - [5009] = {.count = 1, .reusable = true}, SHIFT(2172), - [5011] = {.count = 1, .reusable = true}, SHIFT(2171), - [5013] = {.count = 1, .reusable = false}, SHIFT(2172), - [5015] = {.count = 1, .reusable = true}, SHIFT(2173), - [5017] = {.count = 1, .reusable = false}, SHIFT(2174), - [5019] = {.count = 1, .reusable = true}, SHIFT(2176), - [5021] = {.count = 1, .reusable = true}, SHIFT(2175), - [5023] = {.count = 1, .reusable = false}, SHIFT(2176), - [5025] = {.count = 1, .reusable = false}, SHIFT(2177), + [4923] = {.count = 1, .reusable = false}, SHIFT(2145), + [4925] = {.count = 1, .reusable = true}, SHIFT(2146), + [4927] = {.count = 1, .reusable = false}, SHIFT(2149), + [4929] = {.count = 1, .reusable = false}, SHIFT(2148), + [4931] = {.count = 1, .reusable = false}, SHIFT(2147), + [4933] = {.count = 1, .reusable = true}, REDUCE(sym_function_field_declarator, 3), + [4935] = {.count = 1, .reusable = true}, SHIFT(2150), + [4937] = {.count = 1, .reusable = true}, SHIFT(2151), + [4939] = {.count = 1, .reusable = false}, SHIFT(2151), + [4941] = {.count = 2, .reusable = true}, REDUCE(aux_sym_field_declaration_repeat1, 2), SHIFT_REPEAT(1069), + [4944] = {.count = 2, .reusable = true}, REDUCE(sym_scoped_field_identifier, 3, .alias_sequence_id = 33), REDUCE(sym_scoped_type_identifier, 3, .alias_sequence_id = 20), + [4947] = {.count = 1, .reusable = true}, SHIFT(2152), + [4949] = {.count = 1, .reusable = true}, SHIFT(2154), + [4951] = {.count = 1, .reusable = false}, SHIFT(2155), + [4953] = {.count = 1, .reusable = true}, SHIFT(2155), + [4955] = {.count = 1, .reusable = false}, SHIFT(2158), + [4957] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1079), + [4960] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1680), + [4963] = {.count = 1, .reusable = true}, REDUCE(aux_sym_base_class_clause_repeat1, 3), + [4965] = {.count = 1, .reusable = true}, SHIFT(2159), + [4967] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1686), + [4970] = {.count = 1, .reusable = true}, SHIFT(2160), + [4972] = {.count = 1, .reusable = true}, SHIFT(2161), + [4974] = {.count = 1, .reusable = false}, SHIFT(2161), + [4976] = {.count = 1, .reusable = true}, SHIFT(2162), + [4978] = {.count = 1, .reusable = true}, REDUCE(sym__abstract_declarator, 3), + [4980] = {.count = 1, .reusable = false}, REDUCE(sym__abstract_declarator, 3), + [4982] = {.count = 1, .reusable = true}, SHIFT(2163), + [4984] = {.count = 1, .reusable = false}, SHIFT(2164), + [4986] = {.count = 1, .reusable = true}, SHIFT(2165), + [4988] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 3), + [4990] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 3), + [4992] = {.count = 1, .reusable = true}, SHIFT(2166), + [4994] = {.count = 1, .reusable = true}, SHIFT(2167), + [4996] = {.count = 1, .reusable = false}, SHIFT(2167), + [4998] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 3), + [5000] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 3), + [5002] = {.count = 1, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), + [5004] = {.count = 2, .reusable = false}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(376), + [5007] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(376), + [5010] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1716), + [5013] = {.count = 1, .reusable = true}, REDUCE(sym_optional_type_parameter_declaration, 4, .alias_sequence_id = 4), + [5015] = {.count = 1, .reusable = false}, SHIFT(2170), + [5017] = {.count = 1, .reusable = true}, SHIFT(2171), + [5019] = {.count = 1, .reusable = true}, SHIFT(2173), + [5021] = {.count = 1, .reusable = true}, SHIFT(2174), + [5023] = {.count = 1, .reusable = true}, SHIFT(2178), + [5025] = {.count = 1, .reusable = true}, SHIFT(2177), [5027] = {.count = 1, .reusable = false}, SHIFT(2178), [5029] = {.count = 1, .reusable = true}, SHIFT(2179), - [5031] = {.count = 1, .reusable = true}, SHIFT(2178), - [5033] = {.count = 1, .reusable = false}, SHIFT(2180), + [5031] = {.count = 1, .reusable = false}, SHIFT(2180), + [5033] = {.count = 1, .reusable = true}, SHIFT(2182), [5035] = {.count = 1, .reusable = true}, SHIFT(2181), - [5037] = {.count = 1, .reusable = true}, SHIFT(2182), + [5037] = {.count = 1, .reusable = false}, SHIFT(2182), [5039] = {.count = 1, .reusable = false}, SHIFT(2183), [5041] = {.count = 1, .reusable = false}, SHIFT(2184), [5043] = {.count = 1, .reusable = true}, SHIFT(2185), - [5045] = {.count = 1, .reusable = false}, SHIFT(2186), - [5047] = {.count = 1, .reusable = true}, SHIFT(2186), - [5049] = {.count = 1, .reusable = false}, SHIFT(2187), - [5051] = {.count = 1, .reusable = false}, SHIFT(2188), - [5053] = {.count = 1, .reusable = false}, SHIFT(2191), + [5045] = {.count = 1, .reusable = true}, SHIFT(2184), + [5047] = {.count = 1, .reusable = false}, SHIFT(2186), + [5049] = {.count = 1, .reusable = true}, SHIFT(2187), + [5051] = {.count = 1, .reusable = true}, SHIFT(2188), + [5053] = {.count = 1, .reusable = false}, SHIFT(2189), [5055] = {.count = 1, .reusable = false}, SHIFT(2190), - [5057] = {.count = 1, .reusable = false}, SHIFT(2189), - [5059] = {.count = 1, .reusable = true}, SHIFT(2192), - [5061] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1741), - [5064] = {.count = 1, .reusable = true}, SHIFT(2197), - [5066] = {.count = 1, .reusable = false}, SHIFT(2198), - [5068] = {.count = 1, .reusable = true}, SHIFT(2199), - [5070] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5072] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [5074] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), - [5076] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1171), - [5079] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), - [5081] = {.count = 1, .reusable = true}, SHIFT(2200), - [5083] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1757), - [5086] = {.count = 1, .reusable = true}, SHIFT(2201), - [5088] = {.count = 1, .reusable = true}, SHIFT(2202), - [5090] = {.count = 1, .reusable = false}, SHIFT(2202), - [5092] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), - [5094] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), - [5096] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(896), - [5099] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), - [5101] = {.count = 1, .reusable = true}, SHIFT(2203), - [5103] = {.count = 1, .reusable = true}, SHIFT(2204), - [5105] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(2205), - [5108] = {.count = 1, .reusable = true}, SHIFT(2206), - [5110] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), - [5112] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1788), - [5115] = {.count = 1, .reusable = true}, SHIFT(2211), - [5117] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1791), - [5120] = {.count = 1, .reusable = true}, SHIFT(2212), - [5122] = {.count = 1, .reusable = true}, SHIFT(2213), - [5124] = {.count = 1, .reusable = false}, SHIFT(2213), - [5126] = {.count = 1, .reusable = true}, SHIFT(2214), - [5128] = {.count = 1, .reusable = true}, SHIFT(2215), - [5130] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1808), - [5133] = {.count = 1, .reusable = true}, SHIFT(2216), - [5135] = {.count = 1, .reusable = true}, SHIFT(2217), - [5137] = {.count = 1, .reusable = false}, SHIFT(2217), - [5139] = {.count = 1, .reusable = true}, SHIFT(2218), - [5141] = {.count = 1, .reusable = false}, SHIFT(2221), - [5143] = {.count = 1, .reusable = false}, SHIFT(2220), - [5145] = {.count = 1, .reusable = false}, SHIFT(2219), + [5057] = {.count = 1, .reusable = true}, SHIFT(2191), + [5059] = {.count = 1, .reusable = false}, SHIFT(2192), + [5061] = {.count = 1, .reusable = true}, SHIFT(2192), + [5063] = {.count = 1, .reusable = false}, SHIFT(2193), + [5065] = {.count = 1, .reusable = false}, SHIFT(2194), + [5067] = {.count = 1, .reusable = false}, SHIFT(2197), + [5069] = {.count = 1, .reusable = false}, SHIFT(2196), + [5071] = {.count = 1, .reusable = false}, SHIFT(2195), + [5073] = {.count = 1, .reusable = true}, SHIFT(2198), + [5075] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1744), + [5078] = {.count = 1, .reusable = true}, SHIFT(2203), + [5080] = {.count = 1, .reusable = false}, SHIFT(2204), + [5082] = {.count = 1, .reusable = true}, SHIFT(2205), + [5084] = {.count = 1, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), + [5086] = {.count = 1, .reusable = true}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [5088] = {.count = 1, .reusable = false}, REDUCE(sym_argument_list, 4, .dynamic_precedence = 1), + [5090] = {.count = 2, .reusable = true}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1172), + [5093] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_designator, 3), + [5095] = {.count = 1, .reusable = true}, SHIFT(2206), + [5097] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1760), + [5100] = {.count = 1, .reusable = true}, SHIFT(2207), + [5102] = {.count = 1, .reusable = true}, SHIFT(2208), + [5104] = {.count = 1, .reusable = false}, SHIFT(2208), + [5106] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 4), + [5108] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 4), + [5110] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT(897), + [5113] = {.count = 1, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), + [5115] = {.count = 1, .reusable = true}, SHIFT(2209), + [5117] = {.count = 1, .reusable = true}, SHIFT(2210), + [5119] = {.count = 2, .reusable = true}, REDUCE(aux_sym_initializer_list_repeat1, 2), SHIFT_REPEAT(2211), + [5122] = {.count = 1, .reusable = true}, SHIFT(2212), + [5124] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_pair, 3), + [5126] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(1791), + [5129] = {.count = 1, .reusable = true}, SHIFT(2217), + [5131] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1794), + [5134] = {.count = 1, .reusable = true}, SHIFT(2218), + [5136] = {.count = 1, .reusable = true}, SHIFT(2219), + [5138] = {.count = 1, .reusable = false}, SHIFT(2219), + [5140] = {.count = 1, .reusable = true}, SHIFT(2220), + [5142] = {.count = 1, .reusable = true}, SHIFT(2221), + [5144] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1811), [5147] = {.count = 1, .reusable = true}, SHIFT(2222), [5149] = {.count = 1, .reusable = true}, SHIFT(2223), - [5151] = {.count = 1, .reusable = false}, SHIFT(2224), + [5151] = {.count = 1, .reusable = false}, SHIFT(2223), [5153] = {.count = 1, .reusable = true}, SHIFT(2224), - [5155] = {.count = 1, .reusable = false}, SHIFT(2226), - [5157] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1830), - [5160] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), - [5162] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), - [5164] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), - [5166] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), - [5168] = {.count = 1, .reusable = true}, SHIFT(2227), - [5170] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1836), - [5173] = {.count = 1, .reusable = true}, SHIFT(2228), - [5175] = {.count = 1, .reusable = true}, SHIFT(2229), - [5177] = {.count = 1, .reusable = false}, SHIFT(2229), - [5179] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), - [5181] = {.count = 1, .reusable = true}, SHIFT(2230), - [5183] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 4), - [5185] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 4), - [5187] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1278), - [5190] = {.count = 1, .reusable = true}, SHIFT(2231), - [5192] = {.count = 1, .reusable = true}, SHIFT(2232), - [5194] = {.count = 1, .reusable = false}, SHIFT(349), - [5196] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), - [5198] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), - [5200] = {.count = 1, .reusable = false}, SHIFT(355), - [5202] = {.count = 1, .reusable = true}, SHIFT(2233), - [5204] = {.count = 1, .reusable = true}, SHIFT(2234), - [5206] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 4), - [5208] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 4), - [5210] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 20), - [5212] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 20), - [5214] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4), - [5216] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4), - [5218] = {.count = 1, .reusable = true}, SHIFT(2237), - [5220] = {.count = 1, .reusable = false}, SHIFT(2237), - [5222] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 4), - [5224] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 4), - [5226] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), - [5228] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), - [5230] = {.count = 1, .reusable = true}, SHIFT(2238), - [5232] = {.count = 1, .reusable = false}, SHIFT(2238), - [5234] = {.count = 1, .reusable = true}, SHIFT(2239), - [5236] = {.count = 1, .reusable = false}, SHIFT(2242), - [5238] = {.count = 1, .reusable = false}, SHIFT(2241), - [5240] = {.count = 1, .reusable = false}, SHIFT(2240), - [5242] = {.count = 1, .reusable = true}, SHIFT(2243), + [5155] = {.count = 1, .reusable = false}, SHIFT(2227), + [5157] = {.count = 1, .reusable = false}, SHIFT(2226), + [5159] = {.count = 1, .reusable = false}, SHIFT(2225), + [5161] = {.count = 1, .reusable = true}, SHIFT(2228), + [5163] = {.count = 1, .reusable = true}, SHIFT(2229), + [5165] = {.count = 1, .reusable = false}, SHIFT(2230), + [5167] = {.count = 1, .reusable = true}, SHIFT(2230), + [5169] = {.count = 1, .reusable = false}, SHIFT(2232), + [5171] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1833), + [5174] = {.count = 1, .reusable = true}, REDUCE(sym_cast_expression, 4), + [5176] = {.count = 1, .reusable = false}, REDUCE(sym_cast_expression, 4), + [5178] = {.count = 1, .reusable = true}, REDUCE(sym_compound_literal_expression, 4), + [5180] = {.count = 1, .reusable = false}, REDUCE(sym_compound_literal_expression, 4), + [5182] = {.count = 1, .reusable = true}, SHIFT(2233), + [5184] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(1839), + [5187] = {.count = 1, .reusable = true}, SHIFT(2234), + [5189] = {.count = 1, .reusable = true}, SHIFT(2235), + [5191] = {.count = 1, .reusable = false}, SHIFT(2235), + [5193] = {.count = 1, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), + [5195] = {.count = 1, .reusable = true}, SHIFT(2236), + [5197] = {.count = 1, .reusable = true}, REDUCE(sym_lambda_capture_specifier, 4), + [5199] = {.count = 1, .reusable = false}, REDUCE(sym_lambda_capture_specifier, 4), + [5201] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(1279), + [5204] = {.count = 1, .reusable = true}, SHIFT(2237), + [5206] = {.count = 1, .reusable = true}, SHIFT(2238), + [5208] = {.count = 1, .reusable = false}, SHIFT(349), + [5210] = {.count = 1, .reusable = true}, REDUCE(sym_sizeof_expression, 4), + [5212] = {.count = 1, .reusable = false}, REDUCE(sym_sizeof_expression, 4), + [5214] = {.count = 1, .reusable = false}, SHIFT(355), + [5216] = {.count = 1, .reusable = true}, SHIFT(2239), + [5218] = {.count = 1, .reusable = true}, SHIFT(2240), + [5220] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 4), + [5222] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 4), + [5224] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 20), + [5226] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4, .alias_sequence_id = 20), + [5228] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 4), + [5230] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 4), + [5232] = {.count = 1, .reusable = true}, SHIFT(2243), + [5234] = {.count = 1, .reusable = false}, SHIFT(2243), + [5236] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 4), + [5238] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 4), + [5240] = {.count = 1, .reusable = true}, REDUCE(sym_subscript_expression, 4), + [5242] = {.count = 1, .reusable = false}, REDUCE(sym_subscript_expression, 4), [5244] = {.count = 1, .reusable = true}, SHIFT(2244), - [5246] = {.count = 1, .reusable = true}, SHIFT(2248), - [5248] = {.count = 1, .reusable = false}, SHIFT(2249), - [5250] = {.count = 1, .reusable = true}, SHIFT(2249), - [5252] = {.count = 1, .reusable = false}, SHIFT(2251), - [5254] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1887), - [5257] = {.count = 1, .reusable = true}, SHIFT(2252), - [5259] = {.count = 1, .reusable = true}, SHIFT(2253), - [5261] = {.count = 1, .reusable = true}, SHIFT(2254), - [5263] = {.count = 1, .reusable = true}, SHIFT(2255), - [5265] = {.count = 1, .reusable = true}, SHIFT(2257), - [5267] = {.count = 1, .reusable = true}, SHIFT(2260), - [5269] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 2), - [5271] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 2), - [5273] = {.count = 1, .reusable = true}, SHIFT(2264), - [5275] = {.count = 1, .reusable = true}, SHIFT(2265), - [5277] = {.count = 1, .reusable = true}, SHIFT(2266), - [5279] = {.count = 1, .reusable = false}, SHIFT(2267), - [5281] = {.count = 1, .reusable = false}, SHIFT(2268), - [5283] = {.count = 1, .reusable = false}, SHIFT(2270), - [5285] = {.count = 1, .reusable = false}, SHIFT(2274), - [5287] = {.count = 1, .reusable = false}, SHIFT(2278), - [5289] = {.count = 1, .reusable = true}, SHIFT(2282), - [5291] = {.count = 1, .reusable = true}, SHIFT(2283), - [5293] = {.count = 1, .reusable = false}, SHIFT(2284), - [5295] = {.count = 1, .reusable = true}, SHIFT(2285), - [5297] = {.count = 1, .reusable = true}, SHIFT(2286), - [5299] = {.count = 1, .reusable = false}, SHIFT(2287), - [5301] = {.count = 1, .reusable = false}, SHIFT(2288), - [5303] = {.count = 1, .reusable = false}, SHIFT(2289), - [5305] = {.count = 1, .reusable = true}, SHIFT(2291), - [5307] = {.count = 1, .reusable = true}, SHIFT(2293), - [5309] = {.count = 1, .reusable = true}, SHIFT(2294), - [5311] = {.count = 1, .reusable = true}, SHIFT(2295), - [5313] = {.count = 1, .reusable = false}, SHIFT(2295), - [5315] = {.count = 1, .reusable = true}, SHIFT(2296), - [5317] = {.count = 1, .reusable = true}, SHIFT(2297), - [5319] = {.count = 1, .reusable = true}, SHIFT(2299), - [5321] = {.count = 1, .reusable = true}, SHIFT(2301), + [5246] = {.count = 1, .reusable = false}, SHIFT(2244), + [5248] = {.count = 1, .reusable = true}, SHIFT(2245), + [5250] = {.count = 1, .reusable = false}, SHIFT(2248), + [5252] = {.count = 1, .reusable = false}, SHIFT(2247), + [5254] = {.count = 1, .reusable = false}, SHIFT(2246), + [5256] = {.count = 1, .reusable = true}, SHIFT(2249), + [5258] = {.count = 1, .reusable = true}, SHIFT(2250), + [5260] = {.count = 1, .reusable = true}, SHIFT(2254), + [5262] = {.count = 1, .reusable = false}, SHIFT(2255), + [5264] = {.count = 1, .reusable = true}, SHIFT(2255), + [5266] = {.count = 1, .reusable = false}, SHIFT(2257), + [5268] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(1890), + [5271] = {.count = 1, .reusable = true}, SHIFT(2258), + [5273] = {.count = 1, .reusable = true}, SHIFT(2259), + [5275] = {.count = 1, .reusable = true}, SHIFT(2260), + [5277] = {.count = 1, .reusable = true}, SHIFT(2261), + [5279] = {.count = 1, .reusable = true}, SHIFT(2263), + [5281] = {.count = 1, .reusable = true}, SHIFT(2266), + [5283] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_pointer_declarator, 2), + [5285] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_reference_declarator, 2), + [5287] = {.count = 1, .reusable = true}, SHIFT(2270), + [5289] = {.count = 1, .reusable = true}, SHIFT(2271), + [5291] = {.count = 1, .reusable = true}, SHIFT(2272), + [5293] = {.count = 1, .reusable = false}, SHIFT(2273), + [5295] = {.count = 1, .reusable = false}, SHIFT(2274), + [5297] = {.count = 1, .reusable = false}, SHIFT(2276), + [5299] = {.count = 1, .reusable = false}, SHIFT(2280), + [5301] = {.count = 1, .reusable = false}, SHIFT(2284), + [5303] = {.count = 1, .reusable = true}, SHIFT(2288), + [5305] = {.count = 1, .reusable = true}, SHIFT(2289), + [5307] = {.count = 1, .reusable = false}, SHIFT(2290), + [5309] = {.count = 1, .reusable = true}, SHIFT(2291), + [5311] = {.count = 1, .reusable = true}, SHIFT(2292), + [5313] = {.count = 1, .reusable = false}, SHIFT(2293), + [5315] = {.count = 1, .reusable = false}, SHIFT(2294), + [5317] = {.count = 1, .reusable = false}, SHIFT(2295), + [5319] = {.count = 1, .reusable = true}, SHIFT(2297), + [5321] = {.count = 1, .reusable = true}, SHIFT(2299), [5323] = {.count = 1, .reusable = true}, SHIFT(2300), - [5325] = {.count = 1, .reusable = false}, SHIFT(2301), - [5327] = {.count = 1, .reusable = true}, SHIFT(2303), - [5329] = {.count = 1, .reusable = true}, SHIFT(2304), - [5331] = {.count = 1, .reusable = true}, SHIFT(2305), - [5333] = {.count = 1, .reusable = false}, SHIFT(2306), - [5335] = {.count = 1, .reusable = true}, SHIFT(2307), + [5325] = {.count = 1, .reusable = true}, SHIFT(2301), + [5327] = {.count = 1, .reusable = true}, SHIFT(2302), + [5329] = {.count = 1, .reusable = false}, SHIFT(2302), + [5331] = {.count = 1, .reusable = true}, SHIFT(2303), + [5333] = {.count = 1, .reusable = true}, SHIFT(2304), + [5335] = {.count = 1, .reusable = true}, SHIFT(2306), [5337] = {.count = 1, .reusable = true}, SHIFT(2308), - [5339] = {.count = 1, .reusable = true}, SHIFT(2312), - [5341] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 8), - [5343] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 22), - [5345] = {.count = 1, .reusable = false}, SHIFT(2317), - [5347] = {.count = 1, .reusable = false}, SHIFT(2319), - [5349] = {.count = 1, .reusable = true}, SHIFT(2320), - [5351] = {.count = 1, .reusable = true}, SHIFT(2321), - [5353] = {.count = 1, .reusable = false}, SHIFT(2321), - [5355] = {.count = 1, .reusable = true}, SHIFT(2322), - [5357] = {.count = 1, .reusable = false}, SHIFT(2322), - [5359] = {.count = 1, .reusable = true}, SHIFT(2323), + [5339] = {.count = 1, .reusable = true}, SHIFT(2307), + [5341] = {.count = 1, .reusable = false}, SHIFT(2308), + [5343] = {.count = 1, .reusable = true}, SHIFT(2310), + [5345] = {.count = 1, .reusable = true}, SHIFT(2311), + [5347] = {.count = 1, .reusable = true}, SHIFT(2312), + [5349] = {.count = 1, .reusable = false}, SHIFT(2313), + [5351] = {.count = 1, .reusable = true}, SHIFT(2314), + [5353] = {.count = 1, .reusable = true}, SHIFT(2315), + [5355] = {.count = 1, .reusable = true}, SHIFT(2319), + [5357] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_else_in_compound_statement, 2, .alias_sequence_id = 8), + [5359] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 2, .alias_sequence_id = 22), [5361] = {.count = 1, .reusable = false}, SHIFT(2324), - [5363] = {.count = 1, .reusable = true}, SHIFT(2327), - [5365] = {.count = 1, .reusable = false}, SHIFT(2327), + [5363] = {.count = 1, .reusable = false}, SHIFT(2326), + [5365] = {.count = 1, .reusable = true}, SHIFT(2327), [5367] = {.count = 1, .reusable = true}, SHIFT(2328), - [5369] = {.count = 1, .reusable = true}, SHIFT(2330), + [5369] = {.count = 1, .reusable = false}, SHIFT(2328), [5371] = {.count = 1, .reusable = true}, SHIFT(2329), - [5373] = {.count = 1, .reusable = false}, SHIFT(2330), - [5375] = {.count = 1, .reusable = true}, SHIFT(2332), - [5377] = {.count = 1, .reusable = true}, SHIFT(2333), - [5379] = {.count = 1, .reusable = false}, SHIFT(2334), - [5381] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 37), - [5383] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 37), - [5385] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 38), - [5387] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 38), - [5389] = {.count = 1, .reusable = true}, SHIFT(2336), - [5391] = {.count = 1, .reusable = true}, SHIFT(2338), + [5373] = {.count = 1, .reusable = true}, SHIFT(2330), + [5375] = {.count = 1, .reusable = false}, SHIFT(2330), + [5377] = {.count = 1, .reusable = true}, SHIFT(2331), + [5379] = {.count = 1, .reusable = false}, SHIFT(2332), + [5381] = {.count = 1, .reusable = true}, SHIFT(2335), + [5383] = {.count = 1, .reusable = false}, SHIFT(2335), + [5385] = {.count = 1, .reusable = true}, SHIFT(2336), + [5387] = {.count = 1, .reusable = true}, SHIFT(2338), + [5389] = {.count = 1, .reusable = true}, SHIFT(2337), + [5391] = {.count = 1, .reusable = false}, SHIFT(2338), [5393] = {.count = 1, .reusable = true}, SHIFT(2340), - [5395] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [5397] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), - [5399] = {.count = 1, .reusable = true}, SHIFT(2342), - [5401] = {.count = 1, .reusable = true}, SHIFT(2343), - [5403] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1418), - [5406] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1389), - [5409] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1390), - [5412] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1391), - [5415] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), - [5417] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1393), - [5420] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1394), - [5423] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1397), - [5426] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1398), - [5429] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1399), - [5432] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1400), - [5435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1401), - [5438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1402), - [5441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1403), - [5444] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1404), - [5447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1405), - [5450] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1406), - [5453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1407), - [5456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1408), - [5459] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1409), - [5462] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1410), - [5465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1411), - [5468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1418), - [5471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1412), - [5474] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 39), - [5476] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 39), - [5478] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 40), - [5480] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 40), - [5482] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [5484] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), - [5486] = {.count = 1, .reusable = true}, SHIFT(2344), - [5488] = {.count = 1, .reusable = true}, SHIFT(2345), - [5490] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 41), - [5492] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 41), - [5494] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 42), - [5496] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 42), - [5498] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [5500] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), - [5502] = {.count = 1, .reusable = true}, SHIFT(2346), - [5504] = {.count = 1, .reusable = true}, SHIFT(2347), - [5506] = {.count = 1, .reusable = true}, SHIFT(2348), - [5508] = {.count = 1, .reusable = true}, SHIFT(2349), - [5510] = {.count = 1, .reusable = true}, SHIFT(2351), - [5512] = {.count = 1, .reusable = true}, SHIFT(2353), - [5514] = {.count = 1, .reusable = true}, SHIFT(2352), - [5516] = {.count = 1, .reusable = false}, SHIFT(2353), - [5518] = {.count = 1, .reusable = true}, SHIFT(2354), - [5520] = {.count = 1, .reusable = true}, SHIFT(2370), + [5395] = {.count = 1, .reusable = true}, SHIFT(2341), + [5397] = {.count = 1, .reusable = false}, SHIFT(2342), + [5399] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 37), + [5401] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 37), + [5403] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 38), + [5405] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 38), + [5407] = {.count = 1, .reusable = true}, SHIFT(2344), + [5409] = {.count = 1, .reusable = true}, SHIFT(2346), + [5411] = {.count = 1, .reusable = true}, SHIFT(2348), + [5413] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [5415] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 4, .alias_sequence_id = 23), + [5417] = {.count = 1, .reusable = true}, SHIFT(2350), + [5419] = {.count = 1, .reusable = true}, SHIFT(2351), + [5421] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1419), + [5424] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1390), + [5427] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1391), + [5430] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1392), + [5433] = {.count = 1, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), + [5435] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1394), + [5438] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1395), + [5441] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1398), + [5444] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1399), + [5447] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1400), + [5450] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1401), + [5453] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1402), + [5456] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1403), + [5459] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1404), + [5462] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1405), + [5465] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1406), + [5468] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1407), + [5471] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1408), + [5474] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1409), + [5477] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1410), + [5480] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1411), + [5483] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1412), + [5486] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1419), + [5489] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1413), + [5492] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 39), + [5494] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 39), + [5496] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 40), + [5498] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 40), + [5500] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [5502] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 24), + [5504] = {.count = 1, .reusable = true}, SHIFT(2352), + [5506] = {.count = 1, .reusable = true}, SHIFT(2353), + [5508] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 41), + [5510] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 41), + [5512] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 42), + [5514] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 42), + [5516] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [5518] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 4, .alias_sequence_id = 25), + [5520] = {.count = 1, .reusable = true}, SHIFT(2354), [5522] = {.count = 1, .reusable = true}, SHIFT(2355), [5524] = {.count = 1, .reusable = true}, SHIFT(2356), - [5526] = {.count = 1, .reusable = false}, SHIFT(2357), - [5528] = {.count = 1, .reusable = false}, SHIFT(2358), - [5530] = {.count = 1, .reusable = false}, SHIFT(2359), - [5532] = {.count = 1, .reusable = false}, SHIFT(2360), + [5526] = {.count = 1, .reusable = true}, SHIFT(2357), + [5528] = {.count = 1, .reusable = true}, SHIFT(2359), + [5530] = {.count = 1, .reusable = true}, SHIFT(2361), + [5532] = {.count = 1, .reusable = true}, SHIFT(2360), [5534] = {.count = 1, .reusable = false}, SHIFT(2361), - [5536] = {.count = 1, .reusable = false}, SHIFT(2362), - [5538] = {.count = 1, .reusable = false}, SHIFT(2363), - [5540] = {.count = 1, .reusable = false}, SHIFT(2364), - [5542] = {.count = 1, .reusable = false}, SHIFT(2365), - [5544] = {.count = 1, .reusable = false}, SHIFT(2366), - [5546] = {.count = 1, .reusable = false}, SHIFT(2367), - [5548] = {.count = 1, .reusable = false}, SHIFT(2370), + [5536] = {.count = 1, .reusable = true}, SHIFT(2362), + [5538] = {.count = 1, .reusable = true}, SHIFT(2378), + [5540] = {.count = 1, .reusable = true}, SHIFT(2363), + [5542] = {.count = 1, .reusable = true}, SHIFT(2364), + [5544] = {.count = 1, .reusable = false}, SHIFT(2365), + [5546] = {.count = 1, .reusable = false}, SHIFT(2366), + [5548] = {.count = 1, .reusable = false}, SHIFT(2367), [5550] = {.count = 1, .reusable = false}, SHIFT(2368), - [5552] = {.count = 1, .reusable = true}, SHIFT(2372), - [5554] = {.count = 1, .reusable = false}, SHIFT(2372), - [5556] = {.count = 1, .reusable = true}, SHIFT(2373), - [5558] = {.count = 1, .reusable = false}, SHIFT(2373), - [5560] = {.count = 1, .reusable = true}, SHIFT(2374), + [5552] = {.count = 1, .reusable = false}, SHIFT(2369), + [5554] = {.count = 1, .reusable = false}, SHIFT(2370), + [5556] = {.count = 1, .reusable = false}, SHIFT(2371), + [5558] = {.count = 1, .reusable = false}, SHIFT(2372), + [5560] = {.count = 1, .reusable = false}, SHIFT(2373), [5562] = {.count = 1, .reusable = false}, SHIFT(2374), - [5564] = {.count = 1, .reusable = true}, SHIFT(2375), - [5566] = {.count = 1, .reusable = false}, SHIFT(2375), - [5568] = {.count = 1, .reusable = true}, SHIFT(2376), - [5570] = {.count = 1, .reusable = false}, SHIFT(2376), - [5572] = {.count = 1, .reusable = true}, SHIFT(2377), - [5574] = {.count = 1, .reusable = false}, SHIFT(2377), - [5576] = {.count = 1, .reusable = true}, SHIFT(2378), - [5578] = {.count = 1, .reusable = false}, SHIFT(2378), - [5580] = {.count = 1, .reusable = true}, SHIFT(2379), - [5582] = {.count = 1, .reusable = false}, SHIFT(2379), - [5584] = {.count = 1, .reusable = true}, SHIFT(2380), - [5586] = {.count = 1, .reusable = false}, SHIFT(2380), - [5588] = {.count = 1, .reusable = true}, SHIFT(2381), - [5590] = {.count = 1, .reusable = false}, SHIFT(2381), - [5592] = {.count = 1, .reusable = true}, SHIFT(2382), - [5594] = {.count = 1, .reusable = false}, SHIFT(2382), - [5596] = {.count = 1, .reusable = true}, SHIFT(2384), - [5598] = {.count = 1, .reusable = false}, SHIFT(2384), - [5600] = {.count = 1, .reusable = true}, SHIFT(2385), - [5602] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2016), - [5605] = {.count = 1, .reusable = true}, SHIFT(2386), - [5607] = {.count = 1, .reusable = true}, SHIFT(2387), - [5609] = {.count = 1, .reusable = false}, SHIFT(2387), - [5611] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), - [5613] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), - [5615] = {.count = 1, .reusable = true}, SHIFT(2388), - [5617] = {.count = 1, .reusable = false}, SHIFT(2389), - [5619] = {.count = 1, .reusable = false}, SHIFT(2390), - [5621] = {.count = 1, .reusable = true}, SHIFT(2392), - [5623] = {.count = 1, .reusable = true}, SHIFT(2393), - [5625] = {.count = 1, .reusable = false}, SHIFT(2395), - [5627] = {.count = 1, .reusable = true}, SHIFT(2397), - [5629] = {.count = 1, .reusable = true}, SHIFT(2399), - [5631] = {.count = 1, .reusable = true}, SHIFT(2400), - [5633] = {.count = 1, .reusable = true}, SHIFT(2402), - [5635] = {.count = 1, .reusable = true}, SHIFT(2401), - [5637] = {.count = 1, .reusable = false}, SHIFT(2402), - [5639] = {.count = 1, .reusable = true}, SHIFT(2403), - [5641] = {.count = 1, .reusable = true}, SHIFT(2404), - [5643] = {.count = 1, .reusable = true}, SHIFT(2405), - [5645] = {.count = 1, .reusable = false}, SHIFT(2405), - [5647] = {.count = 1, .reusable = true}, SHIFT(2407), - [5649] = {.count = 1, .reusable = true}, SHIFT(2406), - [5651] = {.count = 1, .reusable = false}, SHIFT(2407), - [5653] = {.count = 1, .reusable = true}, SHIFT(2408), - [5655] = {.count = 1, .reusable = true}, SHIFT(2409), - [5657] = {.count = 1, .reusable = true}, SHIFT(2410), + [5564] = {.count = 1, .reusable = false}, SHIFT(2375), + [5566] = {.count = 1, .reusable = false}, SHIFT(2378), + [5568] = {.count = 1, .reusable = false}, SHIFT(2376), + [5570] = {.count = 1, .reusable = true}, SHIFT(2380), + [5572] = {.count = 1, .reusable = false}, SHIFT(2380), + [5574] = {.count = 1, .reusable = true}, SHIFT(2381), + [5576] = {.count = 1, .reusable = false}, SHIFT(2381), + [5578] = {.count = 1, .reusable = true}, SHIFT(2382), + [5580] = {.count = 1, .reusable = false}, SHIFT(2382), + [5582] = {.count = 1, .reusable = true}, SHIFT(2383), + [5584] = {.count = 1, .reusable = false}, SHIFT(2383), + [5586] = {.count = 1, .reusable = true}, SHIFT(2384), + [5588] = {.count = 1, .reusable = false}, SHIFT(2384), + [5590] = {.count = 1, .reusable = true}, SHIFT(2385), + [5592] = {.count = 1, .reusable = false}, SHIFT(2385), + [5594] = {.count = 1, .reusable = true}, SHIFT(2386), + [5596] = {.count = 1, .reusable = false}, SHIFT(2386), + [5598] = {.count = 1, .reusable = true}, SHIFT(2387), + [5600] = {.count = 1, .reusable = false}, SHIFT(2387), + [5602] = {.count = 1, .reusable = true}, SHIFT(2388), + [5604] = {.count = 1, .reusable = false}, SHIFT(2388), + [5606] = {.count = 1, .reusable = true}, SHIFT(2389), + [5608] = {.count = 1, .reusable = false}, SHIFT(2389), + [5610] = {.count = 1, .reusable = true}, SHIFT(2390), + [5612] = {.count = 1, .reusable = false}, SHIFT(2390), + [5614] = {.count = 1, .reusable = true}, SHIFT(2391), + [5616] = {.count = 1, .reusable = true}, SHIFT(2393), + [5618] = {.count = 1, .reusable = false}, SHIFT(2393), + [5620] = {.count = 1, .reusable = true}, SHIFT(2394), + [5622] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2021), + [5625] = {.count = 1, .reusable = true}, SHIFT(2395), + [5627] = {.count = 1, .reusable = true}, SHIFT(2396), + [5629] = {.count = 1, .reusable = false}, SHIFT(2396), + [5631] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 4), + [5633] = {.count = 1, .reusable = false}, REDUCE(sym_case_statement, 4), + [5635] = {.count = 1, .reusable = true}, SHIFT(2397), + [5637] = {.count = 1, .reusable = false}, SHIFT(2398), + [5639] = {.count = 1, .reusable = false}, SHIFT(2399), + [5641] = {.count = 1, .reusable = true}, SHIFT(2401), + [5643] = {.count = 1, .reusable = true}, SHIFT(2402), + [5645] = {.count = 1, .reusable = false}, SHIFT(2402), + [5647] = {.count = 1, .reusable = true}, SHIFT(2403), + [5649] = {.count = 1, .reusable = false}, SHIFT(2405), + [5651] = {.count = 1, .reusable = true}, SHIFT(2407), + [5653] = {.count = 1, .reusable = true}, SHIFT(2409), + [5655] = {.count = 1, .reusable = true}, SHIFT(2410), + [5657] = {.count = 1, .reusable = true}, SHIFT(2412), [5659] = {.count = 1, .reusable = true}, SHIFT(2411), - [5661] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_declaration, 2), - [5663] = {.count = 1, .reusable = true}, SHIFT(2414), - [5665] = {.count = 1, .reusable = false}, SHIFT(2414), + [5661] = {.count = 1, .reusable = false}, SHIFT(2412), + [5663] = {.count = 1, .reusable = true}, SHIFT(2413), + [5665] = {.count = 1, .reusable = true}, SHIFT(2414), [5667] = {.count = 1, .reusable = true}, SHIFT(2415), [5669] = {.count = 1, .reusable = false}, SHIFT(2415), - [5671] = {.count = 1, .reusable = false}, SHIFT(390), - [5673] = {.count = 1, .reusable = false}, SHIFT(402), - [5675] = {.count = 1, .reusable = true}, SHIFT(2416), - [5677] = {.count = 1, .reusable = false}, SHIFT(2416), - [5679] = {.count = 1, .reusable = true}, SHIFT(2417), - [5681] = {.count = 1, .reusable = true}, SHIFT(2418), - [5683] = {.count = 1, .reusable = true}, SHIFT(2419), - [5685] = {.count = 1, .reusable = false}, SHIFT(2419), - [5687] = {.count = 1, .reusable = true}, SHIFT(2421), - [5689] = {.count = 1, .reusable = true}, SHIFT(2422), - [5691] = {.count = 1, .reusable = true}, SHIFT(2423), - [5693] = {.count = 1, .reusable = true}, SHIFT(2424), - [5695] = {.count = 1, .reusable = true}, SHIFT(2425), - [5697] = {.count = 1, .reusable = true}, SHIFT(2426), - [5699] = {.count = 1, .reusable = true}, SHIFT(2427), - [5701] = {.count = 1, .reusable = true}, SHIFT(2428), - [5703] = {.count = 1, .reusable = true}, SHIFT(2429), - [5705] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), - [5707] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 43), - [5709] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 44), - [5711] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 22), - [5713] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 45), - [5715] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 45), - [5717] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 46), - [5719] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 46), - [5721] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 47), - [5723] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 47), - [5725] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 48), - [5727] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 48), - [5729] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 49), - [5731] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 49), - [5733] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 50), - [5735] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 50), - [5737] = {.count = 1, .reusable = true}, SHIFT(2433), - [5739] = {.count = 1, .reusable = true}, SHIFT(2434), - [5741] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), - [5743] = {.count = 1, .reusable = true}, SHIFT(2435), - [5745] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), - [5747] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), - [5749] = {.count = 1, .reusable = true}, SHIFT(2436), - [5751] = {.count = 1, .reusable = false}, SHIFT(2437), - [5753] = {.count = 1, .reusable = true}, SHIFT(2437), - [5755] = {.count = 1, .reusable = false}, SHIFT(2440), - [5757] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1667), - [5760] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2144), - [5763] = {.count = 1, .reusable = true}, SHIFT(2441), - [5765] = {.count = 1, .reusable = true}, SHIFT(2442), - [5767] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2152), - [5770] = {.count = 1, .reusable = false}, SHIFT(575), - [5772] = {.count = 1, .reusable = false}, SHIFT(576), - [5774] = {.count = 1, .reusable = true}, SHIFT(2447), - [5776] = {.count = 1, .reusable = false}, SHIFT(2447), - [5778] = {.count = 1, .reusable = true}, SHIFT(2448), - [5780] = {.count = 1, .reusable = false}, SHIFT(2448), - [5782] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2159), - [5785] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), - [5787] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 4), - [5789] = {.count = 1, .reusable = true}, SHIFT(2450), - [5791] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 4), - [5793] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 4), - [5795] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2164), - [5798] = {.count = 1, .reusable = true}, SHIFT(2451), - [5800] = {.count = 1, .reusable = true}, SHIFT(2452), - [5802] = {.count = 1, .reusable = true}, SHIFT(2453), - [5804] = {.count = 1, .reusable = true}, SHIFT(2454), - [5806] = {.count = 1, .reusable = true}, SHIFT(2456), - [5808] = {.count = 1, .reusable = true}, SHIFT(2458), - [5810] = {.count = 1, .reusable = true}, SHIFT(2457), - [5812] = {.count = 1, .reusable = false}, SHIFT(2458), - [5814] = {.count = 1, .reusable = true}, SHIFT(2459), - [5816] = {.count = 1, .reusable = true}, SHIFT(2460), - [5818] = {.count = 1, .reusable = false}, SHIFT(2460), - [5820] = {.count = 1, .reusable = true}, SHIFT(2461), - [5822] = {.count = 1, .reusable = false}, SHIFT(2461), + [5671] = {.count = 1, .reusable = true}, SHIFT(2417), + [5673] = {.count = 1, .reusable = true}, SHIFT(2416), + [5675] = {.count = 1, .reusable = false}, SHIFT(2417), + [5677] = {.count = 1, .reusable = true}, SHIFT(2418), + [5679] = {.count = 1, .reusable = true}, SHIFT(2419), + [5681] = {.count = 1, .reusable = true}, SHIFT(2420), + [5683] = {.count = 1, .reusable = true}, SHIFT(2421), + [5685] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_declaration, 2), + [5687] = {.count = 1, .reusable = true}, SHIFT(2424), + [5689] = {.count = 1, .reusable = false}, SHIFT(2424), + [5691] = {.count = 1, .reusable = true}, SHIFT(2425), + [5693] = {.count = 1, .reusable = false}, SHIFT(2425), + [5695] = {.count = 1, .reusable = false}, SHIFT(390), + [5697] = {.count = 1, .reusable = false}, SHIFT(402), + [5699] = {.count = 1, .reusable = true}, SHIFT(2426), + [5701] = {.count = 1, .reusable = false}, SHIFT(2426), + [5703] = {.count = 1, .reusable = true}, SHIFT(2427), + [5705] = {.count = 1, .reusable = true}, SHIFT(2428), + [5707] = {.count = 1, .reusable = true}, SHIFT(2429), + [5709] = {.count = 1, .reusable = false}, SHIFT(2429), + [5711] = {.count = 1, .reusable = true}, SHIFT(2431), + [5713] = {.count = 1, .reusable = true}, SHIFT(2432), + [5715] = {.count = 1, .reusable = true}, SHIFT(2433), + [5717] = {.count = 1, .reusable = true}, SHIFT(2434), + [5719] = {.count = 1, .reusable = true}, SHIFT(2435), + [5721] = {.count = 1, .reusable = true}, SHIFT(2436), + [5723] = {.count = 1, .reusable = true}, SHIFT(2437), + [5725] = {.count = 1, .reusable = true}, SHIFT(2438), + [5727] = {.count = 1, .reusable = true}, SHIFT(2439), + [5729] = {.count = 1, .reusable = true}, REDUCE(sym_array_type_declarator, 5), + [5731] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 43), + [5733] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 44), + [5735] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 3, .alias_sequence_id = 22), + [5737] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 45), + [5739] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 45), + [5741] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 46), + [5743] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_field_declaration_list, 5, .alias_sequence_id = 46), + [5745] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 47), + [5747] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 47), + [5749] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 48), + [5751] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 48), + [5753] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 49), + [5755] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 49), + [5757] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 50), + [5759] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_field_declaration_list, 5, .alias_sequence_id = 50), + [5761] = {.count = 1, .reusable = true}, SHIFT(2443), + [5763] = {.count = 1, .reusable = true}, SHIFT(2444), + [5765] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 4), + [5767] = {.count = 1, .reusable = true}, SHIFT(2445), + [5769] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 5), + [5771] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 5), + [5773] = {.count = 1, .reusable = true}, SHIFT(2446), + [5775] = {.count = 1, .reusable = false}, SHIFT(2447), + [5777] = {.count = 1, .reusable = true}, SHIFT(2447), + [5779] = {.count = 1, .reusable = false}, SHIFT(2450), + [5781] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1670), + [5784] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2150), + [5787] = {.count = 1, .reusable = true}, SHIFT(2451), + [5789] = {.count = 1, .reusable = true}, SHIFT(2452), + [5791] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2158), + [5794] = {.count = 1, .reusable = false}, SHIFT(575), + [5796] = {.count = 1, .reusable = false}, SHIFT(576), + [5798] = {.count = 1, .reusable = true}, SHIFT(2457), + [5800] = {.count = 1, .reusable = false}, SHIFT(2457), + [5802] = {.count = 1, .reusable = true}, SHIFT(2458), + [5804] = {.count = 1, .reusable = false}, SHIFT(2458), + [5806] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2165), + [5809] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 4), + [5811] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 4), + [5813] = {.count = 1, .reusable = true}, SHIFT(2460), + [5815] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_function_declarator, 4), + [5817] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_function_declarator, 4), + [5819] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2170), + [5822] = {.count = 1, .reusable = true}, SHIFT(2461), [5824] = {.count = 1, .reusable = true}, SHIFT(2462), - [5826] = {.count = 1, .reusable = false}, SHIFT(2462), - [5828] = {.count = 1, .reusable = true}, SHIFT(2463), - [5830] = {.count = 1, .reusable = false}, SHIFT(2463), - [5832] = {.count = 1, .reusable = true}, SHIFT(2464), - [5834] = {.count = 1, .reusable = false}, SHIFT(2464), - [5836] = {.count = 1, .reusable = true}, SHIFT(2465), - [5838] = {.count = 1, .reusable = false}, SHIFT(2465), - [5840] = {.count = 1, .reusable = true}, SHIFT(2466), - [5842] = {.count = 1, .reusable = false}, SHIFT(2466), - [5844] = {.count = 1, .reusable = true}, SHIFT(2467), - [5846] = {.count = 1, .reusable = false}, SHIFT(2467), - [5848] = {.count = 1, .reusable = true}, SHIFT(2468), - [5850] = {.count = 1, .reusable = false}, SHIFT(2468), - [5852] = {.count = 1, .reusable = true}, SHIFT(2469), - [5854] = {.count = 1, .reusable = false}, SHIFT(2469), - [5856] = {.count = 1, .reusable = true}, SHIFT(2470), - [5858] = {.count = 1, .reusable = false}, SHIFT(2470), - [5860] = {.count = 1, .reusable = true}, SHIFT(2471), - [5862] = {.count = 1, .reusable = false}, SHIFT(2472), - [5864] = {.count = 1, .reusable = true}, SHIFT(2472), - [5866] = {.count = 1, .reusable = false}, SHIFT(2475), - [5868] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1734), - [5871] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2192), - [5874] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2199), - [5877] = {.count = 1, .reusable = false}, SHIFT(659), - [5879] = {.count = 1, .reusable = false}, SHIFT(661), - [5881] = {.count = 1, .reusable = true}, SHIFT(2478), - [5883] = {.count = 1, .reusable = false}, SHIFT(2478), - [5885] = {.count = 1, .reusable = true}, SHIFT(2479), - [5887] = {.count = 1, .reusable = false}, SHIFT(2479), - [5889] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), - [5891] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), - [5893] = {.count = 1, .reusable = true}, SHIFT(2481), - [5895] = {.count = 1, .reusable = false}, SHIFT(682), - [5897] = {.count = 1, .reusable = false}, SHIFT(683), - [5899] = {.count = 1, .reusable = true}, SHIFT(2482), - [5901] = {.count = 1, .reusable = false}, SHIFT(2482), - [5903] = {.count = 1, .reusable = true}, SHIFT(2483), - [5905] = {.count = 1, .reusable = false}, SHIFT(2483), - [5907] = {.count = 1, .reusable = false}, SHIFT(692), - [5909] = {.count = 1, .reusable = false}, SHIFT(693), - [5911] = {.count = 1, .reusable = true}, SHIFT(2484), - [5913] = {.count = 1, .reusable = false}, SHIFT(2484), - [5915] = {.count = 1, .reusable = true}, SHIFT(2485), - [5917] = {.count = 1, .reusable = false}, SHIFT(2485), - [5919] = {.count = 1, .reusable = true}, SHIFT(2486), - [5921] = {.count = 1, .reusable = false}, SHIFT(2487), - [5923] = {.count = 1, .reusable = true}, SHIFT(2487), - [5925] = {.count = 1, .reusable = false}, SHIFT(2490), - [5927] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1824), - [5930] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2222), - [5933] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2226), - [5936] = {.count = 1, .reusable = false}, SHIFT(729), - [5938] = {.count = 1, .reusable = false}, SHIFT(733), - [5940] = {.count = 1, .reusable = true}, SHIFT(2491), - [5942] = {.count = 1, .reusable = false}, SHIFT(2491), - [5944] = {.count = 1, .reusable = true}, SHIFT(2492), - [5946] = {.count = 1, .reusable = false}, SHIFT(2492), - [5948] = {.count = 1, .reusable = true}, SHIFT(2493), - [5950] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 3), - [5952] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5, .alias_sequence_id = 20), - [5954] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5, .alias_sequence_id = 20), - [5956] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5), - [5958] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5), - [5960] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 5), - [5962] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 5), - [5964] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), - [5966] = {.count = 1, .reusable = false}, SHIFT(2495), - [5968] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2243), - [5971] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2251), - [5974] = {.count = 1, .reusable = true}, SHIFT(2498), - [5976] = {.count = 1, .reusable = true}, SHIFT(2499), - [5978] = {.count = 1, .reusable = true}, SHIFT(2500), - [5980] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2264), - [5983] = {.count = 1, .reusable = false}, SHIFT(2501), - [5985] = {.count = 1, .reusable = false}, SHIFT(2502), - [5987] = {.count = 1, .reusable = false}, SHIFT(2503), - [5989] = {.count = 1, .reusable = true}, SHIFT(2504), - [5991] = {.count = 1, .reusable = true}, SHIFT(2505), - [5993] = {.count = 1, .reusable = false}, SHIFT(2506), - [5995] = {.count = 1, .reusable = true}, SHIFT(2509), - [5997] = {.count = 1, .reusable = true}, SHIFT(2510), - [5999] = {.count = 1, .reusable = false}, SHIFT(2511), - [6001] = {.count = 1, .reusable = true}, SHIFT(2514), - [6003] = {.count = 1, .reusable = true}, SHIFT(2515), - [6005] = {.count = 1, .reusable = false}, SHIFT(2516), - [6007] = {.count = 1, .reusable = false}, SHIFT(2519), - [6009] = {.count = 1, .reusable = false}, SHIFT(2520), - [6011] = {.count = 1, .reusable = false}, SHIFT(2522), - [6013] = {.count = 1, .reusable = false}, SHIFT(2526), - [6015] = {.count = 1, .reusable = false}, SHIFT(2530), - [6017] = {.count = 1, .reusable = false}, SHIFT(2534), - [6019] = {.count = 1, .reusable = false}, SHIFT(2536), - [6021] = {.count = 1, .reusable = true}, SHIFT(2537), - [6023] = {.count = 1, .reusable = true}, SHIFT(2538), - [6025] = {.count = 1, .reusable = false}, SHIFT(2538), - [6027] = {.count = 1, .reusable = true}, SHIFT(2539), - [6029] = {.count = 1, .reusable = false}, SHIFT(2539), - [6031] = {.count = 1, .reusable = true}, SHIFT(2540), - [6033] = {.count = 1, .reusable = false}, SHIFT(2541), - [6035] = {.count = 1, .reusable = true}, SHIFT(2544), - [6037] = {.count = 1, .reusable = false}, SHIFT(2544), - [6039] = {.count = 1, .reusable = true}, SHIFT(2545), - [6041] = {.count = 1, .reusable = true}, SHIFT(2547), - [6043] = {.count = 1, .reusable = true}, SHIFT(2546), - [6045] = {.count = 1, .reusable = false}, SHIFT(2547), - [6047] = {.count = 1, .reusable = true}, SHIFT(2549), - [6049] = {.count = 1, .reusable = true}, SHIFT(2550), - [6051] = {.count = 1, .reusable = false}, SHIFT(2551), - [6053] = {.count = 1, .reusable = true}, SHIFT(2553), - [6055] = {.count = 1, .reusable = true}, SHIFT(2555), - [6057] = {.count = 1, .reusable = true}, SHIFT(2557), - [6059] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1944), - [6062] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1920), - [6065] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1921), - [6068] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1922), - [6071] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1923), - [6074] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1924), - [6077] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1925), - [6080] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1926), - [6083] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1927), - [6086] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1928), - [6089] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1929), - [6092] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1930), - [6095] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1931), - [6098] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1932), - [6101] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1933), - [6104] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1934), - [6107] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1935), - [6110] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1936), - [6113] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1937), - [6116] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1938), - [6119] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1939), - [6122] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1944), - [6125] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1940), - [6128] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 43), - [6130] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 44), - [6132] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 22), - [6134] = {.count = 1, .reusable = true}, SHIFT(2561), - [6136] = {.count = 1, .reusable = true}, SHIFT(2562), - [6138] = {.count = 1, .reusable = true}, SHIFT(2564), - [6140] = {.count = 1, .reusable = true}, SHIFT(2565), - [6142] = {.count = 1, .reusable = true}, SHIFT(2567), - [6144] = {.count = 1, .reusable = true}, SHIFT(2568), - [6146] = {.count = 1, .reusable = true}, SHIFT(2570), - [6148] = {.count = 1, .reusable = true}, SHIFT(2569), - [6150] = {.count = 1, .reusable = false}, SHIFT(2570), - [6152] = {.count = 1, .reusable = true}, SHIFT(2571), - [6154] = {.count = 1, .reusable = true}, SHIFT(2572), - [6156] = {.count = 1, .reusable = true}, SHIFT(2573), - [6158] = {.count = 1, .reusable = true}, SHIFT(2574), - [6160] = {.count = 1, .reusable = false}, SHIFT(2574), - [6162] = {.count = 1, .reusable = true}, SHIFT(2576), - [6164] = {.count = 1, .reusable = true}, SHIFT(2577), - [6166] = {.count = 1, .reusable = false}, SHIFT(2577), - [6168] = {.count = 1, .reusable = true}, SHIFT(2579), - [6170] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 45), - [6172] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 45), - [6174] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 46), - [6176] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 46), - [6178] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 47), - [6180] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 47), - [6182] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 48), - [6184] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 48), - [6186] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 49), - [6188] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 49), - [6190] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 50), - [6192] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 50), - [6194] = {.count = 1, .reusable = true}, SHIFT(2580), - [6196] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2351), - [6199] = {.count = 1, .reusable = true}, SHIFT(2581), - [6201] = {.count = 1, .reusable = true}, SHIFT(2582), - [6203] = {.count = 1, .reusable = false}, SHIFT(2582), - [6205] = {.count = 1, .reusable = true}, SHIFT(2583), - [6207] = {.count = 1, .reusable = true}, SHIFT(2585), - [6209] = {.count = 1, .reusable = true}, SHIFT(2586), - [6211] = {.count = 1, .reusable = true}, SHIFT(2587), - [6213] = {.count = 1, .reusable = false}, SHIFT(2587), - [6215] = {.count = 1, .reusable = true}, SHIFT(2588), - [6217] = {.count = 1, .reusable = true}, SHIFT(2589), - [6219] = {.count = 1, .reusable = true}, SHIFT(2591), - [6221] = {.count = 1, .reusable = true}, SHIFT(2593), - [6223] = {.count = 1, .reusable = true}, SHIFT(2592), - [6225] = {.count = 1, .reusable = false}, SHIFT(2593), - [6227] = {.count = 1, .reusable = true}, SHIFT(2595), - [6229] = {.count = 1, .reusable = true}, SHIFT(2596), - [6231] = {.count = 1, .reusable = true}, SHIFT(2597), - [6233] = {.count = 1, .reusable = false}, SHIFT(2598), - [6235] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), - [6237] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), - [6239] = {.count = 1, .reusable = false}, SHIFT(2599), - [6241] = {.count = 1, .reusable = true}, SHIFT(2600), - [6243] = {.count = 1, .reusable = true}, SHIFT(2601), - [6245] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 5), - [6247] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 5), - [6249] = {.count = 1, .reusable = false}, SHIFT(845), - [6251] = {.count = 1, .reusable = false}, SHIFT(846), - [6253] = {.count = 1, .reusable = true}, SHIFT(2602), - [6255] = {.count = 1, .reusable = false}, SHIFT(2602), - [6257] = {.count = 1, .reusable = true}, SHIFT(2603), - [6259] = {.count = 1, .reusable = false}, SHIFT(2603), - [6261] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), - [6263] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), - [6265] = {.count = 1, .reusable = false}, SHIFT(2604), - [6267] = {.count = 1, .reusable = false}, SHIFT(2605), - [6269] = {.count = 1, .reusable = false}, SHIFT(2606), - [6271] = {.count = 1, .reusable = false}, SHIFT(2607), - [6273] = {.count = 1, .reusable = false}, SHIFT(2608), - [6275] = {.count = 1, .reusable = false}, SHIFT(2609), - [6277] = {.count = 1, .reusable = false}, SHIFT(2610), - [6279] = {.count = 1, .reusable = false}, SHIFT(2614), - [6281] = {.count = 1, .reusable = true}, SHIFT(2615), - [6283] = {.count = 1, .reusable = true}, SHIFT(2618), - [6285] = {.count = 1, .reusable = false}, SHIFT(2618), - [6287] = {.count = 1, .reusable = true}, SHIFT(2620), - [6289] = {.count = 1, .reusable = true}, SHIFT(2619), - [6291] = {.count = 1, .reusable = false}, SHIFT(2620), - [6293] = {.count = 1, .reusable = true}, SHIFT(2621), - [6295] = {.count = 1, .reusable = true}, SHIFT(2622), - [6297] = {.count = 1, .reusable = false}, SHIFT(2622), - [6299] = {.count = 1, .reusable = true}, SHIFT(2623), - [6301] = {.count = 1, .reusable = false}, SHIFT(2623), - [6303] = {.count = 1, .reusable = true}, SHIFT(2624), - [6305] = {.count = 1, .reusable = true}, SHIFT(2626), - [6307] = {.count = 1, .reusable = true}, SHIFT(2627), - [6309] = {.count = 1, .reusable = true}, SHIFT(2629), - [6311] = {.count = 1, .reusable = false}, SHIFT(2629), - [6313] = {.count = 1, .reusable = true}, SHIFT(2630), - [6315] = {.count = 1, .reusable = true}, SHIFT(2631), - [6317] = {.count = 1, .reusable = true}, SHIFT(2632), - [6319] = {.count = 1, .reusable = true}, SHIFT(2633), - [6321] = {.count = 1, .reusable = true}, SHIFT(2634), - [6323] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 51), - [6325] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 52), - [6327] = {.count = 1, .reusable = false}, SHIFT(2640), - [6329] = {.count = 1, .reusable = false}, SHIFT(2639), - [6331] = {.count = 1, .reusable = false}, SHIFT(2635), - [6333] = {.count = 1, .reusable = false}, SHIFT(2636), - [6335] = {.count = 1, .reusable = false}, SHIFT(2637), - [6337] = {.count = 1, .reusable = false}, SHIFT(2638), + [5826] = {.count = 1, .reusable = true}, SHIFT(2463), + [5828] = {.count = 1, .reusable = true}, SHIFT(2464), + [5830] = {.count = 1, .reusable = true}, SHIFT(2466), + [5832] = {.count = 1, .reusable = true}, SHIFT(2468), + [5834] = {.count = 1, .reusable = true}, SHIFT(2467), + [5836] = {.count = 1, .reusable = false}, SHIFT(2468), + [5838] = {.count = 1, .reusable = true}, SHIFT(2469), + [5840] = {.count = 1, .reusable = true}, SHIFT(2470), + [5842] = {.count = 1, .reusable = false}, SHIFT(2470), + [5844] = {.count = 1, .reusable = true}, SHIFT(2471), + [5846] = {.count = 1, .reusable = false}, SHIFT(2471), + [5848] = {.count = 1, .reusable = true}, SHIFT(2472), + [5850] = {.count = 1, .reusable = false}, SHIFT(2472), + [5852] = {.count = 1, .reusable = true}, SHIFT(2473), + [5854] = {.count = 1, .reusable = false}, SHIFT(2473), + [5856] = {.count = 1, .reusable = true}, SHIFT(2474), + [5858] = {.count = 1, .reusable = false}, SHIFT(2474), + [5860] = {.count = 1, .reusable = true}, SHIFT(2475), + [5862] = {.count = 1, .reusable = false}, SHIFT(2475), + [5864] = {.count = 1, .reusable = true}, SHIFT(2476), + [5866] = {.count = 1, .reusable = false}, SHIFT(2476), + [5868] = {.count = 1, .reusable = true}, SHIFT(2477), + [5870] = {.count = 1, .reusable = false}, SHIFT(2477), + [5872] = {.count = 1, .reusable = true}, SHIFT(2478), + [5874] = {.count = 1, .reusable = false}, SHIFT(2478), + [5876] = {.count = 1, .reusable = true}, SHIFT(2479), + [5878] = {.count = 1, .reusable = false}, SHIFT(2479), + [5880] = {.count = 1, .reusable = true}, SHIFT(2480), + [5882] = {.count = 1, .reusable = false}, SHIFT(2480), + [5884] = {.count = 1, .reusable = true}, SHIFT(2481), + [5886] = {.count = 1, .reusable = false}, SHIFT(2482), + [5888] = {.count = 1, .reusable = true}, SHIFT(2482), + [5890] = {.count = 1, .reusable = false}, SHIFT(2485), + [5892] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1737), + [5895] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2198), + [5898] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2205), + [5901] = {.count = 1, .reusable = false}, SHIFT(659), + [5903] = {.count = 1, .reusable = false}, SHIFT(661), + [5905] = {.count = 1, .reusable = true}, SHIFT(2488), + [5907] = {.count = 1, .reusable = false}, SHIFT(2488), + [5909] = {.count = 1, .reusable = true}, SHIFT(2489), + [5911] = {.count = 1, .reusable = false}, SHIFT(2489), + [5913] = {.count = 1, .reusable = true}, REDUCE(sym_initializer_list, 5), + [5915] = {.count = 1, .reusable = false}, REDUCE(sym_initializer_list, 5), + [5917] = {.count = 1, .reusable = true}, SHIFT(2491), + [5919] = {.count = 1, .reusable = false}, SHIFT(682), + [5921] = {.count = 1, .reusable = false}, SHIFT(683), + [5923] = {.count = 1, .reusable = true}, SHIFT(2492), + [5925] = {.count = 1, .reusable = false}, SHIFT(2492), + [5927] = {.count = 1, .reusable = true}, SHIFT(2493), + [5929] = {.count = 1, .reusable = false}, SHIFT(2493), + [5931] = {.count = 1, .reusable = false}, SHIFT(692), + [5933] = {.count = 1, .reusable = false}, SHIFT(693), + [5935] = {.count = 1, .reusable = true}, SHIFT(2494), + [5937] = {.count = 1, .reusable = false}, SHIFT(2494), + [5939] = {.count = 1, .reusable = true}, SHIFT(2495), + [5941] = {.count = 1, .reusable = false}, SHIFT(2495), + [5943] = {.count = 1, .reusable = true}, SHIFT(2496), + [5945] = {.count = 1, .reusable = false}, SHIFT(2497), + [5947] = {.count = 1, .reusable = true}, SHIFT(2497), + [5949] = {.count = 1, .reusable = false}, SHIFT(2500), + [5951] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(1827), + [5954] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2228), + [5957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2232), + [5960] = {.count = 1, .reusable = false}, SHIFT(729), + [5962] = {.count = 1, .reusable = false}, SHIFT(733), + [5964] = {.count = 1, .reusable = true}, SHIFT(2501), + [5966] = {.count = 1, .reusable = false}, SHIFT(2501), + [5968] = {.count = 1, .reusable = true}, SHIFT(2502), + [5970] = {.count = 1, .reusable = false}, SHIFT(2502), + [5972] = {.count = 1, .reusable = true}, SHIFT(2503), + [5974] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 3), + [5976] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5, .alias_sequence_id = 20), + [5978] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5, .alias_sequence_id = 20), + [5980] = {.count = 1, .reusable = true}, REDUCE(sym_new_expression, 5), + [5982] = {.count = 1, .reusable = false}, REDUCE(sym_new_expression, 5), + [5984] = {.count = 1, .reusable = true}, REDUCE(sym_delete_expression, 5), + [5986] = {.count = 1, .reusable = false}, REDUCE(sym_delete_expression, 5), + [5988] = {.count = 1, .reusable = true}, REDUCE(sym_conditional_expression, 5), + [5990] = {.count = 1, .reusable = false}, SHIFT(2505), + [5992] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2249), + [5995] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2257), + [5998] = {.count = 1, .reusable = true}, SHIFT(2508), + [6000] = {.count = 1, .reusable = true}, SHIFT(2509), + [6002] = {.count = 1, .reusable = true}, SHIFT(2510), + [6004] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2270), + [6007] = {.count = 1, .reusable = false}, SHIFT(2511), + [6009] = {.count = 1, .reusable = false}, SHIFT(2512), + [6011] = {.count = 1, .reusable = false}, SHIFT(2513), + [6013] = {.count = 1, .reusable = true}, SHIFT(2514), + [6015] = {.count = 1, .reusable = true}, SHIFT(2515), + [6017] = {.count = 1, .reusable = false}, SHIFT(2516), + [6019] = {.count = 1, .reusable = true}, SHIFT(2519), + [6021] = {.count = 1, .reusable = true}, SHIFT(2520), + [6023] = {.count = 1, .reusable = false}, SHIFT(2521), + [6025] = {.count = 1, .reusable = true}, SHIFT(2524), + [6027] = {.count = 1, .reusable = true}, SHIFT(2525), + [6029] = {.count = 1, .reusable = false}, SHIFT(2526), + [6031] = {.count = 1, .reusable = false}, SHIFT(2529), + [6033] = {.count = 1, .reusable = false}, SHIFT(2530), + [6035] = {.count = 1, .reusable = false}, SHIFT(2532), + [6037] = {.count = 1, .reusable = false}, SHIFT(2536), + [6039] = {.count = 1, .reusable = false}, SHIFT(2540), + [6041] = {.count = 1, .reusable = false}, SHIFT(2544), + [6043] = {.count = 1, .reusable = false}, SHIFT(2546), + [6045] = {.count = 1, .reusable = true}, SHIFT(2547), + [6047] = {.count = 1, .reusable = true}, SHIFT(2548), + [6049] = {.count = 1, .reusable = false}, SHIFT(2548), + [6051] = {.count = 1, .reusable = true}, SHIFT(2549), + [6053] = {.count = 1, .reusable = true}, SHIFT(2550), + [6055] = {.count = 1, .reusable = false}, SHIFT(2550), + [6057] = {.count = 1, .reusable = true}, SHIFT(2551), + [6059] = {.count = 1, .reusable = false}, SHIFT(2552), + [6061] = {.count = 1, .reusable = true}, SHIFT(2555), + [6063] = {.count = 1, .reusable = false}, SHIFT(2555), + [6065] = {.count = 1, .reusable = true}, SHIFT(2556), + [6067] = {.count = 1, .reusable = true}, SHIFT(2558), + [6069] = {.count = 1, .reusable = true}, SHIFT(2557), + [6071] = {.count = 1, .reusable = false}, SHIFT(2558), + [6073] = {.count = 1, .reusable = true}, SHIFT(2560), + [6075] = {.count = 1, .reusable = true}, SHIFT(2561), + [6077] = {.count = 1, .reusable = false}, SHIFT(2562), + [6079] = {.count = 1, .reusable = true}, SHIFT(2564), + [6081] = {.count = 1, .reusable = true}, SHIFT(2566), + [6083] = {.count = 1, .reusable = true}, SHIFT(2568), + [6085] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1947), + [6088] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1923), + [6091] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1924), + [6094] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1925), + [6097] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1926), + [6100] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1927), + [6103] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1928), + [6106] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1929), + [6109] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1930), + [6112] = {.count = 2, .reusable = true}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1931), + [6115] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1932), + [6118] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1933), + [6121] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1934), + [6124] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1935), + [6127] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1936), + [6130] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1937), + [6133] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1938), + [6136] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1939), + [6139] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1940), + [6142] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1941), + [6145] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1942), + [6148] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1947), + [6151] = {.count = 2, .reusable = false}, REDUCE(aux_sym_preproc_if_in_compound_statement_repeat1, 2), SHIFT_REPEAT(1943), + [6154] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 43), + [6156] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 44), + [6158] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_elif_in_compound_statement, 3, .alias_sequence_id = 22), + [6160] = {.count = 1, .reusable = true}, SHIFT(2572), + [6162] = {.count = 1, .reusable = true}, SHIFT(2573), + [6164] = {.count = 1, .reusable = true}, SHIFT(2575), + [6166] = {.count = 1, .reusable = true}, SHIFT(2576), + [6168] = {.count = 1, .reusable = false}, SHIFT(2576), + [6170] = {.count = 1, .reusable = true}, SHIFT(2577), + [6172] = {.count = 1, .reusable = true}, SHIFT(2579), + [6174] = {.count = 1, .reusable = true}, SHIFT(2580), + [6176] = {.count = 1, .reusable = true}, SHIFT(2582), + [6178] = {.count = 1, .reusable = true}, SHIFT(2581), + [6180] = {.count = 1, .reusable = false}, SHIFT(2582), + [6182] = {.count = 1, .reusable = true}, SHIFT(2583), + [6184] = {.count = 1, .reusable = true}, SHIFT(2584), + [6186] = {.count = 1, .reusable = true}, SHIFT(2585), + [6188] = {.count = 1, .reusable = true}, SHIFT(2586), + [6190] = {.count = 1, .reusable = false}, SHIFT(2586), + [6192] = {.count = 1, .reusable = true}, SHIFT(2588), + [6194] = {.count = 1, .reusable = true}, SHIFT(2589), + [6196] = {.count = 1, .reusable = false}, SHIFT(2589), + [6198] = {.count = 1, .reusable = true}, SHIFT(2591), + [6200] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 45), + [6202] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 45), + [6204] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 46), + [6206] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_if_in_compound_statement, 5, .alias_sequence_id = 46), + [6208] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 47), + [6210] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 47), + [6212] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 48), + [6214] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 48), + [6216] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 49), + [6218] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 49), + [6220] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 50), + [6222] = {.count = 1, .reusable = false}, REDUCE(sym_preproc_ifdef_in_compound_statement, 5, .alias_sequence_id = 50), + [6224] = {.count = 1, .reusable = true}, SHIFT(2592), + [6226] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2359), + [6229] = {.count = 1, .reusable = true}, SHIFT(2593), + [6231] = {.count = 1, .reusable = true}, SHIFT(2594), + [6233] = {.count = 1, .reusable = false}, SHIFT(2594), + [6235] = {.count = 1, .reusable = true}, SHIFT(2595), + [6237] = {.count = 1, .reusable = true}, SHIFT(2597), + [6239] = {.count = 1, .reusable = true}, SHIFT(2598), + [6241] = {.count = 1, .reusable = true}, SHIFT(2599), + [6243] = {.count = 1, .reusable = true}, SHIFT(2600), + [6245] = {.count = 1, .reusable = false}, SHIFT(2600), + [6247] = {.count = 1, .reusable = true}, SHIFT(2601), + [6249] = {.count = 1, .reusable = true}, SHIFT(2602), + [6251] = {.count = 1, .reusable = true}, SHIFT(2604), + [6253] = {.count = 1, .reusable = true}, SHIFT(2606), + [6255] = {.count = 1, .reusable = true}, SHIFT(2605), + [6257] = {.count = 1, .reusable = false}, SHIFT(2606), + [6259] = {.count = 1, .reusable = true}, SHIFT(2608), + [6261] = {.count = 1, .reusable = true}, SHIFT(2609), + [6263] = {.count = 1, .reusable = true}, SHIFT(2610), + [6265] = {.count = 1, .reusable = false}, SHIFT(2611), + [6267] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 5), + [6269] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 5), + [6271] = {.count = 1, .reusable = false}, SHIFT(2612), + [6273] = {.count = 1, .reusable = true}, SHIFT(2613), + [6275] = {.count = 1, .reusable = true}, SHIFT(2614), + [6277] = {.count = 1, .reusable = true}, REDUCE(sym_switch_statement, 5), + [6279] = {.count = 1, .reusable = false}, REDUCE(sym_switch_statement, 5), + [6281] = {.count = 1, .reusable = false}, SHIFT(846), + [6283] = {.count = 1, .reusable = false}, SHIFT(847), + [6285] = {.count = 1, .reusable = true}, SHIFT(2616), + [6287] = {.count = 1, .reusable = false}, SHIFT(2616), + [6289] = {.count = 1, .reusable = true}, SHIFT(2617), + [6291] = {.count = 1, .reusable = false}, SHIFT(2617), + [6293] = {.count = 1, .reusable = true}, REDUCE(sym_while_statement, 5), + [6295] = {.count = 1, .reusable = false}, REDUCE(sym_while_statement, 5), + [6297] = {.count = 1, .reusable = false}, SHIFT(2618), + [6299] = {.count = 1, .reusable = false}, SHIFT(2619), + [6301] = {.count = 1, .reusable = false}, SHIFT(2620), + [6303] = {.count = 1, .reusable = false}, SHIFT(2621), + [6305] = {.count = 1, .reusable = false}, SHIFT(2622), + [6307] = {.count = 1, .reusable = false}, SHIFT(2623), + [6309] = {.count = 1, .reusable = false}, SHIFT(2624), + [6311] = {.count = 1, .reusable = true}, SHIFT(2626), + [6313] = {.count = 1, .reusable = false}, SHIFT(2629), + [6315] = {.count = 1, .reusable = true}, SHIFT(2630), + [6317] = {.count = 1, .reusable = true}, SHIFT(2633), + [6319] = {.count = 1, .reusable = false}, SHIFT(2633), + [6321] = {.count = 1, .reusable = true}, SHIFT(2635), + [6323] = {.count = 1, .reusable = true}, SHIFT(2634), + [6325] = {.count = 1, .reusable = false}, SHIFT(2635), + [6327] = {.count = 1, .reusable = true}, SHIFT(2636), + [6329] = {.count = 1, .reusable = true}, SHIFT(2637), + [6331] = {.count = 1, .reusable = false}, SHIFT(2637), + [6333] = {.count = 1, .reusable = true}, SHIFT(2638), + [6335] = {.count = 1, .reusable = false}, SHIFT(2638), + [6337] = {.count = 1, .reusable = true}, SHIFT(2639), [6339] = {.count = 1, .reusable = true}, SHIFT(2641), - [6341] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), - [6343] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2440), - [6346] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), - [6348] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), - [6350] = {.count = 1, .reusable = true}, SHIFT(2647), - [6352] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), - [6354] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 5), - [6356] = {.count = 1, .reusable = true}, SHIFT(2648), - [6358] = {.count = 1, .reusable = true}, SHIFT(2649), - [6360] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2456), - [6363] = {.count = 1, .reusable = true}, SHIFT(2650), - [6365] = {.count = 1, .reusable = true}, SHIFT(2651), + [6341] = {.count = 1, .reusable = true}, SHIFT(2642), + [6343] = {.count = 1, .reusable = true}, SHIFT(2644), + [6345] = {.count = 1, .reusable = false}, SHIFT(2644), + [6347] = {.count = 1, .reusable = true}, SHIFT(2645), + [6349] = {.count = 1, .reusable = true}, SHIFT(2646), + [6351] = {.count = 1, .reusable = true}, SHIFT(2647), + [6353] = {.count = 1, .reusable = true}, SHIFT(2648), + [6355] = {.count = 1, .reusable = true}, SHIFT(2649), + [6357] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 51), + [6359] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_field_declaration_list, 4, .alias_sequence_id = 52), + [6361] = {.count = 1, .reusable = false}, SHIFT(2655), + [6363] = {.count = 1, .reusable = false}, SHIFT(2654), + [6365] = {.count = 1, .reusable = false}, SHIFT(2650), [6367] = {.count = 1, .reusable = false}, SHIFT(2651), - [6369] = {.count = 1, .reusable = true}, SHIFT(2652), - [6371] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2475), - [6374] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2481), - [6377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2490), - [6380] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 4), - [6382] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2495), - [6385] = {.count = 1, .reusable = true}, SHIFT(2661), - [6387] = {.count = 1, .reusable = true}, SHIFT(2662), - [6389] = {.count = 1, .reusable = true}, SHIFT(2663), - [6391] = {.count = 1, .reusable = true}, SHIFT(2664), - [6393] = {.count = 1, .reusable = true}, SHIFT(2665), - [6395] = {.count = 1, .reusable = true}, SHIFT(2666), - [6397] = {.count = 1, .reusable = true}, SHIFT(2667), - [6399] = {.count = 1, .reusable = true}, SHIFT(2668), - [6401] = {.count = 1, .reusable = true}, SHIFT(2669), - [6403] = {.count = 1, .reusable = false}, SHIFT(2670), - [6405] = {.count = 1, .reusable = false}, SHIFT(2671), - [6407] = {.count = 1, .reusable = false}, SHIFT(2672), - [6409] = {.count = 1, .reusable = true}, SHIFT(2673), - [6411] = {.count = 1, .reusable = true}, SHIFT(2674), - [6413] = {.count = 1, .reusable = false}, SHIFT(2675), - [6415] = {.count = 1, .reusable = true}, SHIFT(2678), - [6417] = {.count = 1, .reusable = true}, SHIFT(2679), - [6419] = {.count = 1, .reusable = false}, SHIFT(2680), - [6421] = {.count = 1, .reusable = true}, SHIFT(2683), - [6423] = {.count = 1, .reusable = true}, SHIFT(2684), - [6425] = {.count = 1, .reusable = false}, SHIFT(2685), - [6427] = {.count = 1, .reusable = true}, SHIFT(2688), - [6429] = {.count = 1, .reusable = true}, SHIFT(2689), - [6431] = {.count = 1, .reusable = true}, SHIFT(2691), - [6433] = {.count = 1, .reusable = true}, SHIFT(2692), - [6435] = {.count = 1, .reusable = true}, SHIFT(2694), - [6437] = {.count = 1, .reusable = true}, SHIFT(2695), - [6439] = {.count = 1, .reusable = true}, SHIFT(2697), - [6441] = {.count = 1, .reusable = true}, SHIFT(2696), - [6443] = {.count = 1, .reusable = false}, SHIFT(2697), - [6445] = {.count = 1, .reusable = true}, SHIFT(2698), - [6447] = {.count = 1, .reusable = true}, SHIFT(2699), - [6449] = {.count = 1, .reusable = true}, SHIFT(2700), - [6451] = {.count = 1, .reusable = true}, SHIFT(2701), - [6453] = {.count = 1, .reusable = false}, SHIFT(2701), - [6455] = {.count = 1, .reusable = true}, SHIFT(2703), - [6457] = {.count = 1, .reusable = true}, SHIFT(2704), - [6459] = {.count = 1, .reusable = false}, SHIFT(2704), - [6461] = {.count = 1, .reusable = true}, SHIFT(2706), - [6463] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 51), - [6465] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 52), + [6369] = {.count = 1, .reusable = false}, SHIFT(2652), + [6371] = {.count = 1, .reusable = false}, SHIFT(2653), + [6373] = {.count = 1, .reusable = true}, SHIFT(2656), + [6375] = {.count = 1, .reusable = true}, REDUCE(sym_array_field_declarator, 5), + [6377] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2450), + [6380] = {.count = 1, .reusable = true}, REDUCE(sym_field_declaration, 6), + [6382] = {.count = 1, .reusable = false}, REDUCE(sym_field_declaration, 6), + [6384] = {.count = 1, .reusable = true}, SHIFT(2662), + [6386] = {.count = 1, .reusable = true}, REDUCE(sym_abstract_array_declarator, 5), + [6388] = {.count = 1, .reusable = false}, REDUCE(sym_abstract_array_declarator, 5), + [6390] = {.count = 1, .reusable = true}, SHIFT(2663), + [6392] = {.count = 1, .reusable = true}, SHIFT(2664), + [6394] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenated_string_repeat1, 2), SHIFT_REPEAT(2466), + [6397] = {.count = 1, .reusable = true}, SHIFT(2665), + [6399] = {.count = 1, .reusable = true}, SHIFT(2666), + [6401] = {.count = 1, .reusable = false}, SHIFT(2666), + [6403] = {.count = 1, .reusable = true}, SHIFT(2667), + [6405] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2485), + [6408] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2491), + [6411] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2500), + [6414] = {.count = 1, .reusable = true}, REDUCE(sym_new_declarator, 4), + [6416] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2505), + [6419] = {.count = 1, .reusable = true}, SHIFT(2676), + [6421] = {.count = 1, .reusable = true}, SHIFT(2677), + [6423] = {.count = 1, .reusable = true}, SHIFT(2678), + [6425] = {.count = 1, .reusable = true}, SHIFT(2679), + [6427] = {.count = 1, .reusable = true}, SHIFT(2680), + [6429] = {.count = 1, .reusable = true}, SHIFT(2681), + [6431] = {.count = 1, .reusable = true}, SHIFT(2682), + [6433] = {.count = 1, .reusable = true}, SHIFT(2683), + [6435] = {.count = 1, .reusable = true}, SHIFT(2684), + [6437] = {.count = 1, .reusable = false}, SHIFT(2685), + [6439] = {.count = 1, .reusable = false}, SHIFT(2686), + [6441] = {.count = 1, .reusable = false}, SHIFT(2687), + [6443] = {.count = 1, .reusable = true}, SHIFT(2688), + [6445] = {.count = 1, .reusable = true}, SHIFT(2689), + [6447] = {.count = 1, .reusable = false}, SHIFT(2690), + [6449] = {.count = 1, .reusable = true}, SHIFT(2693), + [6451] = {.count = 1, .reusable = true}, SHIFT(2694), + [6453] = {.count = 1, .reusable = false}, SHIFT(2695), + [6455] = {.count = 1, .reusable = true}, SHIFT(2698), + [6457] = {.count = 1, .reusable = true}, SHIFT(2699), + [6459] = {.count = 1, .reusable = false}, SHIFT(2700), + [6461] = {.count = 1, .reusable = true}, SHIFT(2703), + [6463] = {.count = 1, .reusable = true}, SHIFT(2704), + [6465] = {.count = 1, .reusable = true}, SHIFT(2706), [6467] = {.count = 1, .reusable = true}, SHIFT(2707), - [6469] = {.count = 1, .reusable = true}, SHIFT(2723), + [6469] = {.count = 1, .reusable = false}, SHIFT(2707), [6471] = {.count = 1, .reusable = true}, SHIFT(2708), - [6473] = {.count = 1, .reusable = true}, SHIFT(2709), - [6475] = {.count = 1, .reusable = false}, SHIFT(2710), - [6477] = {.count = 1, .reusable = false}, SHIFT(2711), - [6479] = {.count = 1, .reusable = false}, SHIFT(2712), + [6473] = {.count = 1, .reusable = true}, SHIFT(2710), + [6475] = {.count = 1, .reusable = true}, SHIFT(2711), + [6477] = {.count = 1, .reusable = true}, SHIFT(2713), + [6479] = {.count = 1, .reusable = true}, SHIFT(2712), [6481] = {.count = 1, .reusable = false}, SHIFT(2713), - [6483] = {.count = 1, .reusable = false}, SHIFT(2714), - [6485] = {.count = 1, .reusable = false}, SHIFT(2715), - [6487] = {.count = 1, .reusable = false}, SHIFT(2716), - [6489] = {.count = 1, .reusable = false}, SHIFT(2717), - [6491] = {.count = 1, .reusable = false}, SHIFT(2718), - [6493] = {.count = 1, .reusable = false}, SHIFT(2719), - [6495] = {.count = 1, .reusable = false}, SHIFT(2720), - [6497] = {.count = 1, .reusable = false}, SHIFT(2723), - [6499] = {.count = 1, .reusable = false}, SHIFT(2721), - [6501] = {.count = 1, .reusable = true}, SHIFT(2727), - [6503] = {.count = 1, .reusable = false}, SHIFT(2727), - [6505] = {.count = 1, .reusable = true}, SHIFT(2729), - [6507] = {.count = 1, .reusable = true}, SHIFT(2728), - [6509] = {.count = 1, .reusable = false}, SHIFT(2729), - [6511] = {.count = 1, .reusable = true}, SHIFT(2730), - [6513] = {.count = 1, .reusable = true}, SHIFT(2731), - [6515] = {.count = 1, .reusable = false}, SHIFT(2731), - [6517] = {.count = 1, .reusable = true}, SHIFT(2732), - [6519] = {.count = 1, .reusable = false}, SHIFT(2732), - [6521] = {.count = 1, .reusable = true}, SHIFT(2733), - [6523] = {.count = 1, .reusable = true}, SHIFT(2734), - [6525] = {.count = 1, .reusable = false}, SHIFT(1434), - [6527] = {.count = 1, .reusable = false}, SHIFT(1435), - [6529] = {.count = 1, .reusable = true}, SHIFT(2735), + [6483] = {.count = 1, .reusable = true}, SHIFT(2714), + [6485] = {.count = 1, .reusable = true}, SHIFT(2715), + [6487] = {.count = 1, .reusable = true}, SHIFT(2716), + [6489] = {.count = 1, .reusable = true}, SHIFT(2717), + [6491] = {.count = 1, .reusable = false}, SHIFT(2717), + [6493] = {.count = 1, .reusable = true}, SHIFT(2719), + [6495] = {.count = 1, .reusable = true}, SHIFT(2720), + [6497] = {.count = 1, .reusable = false}, SHIFT(2720), + [6499] = {.count = 1, .reusable = true}, SHIFT(2722), + [6501] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 51), + [6503] = {.count = 1, .reusable = true}, REDUCE(sym_preproc_elif_in_compound_statement, 4, .alias_sequence_id = 52), + [6505] = {.count = 1, .reusable = true}, SHIFT(2723), + [6507] = {.count = 1, .reusable = true}, SHIFT(2739), + [6509] = {.count = 1, .reusable = true}, SHIFT(2724), + [6511] = {.count = 1, .reusable = true}, SHIFT(2725), + [6513] = {.count = 1, .reusable = false}, SHIFT(2726), + [6515] = {.count = 1, .reusable = false}, SHIFT(2727), + [6517] = {.count = 1, .reusable = false}, SHIFT(2728), + [6519] = {.count = 1, .reusable = false}, SHIFT(2729), + [6521] = {.count = 1, .reusable = false}, SHIFT(2730), + [6523] = {.count = 1, .reusable = false}, SHIFT(2731), + [6525] = {.count = 1, .reusable = false}, SHIFT(2732), + [6527] = {.count = 1, .reusable = false}, SHIFT(2733), + [6529] = {.count = 1, .reusable = false}, SHIFT(2734), [6531] = {.count = 1, .reusable = false}, SHIFT(2735), - [6533] = {.count = 1, .reusable = true}, SHIFT(2736), - [6535] = {.count = 1, .reusable = true}, SHIFT(2737), + [6533] = {.count = 1, .reusable = false}, SHIFT(2736), + [6535] = {.count = 1, .reusable = false}, SHIFT(2739), [6537] = {.count = 1, .reusable = false}, SHIFT(2737), - [6539] = {.count = 1, .reusable = true}, SHIFT(2738), - [6541] = {.count = 1, .reusable = false}, SHIFT(2738), - [6543] = {.count = 1, .reusable = true}, SHIFT(2739), - [6545] = {.count = 1, .reusable = false}, SHIFT(2740), - [6547] = {.count = 1, .reusable = false}, SHIFT(2741), - [6549] = {.count = 1, .reusable = true}, SHIFT(2744), - [6551] = {.count = 1, .reusable = false}, SHIFT(2744), - [6553] = {.count = 1, .reusable = true}, SHIFT(2745), - [6555] = {.count = 1, .reusable = true}, SHIFT(2747), - [6557] = {.count = 1, .reusable = true}, SHIFT(2746), - [6559] = {.count = 1, .reusable = false}, SHIFT(2747), - [6561] = {.count = 1, .reusable = true}, SHIFT(2749), - [6563] = {.count = 1, .reusable = true}, SHIFT(2750), - [6565] = {.count = 1, .reusable = true}, SHIFT(2753), - [6567] = {.count = 1, .reusable = false}, SHIFT(2753), - [6569] = {.count = 1, .reusable = true}, SHIFT(2754), - [6571] = {.count = 1, .reusable = true}, SHIFT(2755), - [6573] = {.count = 1, .reusable = true}, SHIFT(2756), - [6575] = {.count = 1, .reusable = false}, SHIFT(2756), - [6577] = {.count = 1, .reusable = true}, SHIFT(2757), - [6579] = {.count = 1, .reusable = true}, SHIFT(2758), - [6581] = {.count = 1, .reusable = true}, SHIFT(2759), - [6583] = {.count = 1, .reusable = false}, SHIFT(2760), - [6585] = {.count = 1, .reusable = true}, SHIFT(2761), - [6587] = {.count = 1, .reusable = true}, SHIFT(2762), - [6589] = {.count = 1, .reusable = true}, SHIFT(2764), - [6591] = {.count = 1, .reusable = true}, SHIFT(2765), - [6593] = {.count = 1, .reusable = true}, SHIFT(2767), - [6595] = {.count = 1, .reusable = true}, SHIFT(2769), - [6597] = {.count = 1, .reusable = false}, SHIFT(2769), - [6599] = {.count = 1, .reusable = true}, SHIFT(2770), - [6601] = {.count = 1, .reusable = true}, SHIFT(2771), - [6603] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 6), - [6605] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 6), - [6607] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), - [6609] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), - [6611] = {.count = 1, .reusable = true}, SHIFT(2772), - [6613] = {.count = 1, .reusable = false}, SHIFT(2772), - [6615] = {.count = 1, .reusable = true}, SHIFT(2774), - [6617] = {.count = 1, .reusable = false}, SHIFT(2779), - [6619] = {.count = 1, .reusable = false}, SHIFT(2778), - [6621] = {.count = 1, .reusable = false}, SHIFT(2777), - [6623] = {.count = 1, .reusable = true}, SHIFT(2780), - [6625] = {.count = 1, .reusable = true}, SHIFT(2781), - [6627] = {.count = 1, .reusable = false}, SHIFT(2781), - [6629] = {.count = 1, .reusable = true}, SHIFT(2786), - [6631] = {.count = 1, .reusable = false}, SHIFT(2787), - [6633] = {.count = 1, .reusable = true}, SHIFT(2787), - [6635] = {.count = 1, .reusable = false}, SHIFT(2790), - [6637] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2433), - [6640] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2641), - [6643] = {.count = 1, .reusable = true}, SHIFT(2792), - [6645] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2647), - [6648] = {.count = 1, .reusable = false}, SHIFT(1725), - [6650] = {.count = 1, .reusable = false}, SHIFT(1726), - [6652] = {.count = 1, .reusable = true}, SHIFT(2793), - [6654] = {.count = 1, .reusable = false}, SHIFT(2793), - [6656] = {.count = 1, .reusable = true}, SHIFT(2794), - [6658] = {.count = 1, .reusable = false}, SHIFT(2794), - [6660] = {.count = 1, .reusable = true}, SHIFT(2796), - [6662] = {.count = 1, .reusable = true}, SHIFT(2798), - [6664] = {.count = 1, .reusable = true}, SHIFT(2799), - [6666] = {.count = 1, .reusable = true}, SHIFT(2800), - [6668] = {.count = 1, .reusable = true}, SHIFT(2801), - [6670] = {.count = 1, .reusable = true}, SHIFT(2802), - [6672] = {.count = 1, .reusable = true}, SHIFT(2803), - [6674] = {.count = 1, .reusable = true}, SHIFT(2804), - [6676] = {.count = 1, .reusable = true}, SHIFT(2805), - [6678] = {.count = 1, .reusable = true}, SHIFT(2806), - [6680] = {.count = 1, .reusable = true}, SHIFT(2807), - [6682] = {.count = 1, .reusable = true}, SHIFT(2823), - [6684] = {.count = 1, .reusable = true}, SHIFT(2808), - [6686] = {.count = 1, .reusable = true}, SHIFT(2809), - [6688] = {.count = 1, .reusable = false}, SHIFT(2810), - [6690] = {.count = 1, .reusable = false}, SHIFT(2811), - [6692] = {.count = 1, .reusable = false}, SHIFT(2812), - [6694] = {.count = 1, .reusable = false}, SHIFT(2813), - [6696] = {.count = 1, .reusable = false}, SHIFT(2814), - [6698] = {.count = 1, .reusable = false}, SHIFT(2815), - [6700] = {.count = 1, .reusable = false}, SHIFT(2816), - [6702] = {.count = 1, .reusable = false}, SHIFT(2817), - [6704] = {.count = 1, .reusable = false}, SHIFT(2818), - [6706] = {.count = 1, .reusable = false}, SHIFT(2819), - [6708] = {.count = 1, .reusable = false}, SHIFT(2820), - [6710] = {.count = 1, .reusable = false}, SHIFT(2823), - [6712] = {.count = 1, .reusable = false}, SHIFT(2821), - [6714] = {.count = 1, .reusable = true}, SHIFT(2827), - [6716] = {.count = 1, .reusable = false}, SHIFT(2827), - [6718] = {.count = 1, .reusable = true}, SHIFT(2829), - [6720] = {.count = 1, .reusable = true}, SHIFT(2828), - [6722] = {.count = 1, .reusable = false}, SHIFT(2829), - [6724] = {.count = 1, .reusable = true}, SHIFT(2830), - [6726] = {.count = 1, .reusable = true}, SHIFT(2831), - [6728] = {.count = 1, .reusable = false}, SHIFT(2831), - [6730] = {.count = 1, .reusable = true}, SHIFT(2832), - [6732] = {.count = 1, .reusable = false}, SHIFT(2832), - [6734] = {.count = 1, .reusable = true}, SHIFT(2833), - [6736] = {.count = 1, .reusable = true}, SHIFT(2834), - [6738] = {.count = 1, .reusable = true}, SHIFT(2835), - [6740] = {.count = 1, .reusable = true}, SHIFT(2837), - [6742] = {.count = 1, .reusable = true}, SHIFT(2838), - [6744] = {.count = 1, .reusable = true}, SHIFT(2839), - [6746] = {.count = 1, .reusable = false}, SHIFT(2839), - [6748] = {.count = 1, .reusable = true}, SHIFT(2840), - [6750] = {.count = 1, .reusable = true}, SHIFT(2841), - [6752] = {.count = 1, .reusable = true}, SHIFT(2843), - [6754] = {.count = 1, .reusable = true}, SHIFT(2845), - [6756] = {.count = 1, .reusable = true}, SHIFT(2844), - [6758] = {.count = 1, .reusable = false}, SHIFT(2845), - [6760] = {.count = 1, .reusable = true}, SHIFT(2847), - [6762] = {.count = 1, .reusable = true}, SHIFT(2848), - [6764] = {.count = 1, .reusable = true}, SHIFT(2849), - [6766] = {.count = 1, .reusable = false}, SHIFT(2850), - [6768] = {.count = 1, .reusable = false}, SHIFT(2851), - [6770] = {.count = 1, .reusable = true}, SHIFT(2852), - [6772] = {.count = 1, .reusable = true}, SHIFT(2853), - [6774] = {.count = 1, .reusable = true}, SHIFT(2855), - [6776] = {.count = 1, .reusable = true}, SHIFT(2857), - [6778] = {.count = 1, .reusable = false}, SHIFT(2857), - [6780] = {.count = 1, .reusable = true}, SHIFT(2858), - [6782] = {.count = 1, .reusable = true}, SHIFT(2859), - [6784] = {.count = 1, .reusable = true}, SHIFT(2860), - [6786] = {.count = 1, .reusable = true}, SHIFT(2861), - [6788] = {.count = 1, .reusable = false}, SHIFT(2863), - [6790] = {.count = 1, .reusable = true}, SHIFT(2865), - [6792] = {.count = 1, .reusable = true}, SHIFT(2867), - [6794] = {.count = 1, .reusable = true}, SHIFT(2868), - [6796] = {.count = 1, .reusable = true}, SHIFT(2870), - [6798] = {.count = 1, .reusable = true}, SHIFT(2869), - [6800] = {.count = 1, .reusable = false}, SHIFT(2870), - [6802] = {.count = 1, .reusable = true}, SHIFT(2871), - [6804] = {.count = 1, .reusable = true}, SHIFT(2872), - [6806] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), - [6808] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), - [6810] = {.count = 1, .reusable = true}, SHIFT(2873), - [6812] = {.count = 1, .reusable = false}, SHIFT(2873), - [6814] = {.count = 1, .reusable = true}, SHIFT(2874), - [6816] = {.count = 1, .reusable = false}, SHIFT(2874), - [6818] = {.count = 1, .reusable = true}, SHIFT(2875), - [6820] = {.count = 1, .reusable = false}, SHIFT(2876), - [6822] = {.count = 1, .reusable = true}, SHIFT(2877), - [6824] = {.count = 1, .reusable = false}, SHIFT(2877), - [6826] = {.count = 1, .reusable = true}, SHIFT(2879), - [6828] = {.count = 1, .reusable = true}, SHIFT(2878), - [6830] = {.count = 1, .reusable = false}, SHIFT(2879), - [6832] = {.count = 1, .reusable = true}, SHIFT(2882), - [6834] = {.count = 1, .reusable = true}, SHIFT(2884), - [6836] = {.count = 1, .reusable = true}, SHIFT(2886), - [6838] = {.count = 1, .reusable = false}, SHIFT(2886), - [6840] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), - [6842] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), - [6844] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2626), - [6847] = {.count = 1, .reusable = true}, SHIFT(2889), - [6849] = {.count = 1, .reusable = true}, SHIFT(2890), - [6851] = {.count = 1, .reusable = false}, SHIFT(2891), - [6853] = {.count = 1, .reusable = true}, SHIFT(2891), - [6855] = {.count = 1, .reusable = false}, SHIFT(2894), - [6857] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2630), - [6860] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2780), - [6863] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_loop, 7), - [6865] = {.count = 1, .reusable = false}, REDUCE(sym_for_range_loop, 7), - [6867] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2790), - [6870] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2792), - [6873] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2796), - [6876] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2798), - [6879] = {.count = 1, .reusable = true}, SHIFT(2900), - [6881] = {.count = 1, .reusable = true}, SHIFT(2902), - [6883] = {.count = 1, .reusable = true}, SHIFT(2903), - [6885] = {.count = 1, .reusable = true}, SHIFT(2904), - [6887] = {.count = 1, .reusable = false}, SHIFT(2904), - [6889] = {.count = 1, .reusable = true}, SHIFT(2905), - [6891] = {.count = 1, .reusable = true}, SHIFT(2906), - [6893] = {.count = 1, .reusable = true}, SHIFT(2908), - [6895] = {.count = 1, .reusable = true}, SHIFT(2910), - [6897] = {.count = 1, .reusable = true}, SHIFT(2909), - [6899] = {.count = 1, .reusable = false}, SHIFT(2910), - [6901] = {.count = 1, .reusable = true}, SHIFT(2912), - [6903] = {.count = 1, .reusable = true}, SHIFT(2913), - [6905] = {.count = 1, .reusable = true}, SHIFT(2914), - [6907] = {.count = 1, .reusable = false}, SHIFT(2915), - [6909] = {.count = 1, .reusable = false}, SHIFT(2916), - [6911] = {.count = 1, .reusable = true}, SHIFT(2917), - [6913] = {.count = 1, .reusable = true}, SHIFT(2918), - [6915] = {.count = 1, .reusable = true}, SHIFT(2920), - [6917] = {.count = 1, .reusable = true}, SHIFT(2922), - [6919] = {.count = 1, .reusable = false}, SHIFT(2922), - [6921] = {.count = 1, .reusable = true}, SHIFT(2923), - [6923] = {.count = 1, .reusable = true}, SHIFT(2924), - [6925] = {.count = 1, .reusable = true}, SHIFT(2925), - [6927] = {.count = 1, .reusable = true}, SHIFT(2926), - [6929] = {.count = 1, .reusable = false}, SHIFT(2926), - [6931] = {.count = 1, .reusable = true}, SHIFT(2927), - [6933] = {.count = 1, .reusable = false}, SHIFT(2927), - [6935] = {.count = 1, .reusable = true}, SHIFT(2928), - [6937] = {.count = 1, .reusable = false}, SHIFT(2929), - [6939] = {.count = 1, .reusable = false}, SHIFT(2930), - [6941] = {.count = 1, .reusable = true}, SHIFT(2933), - [6943] = {.count = 1, .reusable = false}, SHIFT(2933), - [6945] = {.count = 1, .reusable = true}, SHIFT(2934), - [6947] = {.count = 1, .reusable = true}, SHIFT(2936), - [6949] = {.count = 1, .reusable = true}, SHIFT(2935), - [6951] = {.count = 1, .reusable = false}, SHIFT(2936), - [6953] = {.count = 1, .reusable = true}, SHIFT(2938), - [6955] = {.count = 1, .reusable = true}, SHIFT(2939), - [6957] = {.count = 1, .reusable = true}, SHIFT(2943), - [6959] = {.count = 1, .reusable = true}, SHIFT(2945), - [6961] = {.count = 1, .reusable = false}, SHIFT(2945), - [6963] = {.count = 1, .reusable = false}, SHIFT(2950), - [6965] = {.count = 1, .reusable = true}, SHIFT(2951), - [6967] = {.count = 1, .reusable = true}, SHIFT(2954), - [6969] = {.count = 1, .reusable = false}, SHIFT(2954), - [6971] = {.count = 1, .reusable = true}, SHIFT(2956), - [6973] = {.count = 1, .reusable = true}, SHIFT(2955), - [6975] = {.count = 1, .reusable = false}, SHIFT(2956), - [6977] = {.count = 1, .reusable = true}, SHIFT(2957), - [6979] = {.count = 1, .reusable = true}, SHIFT(2958), - [6981] = {.count = 1, .reusable = false}, SHIFT(2958), - [6983] = {.count = 1, .reusable = true}, SHIFT(2959), - [6985] = {.count = 1, .reusable = false}, SHIFT(2959), - [6987] = {.count = 1, .reusable = true}, SHIFT(2960), - [6989] = {.count = 1, .reusable = true}, SHIFT(2961), - [6991] = {.count = 1, .reusable = true}, SHIFT(2962), - [6993] = {.count = 1, .reusable = true}, SHIFT(2964), - [6995] = {.count = 1, .reusable = true}, SHIFT(2963), - [6997] = {.count = 1, .reusable = false}, SHIFT(2964), - [6999] = {.count = 1, .reusable = true}, SHIFT(2965), - [7001] = {.count = 1, .reusable = true}, SHIFT(2966), - [7003] = {.count = 1, .reusable = true}, SHIFT(2968), - [7005] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), - [7007] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), - [7009] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2894), - [7012] = {.count = 1, .reusable = true}, SHIFT(2975), - [7014] = {.count = 1, .reusable = true}, SHIFT(2977), - [7016] = {.count = 1, .reusable = true}, SHIFT(2978), - [7018] = {.count = 1, .reusable = true}, SHIFT(2979), - [7020] = {.count = 1, .reusable = false}, SHIFT(2979), - [7022] = {.count = 1, .reusable = true}, SHIFT(2980), - [7024] = {.count = 1, .reusable = false}, SHIFT(2980), - [7026] = {.count = 1, .reusable = true}, SHIFT(2981), - [7028] = {.count = 1, .reusable = false}, SHIFT(2982), - [7030] = {.count = 1, .reusable = false}, SHIFT(2983), - [7032] = {.count = 1, .reusable = true}, SHIFT(2986), - [7034] = {.count = 1, .reusable = false}, SHIFT(2986), - [7036] = {.count = 1, .reusable = true}, SHIFT(2987), - [7038] = {.count = 1, .reusable = true}, SHIFT(2989), - [7040] = {.count = 1, .reusable = true}, SHIFT(2988), - [7042] = {.count = 1, .reusable = false}, SHIFT(2989), - [7044] = {.count = 1, .reusable = true}, SHIFT(2991), - [7046] = {.count = 1, .reusable = true}, SHIFT(2992), - [7048] = {.count = 1, .reusable = true}, SHIFT(2996), - [7050] = {.count = 1, .reusable = true}, SHIFT(2998), - [7052] = {.count = 1, .reusable = false}, SHIFT(2998), - [7054] = {.count = 1, .reusable = true}, SHIFT(3000), - [7056] = {.count = 1, .reusable = true}, SHIFT(3001), - [7058] = {.count = 1, .reusable = false}, SHIFT(3003), - [7060] = {.count = 1, .reusable = true}, SHIFT(3005), - [7062] = {.count = 1, .reusable = true}, SHIFT(3007), - [7064] = {.count = 1, .reusable = true}, SHIFT(3008), - [7066] = {.count = 1, .reusable = true}, SHIFT(3010), - [7068] = {.count = 1, .reusable = true}, SHIFT(3009), - [7070] = {.count = 1, .reusable = false}, SHIFT(3010), - [7072] = {.count = 1, .reusable = true}, SHIFT(3011), - [7074] = {.count = 1, .reusable = true}, SHIFT(3012), - [7076] = {.count = 1, .reusable = true}, SHIFT(3014), - [7078] = {.count = 1, .reusable = false}, SHIFT(3016), - [7080] = {.count = 1, .reusable = true}, SHIFT(3017), - [7082] = {.count = 1, .reusable = true}, SHIFT(3019), - [7084] = {.count = 1, .reusable = true}, SHIFT(3020), - [7086] = {.count = 1, .reusable = true}, SHIFT(3022), - [7088] = {.count = 1, .reusable = true}, SHIFT(3024), - [7090] = {.count = 1, .reusable = false}, SHIFT(3024), - [7092] = {.count = 1, .reusable = true}, SHIFT(3025), - [7094] = {.count = 1, .reusable = true}, SHIFT(3026), - [7096] = {.count = 1, .reusable = true}, SHIFT(3029), - [7098] = {.count = 1, .reusable = true}, SHIFT(3028), - [7100] = {.count = 1, .reusable = false}, SHIFT(3029), - [7102] = {.count = 1, .reusable = true}, SHIFT(3030), - [7104] = {.count = 1, .reusable = true}, SHIFT(3031), - [7106] = {.count = 1, .reusable = false}, SHIFT(3031), - [7108] = {.count = 1, .reusable = true}, SHIFT(3032), - [7110] = {.count = 1, .reusable = false}, SHIFT(3032), - [7112] = {.count = 1, .reusable = true}, SHIFT(3034), - [7114] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), - [7116] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), - [7118] = {.count = 1, .reusable = true}, SHIFT(3036), - [7120] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2977), - [7123] = {.count = 1, .reusable = true}, SHIFT(3038), - [7125] = {.count = 1, .reusable = true}, SHIFT(3039), - [7127] = {.count = 1, .reusable = false}, SHIFT(3041), - [7129] = {.count = 1, .reusable = true}, SHIFT(3043), - [7131] = {.count = 1, .reusable = true}, SHIFT(3045), - [7133] = {.count = 1, .reusable = true}, SHIFT(3046), - [7135] = {.count = 1, .reusable = true}, SHIFT(3048), - [7137] = {.count = 1, .reusable = true}, SHIFT(3047), - [7139] = {.count = 1, .reusable = false}, SHIFT(3048), - [7141] = {.count = 1, .reusable = true}, SHIFT(3049), - [7143] = {.count = 1, .reusable = true}, SHIFT(3050), - [7145] = {.count = 1, .reusable = true}, SHIFT(3052), - [7147] = {.count = 1, .reusable = false}, SHIFT(3057), - [7149] = {.count = 1, .reusable = true}, SHIFT(3058), - [7151] = {.count = 1, .reusable = true}, SHIFT(3061), - [7153] = {.count = 1, .reusable = false}, SHIFT(3061), - [7155] = {.count = 1, .reusable = true}, SHIFT(3063), - [7157] = {.count = 1, .reusable = true}, SHIFT(3062), - [7159] = {.count = 1, .reusable = false}, SHIFT(3063), - [7161] = {.count = 1, .reusable = true}, SHIFT(3064), - [7163] = {.count = 1, .reusable = true}, SHIFT(3065), - [7165] = {.count = 1, .reusable = false}, SHIFT(3065), - [7167] = {.count = 1, .reusable = true}, SHIFT(3066), - [7169] = {.count = 1, .reusable = false}, SHIFT(3066), - [7171] = {.count = 1, .reusable = true}, SHIFT(3068), - [7173] = {.count = 1, .reusable = true}, SHIFT(3070), - [7175] = {.count = 1, .reusable = true}, SHIFT(3072), - [7177] = {.count = 1, .reusable = true}, SHIFT(3074), - [7179] = {.count = 1, .reusable = false}, SHIFT(3074), - [7181] = {.count = 1, .reusable = true}, SHIFT(3076), - [7183] = {.count = 1, .reusable = true}, SHIFT(3077), - [7185] = {.count = 1, .reusable = true}, SHIFT(3079), - [7187] = {.count = 1, .reusable = false}, SHIFT(3079), - [7189] = {.count = 1, .reusable = true}, SHIFT(3080), - [7191] = {.count = 1, .reusable = true}, SHIFT(3081), - [7193] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3036), - [7196] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), - [7198] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), - [7200] = {.count = 1, .reusable = false}, SHIFT(3086), - [7202] = {.count = 1, .reusable = true}, SHIFT(3087), - [7204] = {.count = 1, .reusable = true}, SHIFT(3090), - [7206] = {.count = 1, .reusable = false}, SHIFT(3090), - [7208] = {.count = 1, .reusable = true}, SHIFT(3092), - [7210] = {.count = 1, .reusable = true}, SHIFT(3091), - [7212] = {.count = 1, .reusable = false}, SHIFT(3092), - [7214] = {.count = 1, .reusable = true}, SHIFT(3093), - [7216] = {.count = 1, .reusable = true}, SHIFT(3094), - [7218] = {.count = 1, .reusable = false}, SHIFT(3094), - [7220] = {.count = 1, .reusable = true}, SHIFT(3095), - [7222] = {.count = 1, .reusable = false}, SHIFT(3095), - [7224] = {.count = 1, .reusable = true}, SHIFT(3097), - [7226] = {.count = 1, .reusable = false}, SHIFT(3098), - [7228] = {.count = 1, .reusable = true}, SHIFT(3099), - [7230] = {.count = 1, .reusable = true}, SHIFT(3101), - [7232] = {.count = 1, .reusable = true}, SHIFT(3102), - [7234] = {.count = 1, .reusable = true}, SHIFT(3104), - [7236] = {.count = 1, .reusable = true}, SHIFT(3106), - [7238] = {.count = 1, .reusable = false}, SHIFT(3106), - [7240] = {.count = 1, .reusable = true}, SHIFT(3107), - [7242] = {.count = 1, .reusable = true}, SHIFT(3108), - [7244] = {.count = 1, .reusable = true}, SHIFT(3111), - [7246] = {.count = 1, .reusable = true}, SHIFT(3113), - [7248] = {.count = 1, .reusable = true}, SHIFT(3115), - [7250] = {.count = 1, .reusable = false}, SHIFT(3115), - [7252] = {.count = 1, .reusable = false}, SHIFT(3116), - [7254] = {.count = 1, .reusable = true}, SHIFT(3117), - [7256] = {.count = 1, .reusable = true}, SHIFT(3119), - [7258] = {.count = 1, .reusable = true}, SHIFT(3120), - [7260] = {.count = 1, .reusable = true}, SHIFT(3122), - [7262] = {.count = 1, .reusable = true}, SHIFT(3124), - [7264] = {.count = 1, .reusable = false}, SHIFT(3124), - [7266] = {.count = 1, .reusable = true}, SHIFT(3125), - [7268] = {.count = 1, .reusable = true}, SHIFT(3126), - [7270] = {.count = 1, .reusable = true}, SHIFT(3129), - [7272] = {.count = 1, .reusable = true}, SHIFT(3131), - [7274] = {.count = 1, .reusable = true}, SHIFT(3133), - [7276] = {.count = 1, .reusable = false}, SHIFT(3133), - [7278] = {.count = 1, .reusable = true}, SHIFT(3136), - [7280] = {.count = 1, .reusable = true}, SHIFT(3137), - [7282] = {.count = 1, .reusable = true}, SHIFT(3140), - [7284] = {.count = 1, .reusable = true}, SHIFT(3142), - [7286] = {.count = 1, .reusable = true}, SHIFT(3144), - [7288] = {.count = 1, .reusable = false}, SHIFT(3144), - [7290] = {.count = 1, .reusable = true}, SHIFT(3147), - [7292] = {.count = 1, .reusable = true}, SHIFT(3150), - [7294] = {.count = 1, .reusable = true}, SHIFT(3152), - [7296] = {.count = 1, .reusable = true}, SHIFT(3155), - [7298] = {.count = 1, .reusable = true}, SHIFT(3157), + [6539] = {.count = 1, .reusable = true}, SHIFT(2741), + [6541] = {.count = 1, .reusable = true}, SHIFT(2744), + [6543] = {.count = 1, .reusable = false}, SHIFT(2744), + [6545] = {.count = 1, .reusable = true}, SHIFT(2746), + [6547] = {.count = 1, .reusable = true}, SHIFT(2745), + [6549] = {.count = 1, .reusable = false}, SHIFT(2746), + [6551] = {.count = 1, .reusable = true}, SHIFT(2747), + [6553] = {.count = 1, .reusable = true}, SHIFT(2748), + [6555] = {.count = 1, .reusable = false}, SHIFT(2748), + [6557] = {.count = 1, .reusable = true}, SHIFT(2749), + [6559] = {.count = 1, .reusable = false}, SHIFT(2749), + [6561] = {.count = 1, .reusable = true}, SHIFT(2750), + [6563] = {.count = 1, .reusable = true}, SHIFT(2751), + [6565] = {.count = 1, .reusable = false}, SHIFT(1435), + [6567] = {.count = 1, .reusable = false}, SHIFT(1436), + [6569] = {.count = 1, .reusable = true}, SHIFT(2752), + [6571] = {.count = 1, .reusable = false}, SHIFT(2752), + [6573] = {.count = 1, .reusable = true}, SHIFT(2753), + [6575] = {.count = 1, .reusable = true}, SHIFT(2754), + [6577] = {.count = 1, .reusable = false}, SHIFT(2754), + [6579] = {.count = 1, .reusable = true}, SHIFT(2755), + [6581] = {.count = 1, .reusable = true}, SHIFT(2756), + [6583] = {.count = 1, .reusable = false}, SHIFT(2756), + [6585] = {.count = 1, .reusable = true}, SHIFT(2757), + [6587] = {.count = 1, .reusable = false}, SHIFT(2758), + [6589] = {.count = 1, .reusable = false}, SHIFT(2759), + [6591] = {.count = 1, .reusable = true}, SHIFT(2762), + [6593] = {.count = 1, .reusable = false}, SHIFT(2762), + [6595] = {.count = 1, .reusable = true}, SHIFT(2763), + [6597] = {.count = 1, .reusable = true}, SHIFT(2765), + [6599] = {.count = 1, .reusable = true}, SHIFT(2764), + [6601] = {.count = 1, .reusable = false}, SHIFT(2765), + [6603] = {.count = 1, .reusable = true}, SHIFT(2767), + [6605] = {.count = 1, .reusable = true}, SHIFT(2768), + [6607] = {.count = 1, .reusable = true}, SHIFT(2771), + [6609] = {.count = 1, .reusable = false}, SHIFT(2771), + [6611] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 6), + [6613] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 6), + [6615] = {.count = 1, .reusable = false}, SHIFT(2772), + [6617] = {.count = 1, .reusable = true}, SHIFT(2773), + [6619] = {.count = 1, .reusable = true}, SHIFT(2774), + [6621] = {.count = 1, .reusable = true}, SHIFT(2775), + [6623] = {.count = 1, .reusable = true}, SHIFT(2776), + [6625] = {.count = 1, .reusable = false}, SHIFT(2776), + [6627] = {.count = 1, .reusable = true}, SHIFT(2777), + [6629] = {.count = 1, .reusable = true}, SHIFT(2778), + [6631] = {.count = 1, .reusable = true}, SHIFT(2779), + [6633] = {.count = 1, .reusable = false}, SHIFT(2780), + [6635] = {.count = 1, .reusable = true}, SHIFT(2781), + [6637] = {.count = 1, .reusable = true}, SHIFT(2783), + [6639] = {.count = 1, .reusable = true}, SHIFT(2785), + [6641] = {.count = 1, .reusable = true}, SHIFT(2786), + [6643] = {.count = 1, .reusable = true}, SHIFT(2788), + [6645] = {.count = 1, .reusable = true}, SHIFT(2790), + [6647] = {.count = 1, .reusable = false}, SHIFT(2790), + [6649] = {.count = 1, .reusable = true}, SHIFT(2791), + [6651] = {.count = 1, .reusable = true}, SHIFT(2792), + [6653] = {.count = 1, .reusable = true}, REDUCE(sym_do_statement, 6), + [6655] = {.count = 1, .reusable = false}, REDUCE(sym_do_statement, 6), + [6657] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 6), + [6659] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 6), + [6661] = {.count = 1, .reusable = true}, SHIFT(2793), + [6663] = {.count = 1, .reusable = false}, SHIFT(2793), + [6665] = {.count = 1, .reusable = true}, SHIFT(2795), + [6667] = {.count = 1, .reusable = false}, SHIFT(2800), + [6669] = {.count = 1, .reusable = false}, SHIFT(2799), + [6671] = {.count = 1, .reusable = false}, SHIFT(2798), + [6673] = {.count = 1, .reusable = true}, SHIFT(2801), + [6675] = {.count = 1, .reusable = true}, SHIFT(2802), + [6677] = {.count = 1, .reusable = false}, SHIFT(2802), + [6679] = {.count = 1, .reusable = true}, SHIFT(2807), + [6681] = {.count = 1, .reusable = false}, SHIFT(2808), + [6683] = {.count = 1, .reusable = true}, SHIFT(2808), + [6685] = {.count = 1, .reusable = false}, SHIFT(2811), + [6687] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2443), + [6690] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2656), + [6693] = {.count = 1, .reusable = true}, SHIFT(2813), + [6695] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2662), + [6698] = {.count = 1, .reusable = false}, SHIFT(1728), + [6700] = {.count = 1, .reusable = false}, SHIFT(1729), + [6702] = {.count = 1, .reusable = true}, SHIFT(2814), + [6704] = {.count = 1, .reusable = false}, SHIFT(2814), + [6706] = {.count = 1, .reusable = true}, SHIFT(2815), + [6708] = {.count = 1, .reusable = false}, SHIFT(2815), + [6710] = {.count = 1, .reusable = true}, SHIFT(2817), + [6712] = {.count = 1, .reusable = true}, SHIFT(2819), + [6714] = {.count = 1, .reusable = true}, SHIFT(2820), + [6716] = {.count = 1, .reusable = true}, SHIFT(2821), + [6718] = {.count = 1, .reusable = true}, SHIFT(2822), + [6720] = {.count = 1, .reusable = true}, SHIFT(2823), + [6722] = {.count = 1, .reusable = true}, SHIFT(2824), + [6724] = {.count = 1, .reusable = true}, SHIFT(2825), + [6726] = {.count = 1, .reusable = true}, SHIFT(2826), + [6728] = {.count = 1, .reusable = true}, SHIFT(2827), + [6730] = {.count = 1, .reusable = true}, SHIFT(2828), + [6732] = {.count = 1, .reusable = true}, SHIFT(2844), + [6734] = {.count = 1, .reusable = true}, SHIFT(2829), + [6736] = {.count = 1, .reusable = true}, SHIFT(2830), + [6738] = {.count = 1, .reusable = false}, SHIFT(2831), + [6740] = {.count = 1, .reusable = false}, SHIFT(2832), + [6742] = {.count = 1, .reusable = false}, SHIFT(2833), + [6744] = {.count = 1, .reusable = false}, SHIFT(2834), + [6746] = {.count = 1, .reusable = false}, SHIFT(2835), + [6748] = {.count = 1, .reusable = false}, SHIFT(2836), + [6750] = {.count = 1, .reusable = false}, SHIFT(2837), + [6752] = {.count = 1, .reusable = false}, SHIFT(2838), + [6754] = {.count = 1, .reusable = false}, SHIFT(2839), + [6756] = {.count = 1, .reusable = false}, SHIFT(2840), + [6758] = {.count = 1, .reusable = false}, SHIFT(2841), + [6760] = {.count = 1, .reusable = false}, SHIFT(2844), + [6762] = {.count = 1, .reusable = false}, SHIFT(2842), + [6764] = {.count = 1, .reusable = true}, SHIFT(2846), + [6766] = {.count = 1, .reusable = true}, SHIFT(2849), + [6768] = {.count = 1, .reusable = false}, SHIFT(2849), + [6770] = {.count = 1, .reusable = true}, SHIFT(2851), + [6772] = {.count = 1, .reusable = true}, SHIFT(2850), + [6774] = {.count = 1, .reusable = false}, SHIFT(2851), + [6776] = {.count = 1, .reusable = true}, SHIFT(2852), + [6778] = {.count = 1, .reusable = true}, SHIFT(2853), + [6780] = {.count = 1, .reusable = false}, SHIFT(2853), + [6782] = {.count = 1, .reusable = true}, SHIFT(2854), + [6784] = {.count = 1, .reusable = false}, SHIFT(2854), + [6786] = {.count = 1, .reusable = true}, SHIFT(2855), + [6788] = {.count = 1, .reusable = true}, SHIFT(2856), + [6790] = {.count = 1, .reusable = true}, SHIFT(2857), + [6792] = {.count = 1, .reusable = true}, SHIFT(2859), + [6794] = {.count = 1, .reusable = true}, SHIFT(2860), + [6796] = {.count = 1, .reusable = true}, SHIFT(2861), + [6798] = {.count = 1, .reusable = true}, SHIFT(2862), + [6800] = {.count = 1, .reusable = false}, SHIFT(2862), + [6802] = {.count = 1, .reusable = true}, SHIFT(2863), + [6804] = {.count = 1, .reusable = true}, SHIFT(2864), + [6806] = {.count = 1, .reusable = true}, SHIFT(2866), + [6808] = {.count = 1, .reusable = true}, SHIFT(2868), + [6810] = {.count = 1, .reusable = true}, SHIFT(2867), + [6812] = {.count = 1, .reusable = false}, SHIFT(2868), + [6814] = {.count = 1, .reusable = true}, SHIFT(2870), + [6816] = {.count = 1, .reusable = true}, SHIFT(2871), + [6818] = {.count = 1, .reusable = true}, SHIFT(2872), + [6820] = {.count = 1, .reusable = false}, SHIFT(2873), + [6822] = {.count = 1, .reusable = false}, SHIFT(2874), + [6824] = {.count = 1, .reusable = true}, SHIFT(2875), + [6826] = {.count = 1, .reusable = true}, SHIFT(2877), + [6828] = {.count = 1, .reusable = true}, SHIFT(2879), + [6830] = {.count = 1, .reusable = true}, SHIFT(2881), + [6832] = {.count = 1, .reusable = false}, SHIFT(2881), + [6834] = {.count = 1, .reusable = true}, SHIFT(2882), + [6836] = {.count = 1, .reusable = true}, SHIFT(2883), + [6838] = {.count = 1, .reusable = true}, SHIFT(2884), + [6840] = {.count = 1, .reusable = true}, SHIFT(2885), + [6842] = {.count = 1, .reusable = false}, SHIFT(2885), + [6844] = {.count = 1, .reusable = true}, SHIFT(2886), + [6846] = {.count = 1, .reusable = false}, SHIFT(2888), + [6848] = {.count = 1, .reusable = true}, SHIFT(2890), + [6850] = {.count = 1, .reusable = true}, SHIFT(2892), + [6852] = {.count = 1, .reusable = true}, SHIFT(2893), + [6854] = {.count = 1, .reusable = true}, SHIFT(2895), + [6856] = {.count = 1, .reusable = true}, SHIFT(2894), + [6858] = {.count = 1, .reusable = false}, SHIFT(2895), + [6860] = {.count = 1, .reusable = true}, SHIFT(2896), + [6862] = {.count = 1, .reusable = true}, SHIFT(2897), + [6864] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 7), + [6866] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 7), + [6868] = {.count = 1, .reusable = true}, SHIFT(2899), + [6870] = {.count = 1, .reusable = false}, SHIFT(2899), + [6872] = {.count = 1, .reusable = true}, SHIFT(2900), + [6874] = {.count = 1, .reusable = true}, SHIFT(2901), + [6876] = {.count = 1, .reusable = false}, SHIFT(2901), + [6878] = {.count = 1, .reusable = true}, SHIFT(2902), + [6880] = {.count = 1, .reusable = false}, SHIFT(2903), + [6882] = {.count = 1, .reusable = true}, SHIFT(2904), + [6884] = {.count = 1, .reusable = false}, SHIFT(2904), + [6886] = {.count = 1, .reusable = true}, SHIFT(2906), + [6888] = {.count = 1, .reusable = true}, SHIFT(2905), + [6890] = {.count = 1, .reusable = false}, SHIFT(2906), + [6892] = {.count = 1, .reusable = true}, SHIFT(2909), + [6894] = {.count = 1, .reusable = true}, SHIFT(2910), + [6896] = {.count = 1, .reusable = true}, SHIFT(2912), + [6898] = {.count = 1, .reusable = true}, SHIFT(2914), + [6900] = {.count = 1, .reusable = false}, SHIFT(2914), + [6902] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 7), + [6904] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 7), + [6906] = {.count = 2, .reusable = true}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2641), + [6909] = {.count = 1, .reusable = true}, SHIFT(2917), + [6911] = {.count = 1, .reusable = true}, SHIFT(2918), + [6913] = {.count = 1, .reusable = false}, SHIFT(2919), + [6915] = {.count = 1, .reusable = true}, SHIFT(2919), + [6917] = {.count = 1, .reusable = false}, SHIFT(2922), + [6919] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2645), + [6922] = {.count = 2, .reusable = true}, REDUCE(aux_sym_function_declarator_repeat1, 2), SHIFT_REPEAT(2801), + [6925] = {.count = 1, .reusable = true}, REDUCE(sym_for_range_loop, 7), + [6927] = {.count = 1, .reusable = false}, REDUCE(sym_for_range_loop, 7), + [6929] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2811), + [6932] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2813), + [6935] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2817), + [6938] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(2819), + [6941] = {.count = 1, .reusable = true}, SHIFT(2928), + [6943] = {.count = 1, .reusable = true}, SHIFT(2930), + [6945] = {.count = 1, .reusable = true}, SHIFT(2931), + [6947] = {.count = 1, .reusable = true}, SHIFT(2932), + [6949] = {.count = 1, .reusable = true}, SHIFT(2933), + [6951] = {.count = 1, .reusable = false}, SHIFT(2933), + [6953] = {.count = 1, .reusable = true}, SHIFT(2934), + [6955] = {.count = 1, .reusable = true}, SHIFT(2935), + [6957] = {.count = 1, .reusable = true}, SHIFT(2937), + [6959] = {.count = 1, .reusable = true}, SHIFT(2939), + [6961] = {.count = 1, .reusable = true}, SHIFT(2938), + [6963] = {.count = 1, .reusable = false}, SHIFT(2939), + [6965] = {.count = 1, .reusable = true}, SHIFT(2941), + [6967] = {.count = 1, .reusable = true}, SHIFT(2942), + [6969] = {.count = 1, .reusable = true}, SHIFT(2943), + [6971] = {.count = 1, .reusable = false}, SHIFT(2944), + [6973] = {.count = 1, .reusable = false}, SHIFT(2945), + [6975] = {.count = 1, .reusable = true}, SHIFT(2946), + [6977] = {.count = 1, .reusable = true}, SHIFT(2948), + [6979] = {.count = 1, .reusable = true}, SHIFT(2950), + [6981] = {.count = 1, .reusable = true}, SHIFT(2952), + [6983] = {.count = 1, .reusable = false}, SHIFT(2952), + [6985] = {.count = 1, .reusable = true}, SHIFT(2953), + [6987] = {.count = 1, .reusable = true}, SHIFT(2954), + [6989] = {.count = 1, .reusable = true}, SHIFT(2955), + [6991] = {.count = 1, .reusable = true}, SHIFT(2956), + [6993] = {.count = 1, .reusable = false}, SHIFT(2956), + [6995] = {.count = 1, .reusable = true}, SHIFT(2957), + [6997] = {.count = 1, .reusable = true}, SHIFT(2958), + [6999] = {.count = 1, .reusable = false}, SHIFT(2958), + [7001] = {.count = 1, .reusable = true}, SHIFT(2959), + [7003] = {.count = 1, .reusable = false}, SHIFT(2960), + [7005] = {.count = 1, .reusable = false}, SHIFT(2961), + [7007] = {.count = 1, .reusable = true}, SHIFT(2964), + [7009] = {.count = 1, .reusable = false}, SHIFT(2964), + [7011] = {.count = 1, .reusable = true}, SHIFT(2965), + [7013] = {.count = 1, .reusable = true}, SHIFT(2967), + [7015] = {.count = 1, .reusable = true}, SHIFT(2966), + [7017] = {.count = 1, .reusable = false}, SHIFT(2967), + [7019] = {.count = 1, .reusable = true}, SHIFT(2969), + [7021] = {.count = 1, .reusable = true}, SHIFT(2970), + [7023] = {.count = 1, .reusable = false}, SHIFT(2973), + [7025] = {.count = 1, .reusable = true}, SHIFT(2975), + [7027] = {.count = 1, .reusable = true}, SHIFT(2977), + [7029] = {.count = 1, .reusable = false}, SHIFT(2977), + [7031] = {.count = 1, .reusable = true}, SHIFT(2980), + [7033] = {.count = 1, .reusable = false}, SHIFT(2983), + [7035] = {.count = 1, .reusable = true}, SHIFT(2984), + [7037] = {.count = 1, .reusable = true}, SHIFT(2987), + [7039] = {.count = 1, .reusable = false}, SHIFT(2987), + [7041] = {.count = 1, .reusable = true}, SHIFT(2989), + [7043] = {.count = 1, .reusable = true}, SHIFT(2988), + [7045] = {.count = 1, .reusable = false}, SHIFT(2989), + [7047] = {.count = 1, .reusable = true}, SHIFT(2990), + [7049] = {.count = 1, .reusable = true}, SHIFT(2991), + [7051] = {.count = 1, .reusable = false}, SHIFT(2991), + [7053] = {.count = 1, .reusable = true}, SHIFT(2992), + [7055] = {.count = 1, .reusable = false}, SHIFT(2992), + [7057] = {.count = 1, .reusable = true}, REDUCE(sym_if_statement, 8), + [7059] = {.count = 1, .reusable = false}, REDUCE(sym_if_statement, 8), + [7061] = {.count = 1, .reusable = true}, SHIFT(2993), + [7063] = {.count = 1, .reusable = true}, SHIFT(2994), + [7065] = {.count = 1, .reusable = false}, SHIFT(2994), + [7067] = {.count = 1, .reusable = true}, SHIFT(2995), + [7069] = {.count = 1, .reusable = true}, SHIFT(2996), + [7071] = {.count = 1, .reusable = true}, SHIFT(2998), + [7073] = {.count = 1, .reusable = true}, SHIFT(2997), + [7075] = {.count = 1, .reusable = false}, SHIFT(2998), + [7077] = {.count = 1, .reusable = true}, SHIFT(2999), + [7079] = {.count = 1, .reusable = true}, SHIFT(3000), + [7081] = {.count = 1, .reusable = true}, SHIFT(3003), + [7083] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 8), + [7085] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 8), + [7087] = {.count = 2, .reusable = false}, REDUCE(aux_sym_sized_type_specifier_repeat1, 2), SHIFT_REPEAT(2922), + [7090] = {.count = 1, .reusable = true}, SHIFT(3010), + [7092] = {.count = 1, .reusable = true}, SHIFT(3012), + [7094] = {.count = 1, .reusable = true}, SHIFT(3013), + [7096] = {.count = 1, .reusable = true}, SHIFT(3014), + [7098] = {.count = 1, .reusable = false}, SHIFT(3014), + [7100] = {.count = 1, .reusable = true}, SHIFT(3015), + [7102] = {.count = 1, .reusable = true}, SHIFT(3016), + [7104] = {.count = 1, .reusable = false}, SHIFT(3016), + [7106] = {.count = 1, .reusable = true}, SHIFT(3017), + [7108] = {.count = 1, .reusable = false}, SHIFT(3018), + [7110] = {.count = 1, .reusable = false}, SHIFT(3019), + [7112] = {.count = 1, .reusable = true}, SHIFT(3022), + [7114] = {.count = 1, .reusable = false}, SHIFT(3022), + [7116] = {.count = 1, .reusable = true}, SHIFT(3023), + [7118] = {.count = 1, .reusable = true}, SHIFT(3025), + [7120] = {.count = 1, .reusable = true}, SHIFT(3024), + [7122] = {.count = 1, .reusable = false}, SHIFT(3025), + [7124] = {.count = 1, .reusable = true}, SHIFT(3027), + [7126] = {.count = 1, .reusable = true}, SHIFT(3028), + [7128] = {.count = 1, .reusable = false}, SHIFT(3031), + [7130] = {.count = 1, .reusable = true}, SHIFT(3033), + [7132] = {.count = 1, .reusable = true}, SHIFT(3035), + [7134] = {.count = 1, .reusable = false}, SHIFT(3035), + [7136] = {.count = 1, .reusable = true}, SHIFT(3037), + [7138] = {.count = 1, .reusable = true}, SHIFT(3038), + [7140] = {.count = 1, .reusable = false}, SHIFT(3038), + [7142] = {.count = 1, .reusable = true}, SHIFT(3039), + [7144] = {.count = 1, .reusable = false}, SHIFT(3041), + [7146] = {.count = 1, .reusable = true}, SHIFT(3043), + [7148] = {.count = 1, .reusable = true}, SHIFT(3045), + [7150] = {.count = 1, .reusable = true}, SHIFT(3046), + [7152] = {.count = 1, .reusable = true}, SHIFT(3048), + [7154] = {.count = 1, .reusable = true}, SHIFT(3047), + [7156] = {.count = 1, .reusable = false}, SHIFT(3048), + [7158] = {.count = 1, .reusable = true}, SHIFT(3049), + [7160] = {.count = 1, .reusable = true}, SHIFT(3050), + [7162] = {.count = 1, .reusable = true}, SHIFT(3053), + [7164] = {.count = 1, .reusable = false}, SHIFT(3055), + [7166] = {.count = 1, .reusable = true}, SHIFT(3057), + [7168] = {.count = 1, .reusable = true}, SHIFT(3059), + [7170] = {.count = 1, .reusable = true}, SHIFT(3060), + [7172] = {.count = 1, .reusable = true}, SHIFT(3062), + [7174] = {.count = 1, .reusable = true}, SHIFT(3064), + [7176] = {.count = 1, .reusable = false}, SHIFT(3064), + [7178] = {.count = 1, .reusable = true}, SHIFT(3065), + [7180] = {.count = 1, .reusable = true}, SHIFT(3066), + [7182] = {.count = 1, .reusable = true}, SHIFT(3068), + [7184] = {.count = 1, .reusable = true}, SHIFT(3070), + [7186] = {.count = 1, .reusable = true}, SHIFT(3069), + [7188] = {.count = 1, .reusable = false}, SHIFT(3070), + [7190] = {.count = 1, .reusable = true}, SHIFT(3071), + [7192] = {.count = 1, .reusable = true}, SHIFT(3072), + [7194] = {.count = 1, .reusable = false}, SHIFT(3072), + [7196] = {.count = 1, .reusable = true}, SHIFT(3073), + [7198] = {.count = 1, .reusable = false}, SHIFT(3073), + [7200] = {.count = 1, .reusable = true}, SHIFT(3075), + [7202] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 9), + [7204] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 9), + [7206] = {.count = 1, .reusable = true}, SHIFT(3077), + [7208] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3012), + [7211] = {.count = 1, .reusable = true}, SHIFT(3079), + [7213] = {.count = 1, .reusable = true}, SHIFT(3080), + [7215] = {.count = 1, .reusable = false}, SHIFT(3080), + [7217] = {.count = 1, .reusable = true}, SHIFT(3081), + [7219] = {.count = 1, .reusable = false}, SHIFT(3083), + [7221] = {.count = 1, .reusable = true}, SHIFT(3085), + [7223] = {.count = 1, .reusable = true}, SHIFT(3087), + [7225] = {.count = 1, .reusable = true}, SHIFT(3088), + [7227] = {.count = 1, .reusable = true}, SHIFT(3090), + [7229] = {.count = 1, .reusable = true}, SHIFT(3089), + [7231] = {.count = 1, .reusable = false}, SHIFT(3090), + [7233] = {.count = 1, .reusable = true}, SHIFT(3091), + [7235] = {.count = 1, .reusable = true}, SHIFT(3092), + [7237] = {.count = 1, .reusable = true}, SHIFT(3095), + [7239] = {.count = 1, .reusable = true}, SHIFT(3098), + [7241] = {.count = 1, .reusable = false}, SHIFT(3101), + [7243] = {.count = 1, .reusable = true}, SHIFT(3102), + [7245] = {.count = 1, .reusable = true}, SHIFT(3105), + [7247] = {.count = 1, .reusable = false}, SHIFT(3105), + [7249] = {.count = 1, .reusable = true}, SHIFT(3107), + [7251] = {.count = 1, .reusable = true}, SHIFT(3106), + [7253] = {.count = 1, .reusable = false}, SHIFT(3107), + [7255] = {.count = 1, .reusable = true}, SHIFT(3108), + [7257] = {.count = 1, .reusable = true}, SHIFT(3109), + [7259] = {.count = 1, .reusable = false}, SHIFT(3109), + [7261] = {.count = 1, .reusable = true}, SHIFT(3110), + [7263] = {.count = 1, .reusable = false}, SHIFT(3110), + [7265] = {.count = 1, .reusable = true}, SHIFT(3112), + [7267] = {.count = 1, .reusable = false}, SHIFT(3114), + [7269] = {.count = 1, .reusable = true}, SHIFT(3115), + [7271] = {.count = 1, .reusable = true}, SHIFT(3117), + [7273] = {.count = 1, .reusable = true}, SHIFT(3119), + [7275] = {.count = 1, .reusable = false}, SHIFT(3119), + [7277] = {.count = 1, .reusable = true}, SHIFT(3121), + [7279] = {.count = 1, .reusable = true}, SHIFT(3123), + [7281] = {.count = 1, .reusable = true}, SHIFT(3125), + [7283] = {.count = 1, .reusable = false}, SHIFT(3125), + [7285] = {.count = 1, .reusable = true}, SHIFT(3126), + [7287] = {.count = 1, .reusable = true}, SHIFT(3127), + [7289] = {.count = 2, .reusable = true}, REDUCE(aux_sym_abstract_function_declarator_repeat1, 2), SHIFT_REPEAT(3077), + [7292] = {.count = 1, .reusable = true}, REDUCE(sym_for_statement, 10), + [7294] = {.count = 1, .reusable = false}, REDUCE(sym_for_statement, 10), + [7296] = {.count = 1, .reusable = true}, SHIFT(3130), + [7298] = {.count = 1, .reusable = false}, SHIFT(3133), + [7300] = {.count = 1, .reusable = true}, SHIFT(3134), + [7302] = {.count = 1, .reusable = true}, SHIFT(3137), + [7304] = {.count = 1, .reusable = false}, SHIFT(3137), + [7306] = {.count = 1, .reusable = true}, SHIFT(3139), + [7308] = {.count = 1, .reusable = true}, SHIFT(3138), + [7310] = {.count = 1, .reusable = false}, SHIFT(3139), + [7312] = {.count = 1, .reusable = true}, SHIFT(3140), + [7314] = {.count = 1, .reusable = true}, SHIFT(3141), + [7316] = {.count = 1, .reusable = false}, SHIFT(3141), + [7318] = {.count = 1, .reusable = true}, SHIFT(3142), + [7320] = {.count = 1, .reusable = false}, SHIFT(3142), + [7322] = {.count = 1, .reusable = true}, SHIFT(3144), + [7324] = {.count = 1, .reusable = false}, SHIFT(3145), + [7326] = {.count = 1, .reusable = true}, SHIFT(3147), + [7328] = {.count = 1, .reusable = true}, SHIFT(3149), + [7330] = {.count = 1, .reusable = true}, SHIFT(3150), + [7332] = {.count = 1, .reusable = true}, SHIFT(3152), + [7334] = {.count = 1, .reusable = true}, SHIFT(3154), + [7336] = {.count = 1, .reusable = false}, SHIFT(3154), + [7338] = {.count = 1, .reusable = true}, SHIFT(3155), + [7340] = {.count = 1, .reusable = true}, SHIFT(3156), + [7342] = {.count = 1, .reusable = true}, SHIFT(3160), + [7344] = {.count = 1, .reusable = true}, SHIFT(3162), + [7346] = {.count = 1, .reusable = true}, SHIFT(3163), + [7348] = {.count = 1, .reusable = true}, SHIFT(3165), + [7350] = {.count = 1, .reusable = false}, SHIFT(3165), + [7352] = {.count = 1, .reusable = false}, SHIFT(3166), + [7354] = {.count = 1, .reusable = true}, SHIFT(3168), + [7356] = {.count = 1, .reusable = true}, SHIFT(3170), + [7358] = {.count = 1, .reusable = true}, SHIFT(3171), + [7360] = {.count = 1, .reusable = true}, SHIFT(3173), + [7362] = {.count = 1, .reusable = true}, SHIFT(3175), + [7364] = {.count = 1, .reusable = false}, SHIFT(3175), + [7366] = {.count = 1, .reusable = true}, SHIFT(3176), + [7368] = {.count = 1, .reusable = true}, SHIFT(3177), + [7370] = {.count = 1, .reusable = false}, SHIFT(3180), + [7372] = {.count = 1, .reusable = true}, SHIFT(3181), + [7374] = {.count = 1, .reusable = true}, SHIFT(3183), + [7376] = {.count = 1, .reusable = true}, SHIFT(3185), + [7378] = {.count = 1, .reusable = false}, SHIFT(3185), + [7380] = {.count = 1, .reusable = true}, SHIFT(3188), + [7382] = {.count = 1, .reusable = true}, SHIFT(3189), + [7384] = {.count = 1, .reusable = false}, SHIFT(3192), + [7386] = {.count = 1, .reusable = true}, SHIFT(3193), + [7388] = {.count = 1, .reusable = true}, SHIFT(3195), + [7390] = {.count = 1, .reusable = true}, SHIFT(3197), + [7392] = {.count = 1, .reusable = false}, SHIFT(3197), + [7394] = {.count = 1, .reusable = true}, SHIFT(3201), + [7396] = {.count = 1, .reusable = true}, SHIFT(3204), + [7398] = {.count = 1, .reusable = true}, SHIFT(3207), + [7400] = {.count = 1, .reusable = true}, SHIFT(3210), + [7402] = {.count = 1, .reusable = true}, SHIFT(3212), }; void *tree_sitter_cpp_external_scanner_create();